summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJohnny Richard <johnny@johnnyrichard.com>2022-04-22 00:43:59 +0200
committerJohnny Richard <johnny@johnnyrichard.com>2022-04-22 00:59:27 +0200
commit2269e8904b56ae0dd80461cc7a0507862b33e34e (patch)
tree1d93f82ca561d65005b13a4ccdc846c995d66185 /Makefile
parentc4797d9dfcf82edf0212925190d5157055fdd187 (diff)
client: Implement client_seng_msg
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index dc195c2..33702dd 100644
--- a/Makefile
+++ b/Makefile
@@ -1,8 +1,8 @@
CC=gcc
.PHONY: all
-all: main.c server.c log.o hash_table.o string_view.o
- $(CC) -ggdb -o papo main.c server.c log.o hash_table.o string_view.o
+all: main.c server.c log.o hash_table.o string_view.o client.o
+ $(CC) -ggdb -o papo main.c server.c log.o hash_table.o string_view.o client.o
.PHONY: test
test: all