1
0
Fork 0

- modified asdf file to include files compiled from C into the saved image.

This commit is contained in:
cage 2024-04-21 11:07:34 +02:00
parent ad190478dc
commit f2a8635b3e
3 changed files with 6 additions and 4 deletions

View File

@ -95,7 +95,7 @@ data/scripts/welcome-bot.lisp
dist_man1_MANS = doc/tinmop.man dist_man1_MANS = doc/tinmop.man
$(PACKAGE): $(CONF_PATH_FILE) *.asd src/* $(PACKAGE): $(CONF_PATH_FILE) *.asd src/*
$(LISP_COMPILER) \ cd /usr/lib/sbcl/ && $(LISP_COMPILER) \
--eval "(push \"$$(pwd)/\" asdf:*central-registry*)" \ --eval "(push \"$$(pwd)/\" asdf:*central-registry*)" \
--eval "(asdf:make '$(PACKAGE) :build-pathname \"../$(PACKAGE)\")" \ --eval "(asdf:make '$(PACKAGE) :build-pathname \"../$(PACKAGE)\")" \
--eval "(uiop:quit)" --eval "(uiop:quit)"

View File

@ -1117,7 +1117,7 @@ uninstall-man: uninstall-man1
$(PACKAGE): $(CONF_PATH_FILE) *.asd src/* $(PACKAGE): $(CONF_PATH_FILE) *.asd src/*
$(LISP_COMPILER) \ cd /usr/lib/sbcl/ && $(LISP_COMPILER) \
--eval "(push \"$$(pwd)/\" asdf:*central-registry*)" \ --eval "(push \"$$(pwd)/\" asdf:*central-registry*)" \
--eval "(asdf:make '$(PACKAGE) :build-pathname \"../$(PACKAGE)\")" \ --eval "(asdf:make '$(PACKAGE) :build-pathname \"../$(PACKAGE)\")" \
--eval "(uiop:quit)" --eval "(uiop:quit)"

View File

@ -22,6 +22,10 @@
:pathname "src" :pathname "src"
:serial t :serial t
:bug-tracker "https://codeberg.org/cage/tinmop/issues" :bug-tracker "https://codeberg.org/cage/tinmop/issues"
:defsystem-depends-on ("cffi-grovel")
:build-operation "static-program-op"
:build-pathname "tinmop"
:entry-point "main::main"
:depends-on (:alexandria :depends-on (:alexandria
:cl-ppcre-unicode :cl-ppcre-unicode
:tooter :tooter
@ -57,8 +61,6 @@
:trivial-clipboard :trivial-clipboard
:yason :yason
:uiop) :uiop)
:entry-point "main::main"
:build-operation program-op
:components ((:file "package") :components ((:file "package")
(:file "idn") (:file "idn")
(:file "config") (:file "config")