irc-bot/Makefile

12 lines
202 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-21 14:25:40 -07:00
TARGETS += extras/factoids
2011-01-06 21:08:21 -07:00
all: $(TARGETS)
2012-11-21 14:25:40 -07:00
extras/factoids: extras/factoids.o extras/cdb.o extras/cdbmake.o
2012-11-19 14:53:00 -07:00
.PHONY: clean
clean:
2012-11-21 14:25:40 -07:00
rm -f $(TARGETS) *.o extras/*.o