aboutsummaryrefslogtreecommitdiff
path: root/2015/07/Makefile
diff options
context:
space:
mode:
authorThomas Voss <thomasvoss@live.com> 2021-12-02 20:23:40 +0100
committerThomas Voss <thomasvoss@live.com> 2021-12-02 20:23:40 +0100
commit826ed886b5caa62e5f46a189bde7e5434cb49356 (patch)
tree2a53597251de67faf665eea9f5117d1fc1182593 /2015/07/Makefile
parentfeca43e796fbe8bde441f017f4c94642392bc40f (diff)
Add day 7 solutions
Diffstat (limited to '2015/07/Makefile')
-rw-r--r--2015/07/Makefile8
1 files changed, 8 insertions, 0 deletions
diff --git a/2015/07/Makefile b/2015/07/Makefile
new file mode 100644
index 0000000..247194a
--- /dev/null
+++ b/2015/07/Makefile
@@ -0,0 +1,8 @@
+all:
+ sed '/START PART 2/,/END PART 2/d' puzzles.py >puzzle-1.py
+ sed '/START PART 1/,/END PART 1/d' puzzles.py >puzzle-2.py
+ chmod +x puzzle-[12].py
+
+.PHONY: clean
+clean:
+ rm -f puzzle-[12].py