
`cext-lib` contains much of the contents of `dynext`, which
is no longer very widely used.
Also moved the implementation of the `mzc` executable
to a more appropriate package.
Also, used `lazy-require` consistently for dynamically
loading implementations.
original commit: 9f2755116d
38 lines
772 B
Racket
38 lines
772 B
Racket
(module option-sig racket/base
|
|
(require racket/unit)
|
|
|
|
(provide setup-option^)
|
|
|
|
(define-signature setup-option^
|
|
(setup-program-name
|
|
verbose
|
|
make-verbose
|
|
compiler-verbose
|
|
clean
|
|
compile-mode
|
|
make-only
|
|
make-zo
|
|
make-info-domain
|
|
make-foreign-libs
|
|
make-launchers
|
|
make-docs
|
|
make-user
|
|
make-planet
|
|
avoid-main-installation
|
|
make-tidy
|
|
make-doc-index
|
|
check-dependencies
|
|
fix-dependencies
|
|
call-install
|
|
call-post-install
|
|
pause-on-errors
|
|
parallel-workers
|
|
force-unpacks
|
|
doc-pdf-dest
|
|
specific-collections
|
|
specific-planet-dirs
|
|
archives
|
|
archive-implies-reindex
|
|
current-target-directory-getter
|
|
current-target-plt-directory-getter)))
|