diff options
| author | Thomas Voss <thomasvoss@live.com> | 2021-12-05 11:21:02 +0100 |
|---|---|---|
| committer | Thomas Voss <thomasvoss@live.com> | 2021-12-05 11:21:02 +0100 |
| commit | 396d7ae9cd0b67483293553b2e0a966a98356c4a (patch) | |
| tree | f67b7827d1a2d4af2e1e8551e16464e7322adfab /2017/04/Makefile | |
| parent | 2e28981207430301b54d4d74ee620d0f159f4d8b (diff) | |
Add day 4 solutions
Diffstat (limited to '2017/04/Makefile')
| -rw-r--r-- | 2017/04/Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/2017/04/Makefile b/2017/04/Makefile new file mode 100644 index 0000000..247194a --- /dev/null +++ b/2017/04/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 |