From 2767bfce155c9044e23a99621892c827f3d0ec25 Mon Sep 17 00:00:00 2001 From: Teddy Wing Date: Sat, 27 Feb 2021 19:59:30 +0100 Subject: Makefile: Remove `release` target Not using ECL any more. Instead we're continuing to build with SBCL and enable binary compression. --- Makefile | 19 +------------------ 1 file changed, 1 insertion(+), 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 -- cgit v1.2.3