From 0299ede6117d63c61318d6ebe991f16bc1fd542b Mon Sep 17 00:00:00 2001 From: Tom Smeding Date: Thu, 9 Jul 2020 23:02:46 +0200 Subject: ssh: Add client proxy --- ssh/Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'ssh/Makefile') diff --git a/ssh/Makefile b/ssh/Makefile index d77dc67..76d23c9 100644 --- a/ssh/Makefile +++ b/ssh/Makefile @@ -7,7 +7,7 @@ LDFLAGS += $(shell pkg-config --libs libssh) .PHONY: all clean -all: server client +all: server client client_proxy clean: rm -f server client *.o @@ -19,5 +19,8 @@ server: server.o util.o client: client.o sshnc.o util.o $(CC) -o $@ $^ $(LDFLAGS) +client_proxy: client_proxy.o sshnc.o util.o + $(CC) -o $@ $^ $(LDFLAGS) + %.o: %.c $(wildcard *.h) $(CC) $(CFLAGS) -c -o $@ $< -- cgit v1.2.3-54-g00ecf