aboutsummaryrefslogtreecommitdiff
path: root/ssh/Makefile
diff options
context:
space:
mode:
authorTom Smeding <tom.smeding@gmail.com>2020-07-09 18:30:13 +0200
committerTom Smeding <tom.smeding@gmail.com>2020-07-09 18:31:50 +0200
commit05a818bb65d00ef89cf97e59ebca867fcef5863a (patch)
tree31fcdfef52f40e32bdfc4bb0ff735dc9afa53592 /ssh/Makefile
parent4659374068eda6473feed06143433dce4e8eade2 (diff)
ssh: Abstract SSH communication in mini-library
Diffstat (limited to 'ssh/Makefile')
-rw-r--r--ssh/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/ssh/Makefile b/ssh/Makefile
index 68113cd..d77dc67 100644
--- a/ssh/Makefile
+++ b/ssh/Makefile
@@ -16,7 +16,7 @@ clean:
server: server.o util.o
$(CC) -o $@ $^ $(LDFLAGS)
-client: client.o util.o
+client: client.o sshnc.o util.o
$(CC) -o $@ $^ $(LDFLAGS)
%.o: %.c $(wildcard *.h)