22 lines
448 B
Common Lisp
22 lines
448 B
Common Lisp
#-eql5
|
|
(error "Please use the EQL5 executable")
|
|
|
|
(require :cmp)
|
|
|
|
(push :app-debug *features*)
|
|
|
|
(load "lisp/dependencies")
|
|
|
|
(push "lisp/" asdf:*central-registry*)
|
|
|
|
(asdf:make-build "app"
|
|
:monolithic t
|
|
:type :static-library
|
|
:move-here "./")
|
|
|
|
(let ((lib-name "libapp.a"))
|
|
(when (probe-file lib-name)
|
|
(delete-file lib-name))
|
|
(rename-file (x:cc "app--all-systems" ".a") lib-name))
|
|
|
|
(eql:qquit)
|