1
1
libssh/tests/Makefile
Aris Adamantiadis 92a50f731c Socket connect callback working...
Still need to make sure the connect syscall is correctly
called
2009-11-30 23:44:40 +01:00

20 строки
420 B
Makefile

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