all:
	${CC} ${CFLAGS} -o puzzle-1 puzzles.c
	${CC} ${CFLAGS} -DPART2 -o puzzle-2 puzzles.c

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