aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorubq323 <ubq323@ubq323.website>2023-01-24 17:35:12 +0000
committerubq323 <ubq323@ubq323.website>2023-01-24 17:35:12 +0000
commitc3d79d07b96c3e2bee7bbdfbc7ec3f6e7af59e17 (patch)
treeaa358412be78c9aa6967623b34b0b0d905abedb7 /Makefile
parent60a4a26ce76850f3d374d7206e702fbc6548f58b (diff)
support passwords for joining channels, and refactor channel list into a separate module
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 4 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 97d5d35..a7f0cb9 100644
--- a/Makefile
+++ b/Makefile
@@ -5,7 +5,7 @@ CC=cc
debug=-g -DDEBUG -DLOCAL
CFLAGS=$(MORE_CFLAGS) -Wall -Wpedantic
-OBJS=bee.o irc.o util.o unix.o
+OBJS=bee.o irc.o util.o unix.o chanlist.o
all: apiobot
apiobot: $(OBJS)
@@ -19,11 +19,12 @@ local:
.c.o:
$(CC) $(CFLAGS) -c $< -o $@
-bee.o: bee.c irc.h unix.h conf.h debug.h
-irc.o: irc.c irc.h debug.h conf.h util.h
+bee.o: bee.c irc.h unix.h conf.h debug.h chanlist.h
+irc.o: irc.c irc.h debug.h conf.h util.h chanlist.h
thing.o: thing.c conf.h
unix.o: unix.c unix.h conf.h irc.h
util.o: util.c util.h debug.h conf.h
+chanlist.o: chanlist.c
run: all