diff options
author | Thomas Voss <mail@thomasvoss.com> | 2024-12-18 18:58:32 +0100 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2024-12-18 18:58:32 +0100 |
commit | aeeb7856d32a904d22c5f1cdeca443bb7fcd7e49 (patch) | |
tree | 4aacd9f841f515254ed581970070b3e1aa72301f /Makefiles | |
parent | 65beb3ea0223e693ac348c6133e496ada2b2352f (diff) |
Refactor the intcode machine
Diffstat (limited to 'Makefiles')
-rw-r--r-- | Makefiles/lisp.mk | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/Makefiles/lisp.mk b/Makefiles/lisp.mk index b9122df..d181127 100644 --- a/Makefiles/lisp.mk +++ b/Makefiles/lisp.mk @@ -1,8 +1,12 @@ .POSIX: all: - sed '/START PART 2/,/END PART 2/d' puzzles.lisp >puzzle-1.lisp - sed '/START PART 1/,/END PART 1/d' puzzles.lisp >puzzle-2.lisp + sed -e '/START PART 2/,/END PART 2/d' \ + -e '1a(defconstant +puzzle-part+ 1)' \ + puzzles.lisp >puzzle-1.lisp + sed -e '/START PART 1/,/END PART 1/d' \ + -e '1a(defconstant +puzzle-part+ 2)' \ + puzzles.lisp >puzzle-2.lisp chmod +x puzzle-[12].lisp clean: |