1
0
Fork 0

- ensured exiting from REPL when building the executable using ECL.

This commit is contained in:
cage 2022-03-20 15:44:40 +01:00
parent 283e3d852c
commit 78fcdaa7cf
1 changed files with 2 additions and 1 deletions

View File

@ -66,7 +66,8 @@ $(PACKAGE): $(CONF_PATH_FILE) *.asd src/*
$(LISP_COMPILER) \
--eval "(asdf:load-system '$(PACKAGE))" \
--eval "(in-package main)" \
--eval "(asdf:make-build :tinmop :type :program :move-here #P\"./\" :epilogue-code '(main::main))"; \
--eval "(asdf:make-build :tinmop :type :program :move-here #P\"./\" :epilogue-code '(main::main))" \
--eval "(si:exit)"; \
fi
$(CONF_PATH_FILE):
grep "^;" $(CONF_PATH_FILE_IN) > $(CONF_PATH_FILE)