blob: b81afcc70f04f851751bb5b64847d155557d5069 (
plain) (
blame)
| 1
2
3
4
5
6
7
 | all:
	${CC} ${CFLAGS} -DPROGLEN=`wc -l <input` -o puzzle-1 puzzles.c
	${CC} ${CFLAGS} -DPART2 -DPROGLEN=`wc -l <input` -o puzzle-2 puzzles.c
.PHONY: clean
clean:
	rm -f puzzle-[12]
 |