aboutsummaryrefslogtreecommitdiffstats
path: root/l
diff options
context:
space:
mode:
Diffstat (limited to 'l')
-rw-r--r--l/Makefile7
-rw-r--r--l/extreload.asd6
2 files changed, 12 insertions, 1 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)'
diff --git a/l/extreload.asd b/l/extreload.asd
index b5e62b4..5edcdd7 100644
--- a/l/extreload.asd
+++ b/l/extreload.asd
@@ -5,4 +5,8 @@
:components ((:module "src"
:serial t
:components ((:file "package")
- (:file "main")))))
+ (:file "main"))))
+
+ :build-operation "program-op"
+ :build-pathname "extreload"
+ :entry-point "extreload:main")