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