diff options
Diffstat (limited to '2021/14/Makefile')
-rw-r--r-- | 2021/14/Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/2021/14/Makefile b/2021/14/Makefile new file mode 100644 index 0000000..7c0e609 --- /dev/null +++ b/2021/14/Makefile @@ -0,0 +1,8 @@ +all: + m4 -DLOOPS=10 puzzles.py >puzzle-1.py + m4 -DLOOPS=40 puzzles.py >puzzle-2.py + chmod +x puzzle-[12].py + +.PHONY: clean run +clean: + rm -f puzzle-[12].py |