aboutsummaryrefslogtreecommitdiff
path: root/tests/Makefile
diff options
context:
space:
mode:
authorAndreas Schneider <mail@cynapses.org>2009-05-04 22:30:21 +0000
committerAndreas Schneider <mail@cynapses.org>2009-05-04 22:30:21 +0000
commitdc07d46ccaec73e65c7385c4f3a29da05d281ddd (patch)
tree4d392bc68fbbf0606a1b3635fd26ad6cb029bf99 /tests/Makefile
parent6c51183f0ebd48832b22e3e1ad587d2499dc65e9 (diff)
downloadlibssh-dc07d46ccaec73e65c7385c4f3a29da05d281ddd.tar.gz
libssh-dc07d46ccaec73e65c7385c4f3a29da05d281ddd.tar.xz
libssh-dc07d46ccaec73e65c7385c4f3a29da05d281ddd.zip
Add a exec test.
git-svn-id: svn+ssh://svn.berlios.de/svnroot/repos/libssh/trunk@713 7dcaeef0-15fb-0310-b436-a5af3365683c
Diffstat (limited to 'tests/Makefile')
-rw-r--r--tests/Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/tests/Makefile b/tests/Makefile
index bebfe5b..8483856 100644
--- a/tests/Makefile
+++ b/tests/Makefile
@@ -1,9 +1,12 @@
-all: test_tunnel
+all: test_tunnel test_exec
CFLAGS=-I../include/ -g -Wall
-LDFLAGS=-lssh -L../libssh/.libs
+LDFLAGS=-lssh -L../build/libssh/
test_tunnel: test_tunnel.o authentication.o connection.o
gcc -o $@ $^ $(LDFLAGS)
+test_exec: test_exec.o authentication.o connection.o
+ gcc -o $@ $^ $(LDFLAGS)
+
clean:
rm -f *.o test_tunnel