diff options
| author | Teddy Wing | 2021-02-27 19:59:30 +0100 | 
|---|---|---|
| committer | Teddy Wing | 2021-02-27 19:59:30 +0100 | 
| commit | 2767bfce155c9044e23a99621892c827f3d0ec25 (patch) | |
| tree | fe759bba9c8babadc19c1e6abec787d27f816394 | |
| parent | 4bce5118bd8d3c3ded8668f760a0441256780682 (diff) | |
| download | extreload-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-- | Makefile | 19 | 
1 files changed, 1 insertions, 18 deletions
| @@ -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 | 
