aboutsummaryrefslogtreecommitdiff
path: root/2015/04/Makefile
blob: 10ec8f996e575ff2781f9d79e73f72845a8a282c (plain) (blame)
1
2
3
4
5
6
7
all:
	${CC} ${CFLAGS} -lmd -DINPUT=\"$$(cat input)\" -o puzzle-1 puzzles.c
	${CC} ${CFLAGS} -lmd -DINPUT=\"$$(cat input)\" -DPART2 -o puzzle-2 puzzles.c

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