irc-bot/Makefile

12 lines
143 B
Makefile

CFLAGS = -Wall -Werror
TARGETS = bot
TARGETS += infobot
all: $(TARGETS)
infobot: infobot.o cdb.o
.PHONY: clean
clean:
rm -f $(TARGETS) *.o