irc-bot/Makefile

9 lines
98 B
Makefile

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