22 lines
981 B
Bash
Executable File
22 lines
981 B
Bash
Executable File
#!/bin/sh
|
|
|
|
#########################################################################
|
|
# #
|
|
# OCaml #
|
|
# #
|
|
# Nicolas Pouillard, projet Gallium, INRIA Rocquencourt #
|
|
# #
|
|
# Copyright 2007 Institut National de Recherche en Informatique et #
|
|
# en Automatique. All rights reserved. This file is distributed #
|
|
# under the terms of the Q Public License version 1.0. #
|
|
# #
|
|
#########################################################################
|
|
|
|
set -ex
|
|
cd `dirname $0`/..
|
|
touch build/ocamlbuild_mixed_mode
|
|
mkdir -p _build
|
|
cp -rf boot _build/
|
|
./build/mk_shell_and_ocamlbuild_config.sh
|
|
./build/boot.sh
|