diff options
author | Thomas Voss <thomasvoss@live.com> | 2021-12-04 00:28:12 +0100 |
---|---|---|
committer | Thomas Voss <thomasvoss@live.com> | 2021-12-04 00:28:12 +0100 |
commit | eb34659683a52506f3bbea093dce131c410e955b (patch) | |
tree | 4569be6b5a9c21cc3af577698d5b2879b77ab8a9 /2015/09/Makefile | |
parent | d289467cf54104be14e9af352c924e93af2443dc (diff) |
Add day 9 solutions
Diffstat (limited to '2015/09/Makefile')
-rw-r--r-- | 2015/09/Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/2015/09/Makefile b/2015/09/Makefile new file mode 100644 index 0000000..247194a --- /dev/null +++ b/2015/09/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 |