blob: a401e51dbd9c7eab70c62a8a3fd95897bd446326 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
#!/bin/sh
#########################################################################
# #
# Objective Caml #
# #
# Nicolas Pouillard, projet Gallium, INRIA Rocquencourt #
# #
# Copyright 2008 Institut National de Recherche en Informatique et #
# en Automatique. All rights reserved. This file is distributed #
# under the terms of the GNU Library General Public License, with #
# the special exception on linking described in file LICENSE. #
# #
#########################################################################
# $Id$
cd `dirname $0`
set -e
if [ -e ocamlbuild_mixed_mode ]; then
echo ocamlbuild mixed mode detected
echo 'please cleanup and re-launch (make clean ; ./build/distclean.sh)'
exit 1
fi
./mkconfig.sh
./mkmyocamlbuild_config.sh
. ../config/config.sh
if [ "x$EXE" = "x.exe" ]; then
./boot-c-parts-windows.sh
else
./boot-c-parts.sh
fi
./boot.sh $@
./world.all.sh $@
|