Module of module types for OrderedType,ComparableType,Printable,Serializable,Discrete...
[ocaml.git] / build / boot-c-parts.sh
bloba38c16410332e2d487904774c7e28653393a8082
1 #!/bin/sh
2 # $Id$
3 cd `dirname $0`/..
4 set -ex
6 # Create a bunch of symlinks to _build/boot
7 mkdir -p _build/boot
8 ln -sf ../../byterun/ocamlrun \
9 ../../byterun/libcamlrun.a \
10 ../../asmrun/libasmrun.a \
11 ../../asmrun/libasmrunp.a \
12 ../../yacc/ocamlyacc \
13 ../../boot/ocamlc \
14 ../../boot/ocamllex \
15 ../../boot/ocamldep \
16 _build/boot
18 [ -f boot/ocamlrun ] || ln -sf ../byterun/ocamlrun boot
20 (cd byterun && make)
21 (cd asmrun && make all meta.o dynlink.o)
22 (cd yacc && make)