1
1
libssh/tests/Makefile
Aris Adamantiadis 10b625e180 First lines of experimental pcap output support
This will serve to debug packets right under wireshark !
2009-11-08 23:42:41 +01:00

16 строки
342 B
Makefile

all: test_tunnel test_exec test_pcap
CFLAGS=-I../include/ -g -Wall
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)
test_pcap: test_pcap.o
gcc -o $@ $^ $(LDFLAGS)
clean:
rm -f *.o test_tunnel