24 lines
604 B
Bash
Executable File
24 lines
604 B
Bash
Executable File
#!/bin/sh
|
|
# $Id$
|
|
cd `dirname $0`/..
|
|
set -ex
|
|
TAGLINE='true: -use_stdlib'
|
|
./boot/ocamlrun boot/myocamlbuild.boot \
|
|
-tag-line "$TAG_LINE" \
|
|
boot/stdlib.cma boot/std_exit.cmo
|
|
|
|
boot/ocamlrun boot/myocamlbuild.boot \
|
|
-tag-line "$TAG_LINE" -log _boot_log1 \
|
|
ocamlbuild/ocamlbuildlightlib.cma ocamlbuild/ocamlbuildlight.byte
|
|
|
|
rm -f _build/myocamlbuild
|
|
|
|
boot/ocamlrun boot/myocamlbuild.boot \
|
|
-just-plugin -install-lib-dir _build/ocamlbuild -byte-plugin
|
|
|
|
cp _build/myocamlbuild boot/myocamlbuild
|
|
|
|
./boot/ocamlrun boot/myocamlbuild \
|
|
-tag-line "$TAG_LINE" \
|
|
$@ -log _boot_log2 boot/camlheader ocamlc
|