mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-12 12:21:15 -08:00
46 lines
1.2 KiB
Text
46 lines
1.2 KiB
Text
;;; ----------------------------------------------------------------------
|
|
;;; CLOS
|
|
;;; ----------------------------------------------------------------------
|
|
|
|
(defparameter
|
|
*cmp-modules*
|
|
;; file load compile files which force
|
|
;; environment environment recompilations of
|
|
;; this file
|
|
'(
|
|
(cmpdefs () () ())
|
|
(cmpmac () () ())
|
|
(cmpinline () () ())
|
|
(cmputil () () ())
|
|
(cmptype () () ())
|
|
(cmpbind () () ())
|
|
(cmpblock () () ())
|
|
(cmpcall () () ())
|
|
(cmpcatch () () ())
|
|
(cmpenv () () ())
|
|
(cmpeval () () ())
|
|
(cmpexit () () ())
|
|
(cmpflet () () ())
|
|
(cmpfun () () ())
|
|
(cmpif () () ())
|
|
(cmplam () () ())
|
|
(cmplet () () ())
|
|
(cmploc () () ())
|
|
(cmpmap () () ())
|
|
(cmpmulti () () ())
|
|
(cmpspecial () () ())
|
|
(cmptag () () ())
|
|
(cmptop () () ())
|
|
(cmpvar () () ())
|
|
(cmpwt () () ())
|
|
(cmpmain () () ())
|
|
(cmpffi () () ())
|
|
(cmpcfg () () ())))
|
|
|
|
(sbt:defsystem
|
|
cmp
|
|
:modules *cmp-modules*
|
|
:source-directory '("@abs_srcdir@/" "@abs_builddir@/")
|
|
:fasl-directory "@abs_builddir@/"
|
|
:library-directory "@abs_top_builddir@/")
|
|
|