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

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