doc/manual/Makefile: remove stale variables
[sbcl.git] / make-c-runtime.sh
blob47314a6cfd098837af07e53189a65da598f2abf6
1 #!/bin/sh
3 # Load our build configuration
4 . output/build-config
6 time $SBCL_XC_HOST <<EOF
7 (load "src/cold/shared.lisp")
8 (load "src/cold/set-up-cold-packages.lisp")
9 (load "tools-for-build/corefile.lisp")
10 (in-package "SB-COLD")
11 (in-host-compilation-mode
12 (lambda (&aux (*features* (cons :c-headers-only *features*)))
13 (do-stems-and-flags (stem flags)
14 (when (member :c-headers flags)
15 (handler-bind ((style-warning (function muffle-warning)))
16 (load (merge-pathnames (stem-remap-target stem) ".lisp")))))
17 (load "src/compiler/generic/genesis.lisp")))
18 (genesis :c-header-dir-name "src/runtime/genesis/" :verbose nil)
19 EOF
21 diff -r output/genesis-2 src/runtime/genesis
23 (cd src/runtime ; make)