harbour-sextant/make-sextant-app.lisp
Renaud Casenave-Péré 7b4a258c0b Revamp app build system
Ui will be referred to by the name ‘cockpit’
2025-09-07 16:22:59 +02:00

13 lines
392 B
Common Lisp

#-eql5
(error "Please use the EQL5 executable")
(asdf:make-build "sextant-app"
:monolithic t
:type :static-library
:move-here "./"
:init-name "init_sextant_app")
(let ((lib-name "libsextant-app.a"))
(when (probe-file lib-name)
(delete-file lib-name))
(rename-file (x:cc "sextant-app--all-systems" ".a") lib-name))