diff options
Diffstat (limited to 'Makefiles/lisp.mk')
-rw-r--r-- | Makefiles/lisp.mk | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Makefiles/lisp.mk b/Makefiles/lisp.mk new file mode 100644 index 0000000..b9122df --- /dev/null +++ b/Makefiles/lisp.mk @@ -0,0 +1,9 @@ +.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 + chmod +x puzzle-[12].lisp + +clean: + rm -f puzzle-[12].lisp
\ No newline at end of file |