diff options
author | Thomas Voss <thomasvoss@live.com> | 2021-12-15 22:10:57 +0100 |
---|---|---|
committer | Thomas Voss <thomasvoss@live.com> | 2021-12-15 22:10:57 +0100 |
commit | f2f95f765c109b19a28fb962ded0df418747a18b (patch) | |
tree | a44d1ad3ac706953910371536a7563e56c0c1ab7 /2021/15/Makefile | |
parent | e9ae9ea8066c57f7065e94d40f510d45da6ad427 (diff) |
Add day 15 solutions
Diffstat (limited to '2021/15/Makefile')
-rw-r--r-- | 2021/15/Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/2021/15/Makefile b/2021/15/Makefile new file mode 100644 index 0000000..247194a --- /dev/null +++ b/2021/15/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 |