From 833c53b1ad3338677056445c32c490cac0a08875 Mon Sep 17 00:00:00 2001 From: Nakidai Date: Tue, 6 Jan 2026 04:01:24 +0300 Subject: Add basic channels Though they don't have modes, and JOIN/PART must be able to parse comma separated list of channels --- Makefile | 3 +++ 1 file changed, 3 insertions(+) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 5953be1..59070a7 100644 --- a/Makefile +++ b/Makefile @@ -2,14 +2,17 @@ NAME ?= ircd CFLAGS += -Wall -Wextra +OBJS += channel.o OBJS += handle.o OBJS += loop.o OBJS += main.o OBJS += message.o OBJS += peer.o +OBJS += reply.o OBJS += user.o OBJS += writef.o +all: ${NAME} ${NAME}: ${OBJS} ${CC} -o ${NAME} ${CFLAGS} ${LDFLAGS} ${OBJS} clean: -- cgit 1.4.1