From 6c5276eb486f88b73c9309ffec713f1732922a02 Mon Sep 17 00:00:00 2001 From: Johnny Richard Date: Tue, 10 May 2022 03:09:47 +0200 Subject: channel: Create channel and implement join msg --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Makefile') 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 -- cgit v1.2.3