make build: without Deploy, better for Darwin

for #62
This commit is contained in:
vindarel 2024-08-31 11:39:00 +02:00 committed by vindarel
parent 7deac2d353
commit 47d9f8ea54
2 changed files with 2 additions and 7 deletions

View file

@ -52,12 +52,9 @@ image:
build:
$(LISP) --non-interactive \
--eval '(ql:quickload :deploy)' \
--eval '(ql:quickload "cl+ssl")' \
--load ciel.asd \
--load build-config.lisp \
--eval '(ql:quickload :swank)' \
--eval '(push :deploy-console *features*)' \
--eval '(ql:quickload :ciel)' \
--eval '(ql:quickload :ciel/repl)' \
--eval '(asdf:make :ciel/repl)' \

View file

@ -199,10 +199,8 @@
(:static-file "simpleHTTPserver")))
)
;; Build a binary with Deploy, ship foreign libraries (and ignore libssl).
:defsystem-depends-on (:deploy) ;; need to (ql:quickload "deploy") before building.
;; :build-operation "program-op"
:build-operation "deploy-op"
:build-operation "program-op"
:build-operation "program-op"
:build-pathname "ciel"
:entry-point "ciel::main")