irc-bot/Makefile

9 lines
107 B
Makefile

CFLAGS = -Wall -Werror
TARGETS = dispatch irc
all: $(TARGETS)
.PHONY: clean
clean:
rm -f $(TARGETS) *.o