1
0
mirror of https://git.libssh.org/projects/libssh.git synced 2026-01-06 14:21:55 +03:00
Files
libssh/tests/Makefile
Aris Adamantiadis 46b96a145c preliminary test suite
git-svn-id: svn+ssh://svn.berlios.de/svnroot/repos/libssh/trunk@153 7dcaeef0-15fb-0310-b436-a5af3365683c
2008-03-17 02:31:22 +00:00

10 lines
193 B
Makefile

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