diff options
-rw-r--r-- | tests/Makefile | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/tests/Makefile b/tests/Makefile deleted file mode 100644 index f6c5d98..0000000 --- a/tests/Makefile +++ /dev/null @@ -1,19 +0,0 @@ -all: test_socket test_tunnel test_exec test_pcap -CFLAGS=-I../include/ -g -Wall -I../build/ -LDFLAGS=-lssh -L../build/src/ - -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_socket: test_socket.o - gcc -o $@ $^ $(LDFLAGS) - - -test_pcap: test_pcap.o - gcc -o $@ $^ $(LDFLAGS) - -clean: - rm -f *.o test_tunnel |