irc-bot/Makefile

12 lines
143 B
Makefile
Raw Normal View History

2011-01-06 21:08:21 -07:00
CFLAGS = -Wall -Werror
2012-11-14 19:58:37 -07:00
TARGETS = bot
2012-11-19 14:53:00 -07:00
TARGETS += infobot
2011-01-06 21:08:21 -07:00
all: $(TARGETS)
2012-11-19 14:53:00 -07:00
infobot: infobot.o cdb.o
.PHONY: clean
clean:
2011-01-06 21:08:21 -07:00
rm -f $(TARGETS) *.o