aboutsummaryrefslogtreecommitdiff
path: root/2015/23/Makefile
diff options
context:
space:
mode:
Diffstat (limited to '2015/23/Makefile')
-rw-r--r--2015/23/Makefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/2015/23/Makefile b/2015/23/Makefile
new file mode 100644
index 0000000..8779ec0
--- /dev/null
+++ b/2015/23/Makefile
@@ -0,0 +1,9 @@
+all:
+ flex -f -DYY_NO_INPUT --nounput puzzles.l
+ ${CC} ${CFLAGS} -lfl -DPROGLEN=`wc -l <input` -o puzzle-1 lex.yy.c
+ ${CC} ${CFLAGS} -lfl -DPROGLEN=`wc -l <input` -DPART2 -o puzzle-2 lex.yy.c
+ rm lex.yy.c
+
+.PHONY: clean
+clean:
+ rm -f puzzle-[12]