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

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