blob: 1eebde387b196eb35696a38eaa8d624339ec17a4 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
;;; csys.scm -- compilation unit definition for the compilation system
(define-compilation-unit command-interface
(source-filename "$Y2/command-interface/")
(require global)
(unit command
(source-filename "command.scm"))
(unit command-utils
(source-filename "command-utils.scm"))
(unit incremental-compiler
(source-filename "incremental-compiler.scm")))
|