summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJohnny Richard <johnny@johnnyrichard.com>2022-05-10 03:09:47 +0200
committerJohnny Richard <johnny@johnnyrichard.com>2022-05-10 03:09:47 +0200
commit6c5276eb486f88b73c9309ffec713f1732922a02 (patch)
tree2997ced24529b8fe2814284a91753435a36311ea /Makefile
parent31586df150671904bbd116534e38ecb1d4748962 (diff)
channel: Create channel and implement join msgHEADmaster
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 33702dd..164a3ad 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 client.o
- $(CC) -ggdb -o papo main.c server.c log.o hash_table.o string_view.o client.o
+all: main.c server.c log.o hash_table.o string_view.o client.o channel.o
+ $(CC) -ggdb -o papo main.c server.c log.o hash_table.o string_view.o client.o channel.o
.PHONY: test
test: all