1
1
libssh/tests/Makefile

10 строки
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