diff options
author | Thomas Voss <thomasvoss@live.com> | 2021-12-02 10:05:22 +0100 |
---|---|---|
committer | Thomas Voss <thomasvoss@live.com> | 2021-12-02 10:05:22 +0100 |
commit | 8e6440d8fd69caedc11192dca02a6ae28f5248cf (patch) | |
tree | 3a99cb992870acbea9d887523f42378d9b1b28a2 /2015/21/Makefile | |
parent | 00b67942fed9961bd8d46d6f4fdae97dd074bb4e (diff) |
Improve the makeshift macros
Diffstat (limited to '2015/21/Makefile')
-rw-r--r-- | 2015/21/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/2015/21/Makefile b/2015/21/Makefile index 9f0c9fb..247194a 100644 --- a/2015/21/Makefile +++ b/2015/21/Makefile @@ -1,6 +1,6 @@ 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 + 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 |