aboutsummaryrefslogtreecommitdiff
path: root/2020/17/Makefile
blob: c32dafa4dfaf1c557a1b11ac91f55a10543791c7 (plain) (blame)
1
2
3
4
5
6
7
all:
	${CC} ${CFLAGS} -o puzzle-1 puzzles.c
	${CC} ${CFLAGS} -DPART2 -o puzzle-2 puzzles.c

.PHONY: clean
clean:
	rm -f puzzle-[12]