aboutsummaryrefslogtreecommitdiff
path: root/tests/Makefile
blob: 8483856e16dfefe7b0bdfc5b6a5dba25b2b8d793 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
all: test_tunnel test_exec
CFLAGS=-I../include/ -g -Wall
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)

clean:
	rm -f *.o test_tunnel