harbour-sextant/make.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

10 lines
327 B
Common Lisp

(asdf:make-build "cockpit"
:monolithic t
:type :static-library
:move-here "./"
:init-name "init_sextant")
(let ((lib-name "libsextant.a"))
(when (probe-file lib-name)
(delete-file lib-name))
(rename-file (x:cc "cockpit--all-systems" ".a") lib-name))