aboutsummaryrefslogtreecommitdiff
path: root/ssh/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'ssh/Makefile')
-rw-r--r--ssh/Makefile5
1 files changed, 4 insertions, 1 deletions
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 $@ $<