aoc2021/c/makefile
blackbeard420 1cef478e9b
Some checks failed
continuous-integration/drone/push Build is failing
moved shit around for multi language
2021-12-07 18:39:07 -05:00

9 lines
84 B
Makefile

DAYS = day1 day2 day3
CFLAGS = -Wall -Werror
all: $(DAYS)
clean:
rm -vf $(DAYS)