aboutsummaryrefslogtreecommitdiff
path: root/tests/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Makefile')
-rw-r--r--tests/Makefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/Makefile b/tests/Makefile
new file mode 100644
index 00000000..bebfe5b6
--- /dev/null
+++ b/tests/Makefile
@@ -0,0 +1,9 @@
+all: test_tunnel
+CFLAGS=-I../include/ -g -Wall
+LDFLAGS=-lssh -L../libssh/.libs
+
+test_tunnel: test_tunnel.o authentication.o connection.o
+ gcc -o $@ $^ $(LDFLAGS)
+
+clean:
+ rm -f *.o test_tunnel