aboutsummaryrefslogtreecommitdiff
path: root/tests/Makefile
diff options
context:
space:
mode:
authorAris Adamantiadis <aris@0xbadc0de.be>2008-03-17 02:31:22 +0000
committerAris Adamantiadis <aris@0xbadc0de.be>2008-03-17 02:31:22 +0000
commit46b96a145cde14b7ecf4a9608173508aa877b9fa (patch)
treee8ae1288f955d0d09fd5ebb88b2e5edd4487e841 /tests/Makefile
parentebbca06b045cec6367deb4eb7a947cde2090dedc (diff)
downloadlibssh-46b96a145cde14b7ecf4a9608173508aa877b9fa.tar.gz
libssh-46b96a145cde14b7ecf4a9608173508aa877b9fa.tar.xz
libssh-46b96a145cde14b7ecf4a9608173508aa877b9fa.zip
preliminary test suite
git-svn-id: svn+ssh://svn.berlios.de/svnroot/repos/libssh/trunk@153 7dcaeef0-15fb-0310-b436-a5af3365683c
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