aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTeddy Wing2021-02-27 19:59:30 +0100
committerTeddy Wing2021-02-27 19:59:30 +0100
commit2767bfce155c9044e23a99621892c827f3d0ec25 (patch)
treefe759bba9c8babadc19c1e6abec787d27f816394
parent4bce5118bd8d3c3ded8668f760a0441256780682 (diff)
downloadextreload-2767bfce155c9044e23a99621892c827f3d0ec25.tar.bz2
Makefile: Remove `release` target
Not using ECL any more. Instead we're continuing to build with SBCL and enable binary compression.
-rw-r--r--Makefile19
1 files changed, 1 insertions, 18 deletions
diff --git a/Makefile b/Makefile
index ef607db..2f32a9d 100644
--- a/Makefile
+++ b/Makefile
@@ -1,29 +1,12 @@
LISP ?= sbcl
+.PHONY: build
build:
$(LISP) --load extreload.asd \
--eval '(ql:quickload :extreload)' \
--eval '(asdf:make :extreload)' \
--eval '(quit)'
-release:
- # ecl --eval '(require "asdf")' \
- # --load extreload.asd \
- # --eval '(ql:quickload :extreload)' \
- # --eval '(asdf:make :extreload)' \
- # --eval '(quit)'
- ecl --eval '(require "asdf")' \
- --eval '(require "uiop")' \
- --load extreload.asd \
- --eval '(ql:quickload :extreload)' \
- --eval '(asdf:make-build :extreload \
- :type :program \
- :move-here #P"./" \
- :epilogue-code '"'"'(progn \
- (extreload:main) \
- (si:exit)))' \
- --eval '(quit)'
-
.PHONY: doc
doc: doc/extreload.1