aboutsummaryrefslogtreecommitdiff
path: root/tests/Makefile
blob: bebfe5b64c20271f6b4bc67eb2c5c5541585e142 (plain)
1
2
3
4
5
6
7
8
9
all: test_tunnel
CFLAGS=-I../include/ -g -Wall
LDFLAGS=-lssh -L../libssh/.libs

test_tunnel: test_tunnel.o authentication.o connection.o
	gcc -o $@ $^ $(LDFLAGS)

clean:
	rm -f *.o test_tunnel