diff options
author | Tom Smeding <tom.smeding@gmail.com> | 2020-07-09 18:30:13 +0200 |
---|---|---|
committer | Tom Smeding <tom.smeding@gmail.com> | 2020-07-09 18:31:50 +0200 |
commit | 05a818bb65d00ef89cf97e59ebca867fcef5863a (patch) | |
tree | 31fcdfef52f40e32bdfc4bb0ff735dc9afa53592 /ssh/Makefile | |
parent | 4659374068eda6473feed06143433dce4e8eade2 (diff) |
ssh: Abstract SSH communication in mini-library
Diffstat (limited to 'ssh/Makefile')
-rw-r--r-- | ssh/Makefile | 2 |
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) |