0.8.8.23:
[sbcl/lichteblau.git] / make-target-1.sh
blob825638450a886fbd9301f7a2534807092fff1b78
1 #!/bin/sh
3 # This is a script to be run as part of make.sh. The only time you'd
4 # want to run it by itself is if you're trying to cross-compile the
5 # system or if you're doing some kind of troubleshooting.
7 # This software is part of the SBCL system. See the README file for
8 # more information.
10 # This software is derived from the CMU CL system, which was
11 # written at Carnegie Mellon University and released into the
12 # public domain. The software is in the public domain and is
13 # provided with absolutely no warranty. See the COPYING and CREDITS
14 # files for more information.
16 echo //entering make-target-1.sh
18 # Build the runtime system and symbol table (.nm) file.
20 # (This C build has to come after the first genesis in order to get
21 # the sbcl.h the C build needs, and come before the second genesis in
22 # order to produce the symbol table file that second genesis needs. It
23 # could come either before or after running the cross compiler; that
24 # doesn't matter.)
25 echo //building runtime system and symbol table file
26 cd src/runtime
27 $GNUMAKE clean || exit 1
28 $GNUMAKE depend || exit 1
29 $GNUMAKE all || exit 1
30 cd ../..
32 # Use a little C program to grab stuff from the C header files and
33 # smash it into Lisp source code.
34 cd tools-for-build
35 $GNUMAKE -I../src/runtime grovel-headers || exit 1
36 cd ..
37 tools-for-build/grovel-headers > output/stuff-groveled-from-headers.lisp
39 # after-grovel-headers may not exist for all platforms (used for
40 # Darwin hacks)
41 cd src/runtime
42 $GNUMAKE after-grovel-headers || true
43 cd ..