diff options
Diffstat (limited to 'l/Makefile')
-rw-r--r-- | l/Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/l/Makefile b/l/Makefile new file mode 100644 index 0000000..ce59ba8 --- /dev/null +++ b/l/Makefile @@ -0,0 +1,7 @@ +LISP ?= sbcl + +build: + $(LISP) --load extreload.asd \ + --eval '(ql:quickload :extreload)' \ + --eval '(asdf:make :extreload)' \ + --eval '(quit)' |