From 05a818bb65d00ef89cf97e59ebca867fcef5863a Mon Sep 17 00:00:00 2001 From: Tom Smeding Date: Thu, 9 Jul 2020 18:30:13 +0200 Subject: ssh: Abstract SSH communication in mini-library --- ssh/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ssh/Makefile') 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) -- cgit v1.2.3-54-g00ecf