2009-05-04 22:30:21 +00:00
|
|
|
all: test_tunnel test_exec
|
2008-03-17 02:31:22 +00:00
|
|
|
CFLAGS=-I../include/ -g -Wall
|
2009-05-04 22:30:21 +00:00
|
|
|
LDFLAGS=-lssh -L../build/libssh/
|
2008-03-17 02:31:22 +00:00
|
|
|
|
|
|
|
test_tunnel: test_tunnel.o authentication.o connection.o
|
|
|
|
gcc -o $@ $^ $(LDFLAGS)
|
|
|
|
|
2009-05-04 22:30:21 +00:00
|
|
|
test_exec: test_exec.o authentication.o connection.o
|
|
|
|
gcc -o $@ $^ $(LDFLAGS)
|
|
|
|
|
2008-03-17 02:31:22 +00:00
|
|
|
clean:
|
|
|
|
rm -f *.o test_tunnel
|