diff options
| author | Nakidai <nakidai@disroot.org> | 2026-01-06 04:01:24 +0300 |
|---|---|---|
| committer | Nakidai <nakidai@disroot.org> | 2026-01-06 04:01:24 +0300 |
| commit | 833c53b1ad3338677056445c32c490cac0a08875 (patch) | |
| tree | 24e60715c46ff89c26c5efc254e036b84aebcb13 /Makefile | |
| parent | 78426afe18d9ce730a4d92033ca261f9b2f173a0 (diff) | |
| download | libreircd-833c53b1ad3338677056445c32c490cac0a08875.tar.gz libreircd-833c53b1ad3338677056445c32c490cac0a08875.zip | |
Add basic channels
Though they don't have modes, and JOIN/PART must be able to parse comma separated list of channels
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
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: |