diff options
author | ubq323 <ubq323@ubq323.website> | 2022-10-31 19:14:39 +0000 |
---|---|---|
committer | ubq323 <ubq323@ubq323.website> | 2022-10-31 19:14:39 +0000 |
commit | 65fc26be19594c91b3af57c548c2e5c7307457f2 (patch) | |
tree | ed1857b7e5ac903896ecd8b6d1f43314748da584 /Makefile | |
parent | 1dc90feaf9d7db3c0e5d8233a5d60c46ee236c1c (diff) |
multiple channels are now supported
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -5,7 +5,7 @@ CC=cc debug=-g -DDEBUG -DLOCAL CFLAGS=$(MORE_CFLAGS) -Wall -Wpedantic -OBJS=bee.o irc.o util.o unix.o conf.o +OBJS=bee.o irc.o util.o unix.o all: apiobot apiobot: $(OBJS) @@ -19,12 +19,12 @@ local: .c.o: $(CC) $(CFLAGS) -c $< -o $@ -apiosend.o: apiosend.c -bee.o: bee.c irc.h unix.h -conf.o: conf.c conf.h +bee.o: bee.c irc.h unix.h conf.h debug.h irc.o: irc.c irc.h debug.h conf.h util.h -unix.o: unix.c unix.h conf.h -util.o: util.c util.h conf.h debug.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 + run: all ./apiobot |