aboutsummaryrefslogtreecommitdiff
path: root/tests/Makefile
diff options
context:
space:
mode:
authorAris Adamantiadis <aris@0xbadc0de.be>2009-11-08 23:42:41 +0100
committerAris Adamantiadis <aris@0xbadc0de.be>2009-11-08 23:42:41 +0100
commit10b625e18030144f30a68556321a4c3d11fa7e25 (patch)
treebc06f5a5386ace21a90d3ea4dad74be460042afd /tests/Makefile
parent10f27457d36fd39eee5c317d59e6ecfbc898db58 (diff)
downloadlibssh-10b625e18030144f30a68556321a4c3d11fa7e25.tar.gz
libssh-10b625e18030144f30a68556321a4c3d11fa7e25.tar.xz
libssh-10b625e18030144f30a68556321a4c3d11fa7e25.zip
First lines of experimental pcap output support
This will serve to debug packets right under wireshark !
Diffstat (limited to 'tests/Makefile')
-rw-r--r--tests/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/Makefile b/tests/Makefile
index 8483856e..1ec30d6a 100644
--- a/tests/Makefile
+++ b/tests/Makefile
@@ -1,4 +1,4 @@
-all: test_tunnel test_exec
+all: test_tunnel test_exec test_pcap
CFLAGS=-I../include/ -g -Wall
LDFLAGS=-lssh -L../build/libssh/
@@ -8,5 +8,8 @@ test_tunnel: test_tunnel.o authentication.o connection.o
test_exec: test_exec.o authentication.o connection.o
gcc -o $@ $^ $(LDFLAGS)
+test_pcap: test_pcap.o
+ gcc -o $@ $^ $(LDFLAGS)
+
clean:
rm -f *.o test_tunnel