aboutsummaryrefslogtreecommitdiff
path: root/tests/Makefile
diff options
context:
space:
mode:
authorAndreas Schneider <asn@cryptomilk.org>2011-06-30 15:47:52 +0200
committerAndreas Schneider <asn@cryptomilk.org>2011-06-30 15:47:52 +0200
commitcc29fef2344fcbc33bf691aafa274752df43c30c (patch)
treea2654e557e977e3c92d7a1fe313d53d738754168 /tests/Makefile
parentf684e76ab224869b1a4db07cd1256876f4a71bae (diff)
downloadlibssh-cc29fef2344fcbc33bf691aafa274752df43c30c.tar.gz
libssh-cc29fef2344fcbc33bf691aafa274752df43c30c.tar.xz
libssh-cc29fef2344fcbc33bf691aafa274752df43c30c.zip
build: Remove broken old Makefile.
Diffstat (limited to 'tests/Makefile')
-rw-r--r--tests/Makefile19
1 files changed, 0 insertions, 19 deletions
diff --git a/tests/Makefile b/tests/Makefile
deleted file mode 100644
index f6c5d98e..00000000
--- 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