13 lines
392 B
Common Lisp
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))
|