1
0
mirror of https://git.libssh.org/projects/libssh.git synced 2025-07-20 18:02:58 +03:00

build: Remove broken old Makefile.

This commit is contained in:
Andreas Schneider
2011-06-30 15:47:52 +02:00
parent f684e76ab2
commit cc29fef234

View File

@ -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