mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2025-12-06 02:40:26 -08:00
by spaces. A custom script was used to insert/replace Emacs and ViM per-file editor settings according to their type and the new ECL coding style.
49 lines
2.4 KiB
Common Lisp
49 lines
2.4 KiB
Common Lisp
;;;; -*- Mode: Lisp; Syntax: Common-Lisp; indent-tabs-mode: nil -*-
|
|
;;;; vim: set filetype=lisp tabstop=8 shiftwidth=2 expandtab:
|
|
|
|
;;; ----------------------------------------------------------------------
|
|
;;; 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@/")
|
|
|