2001-09-07 01:19:00 -07:00
|
|
|
#!/bin/sh -e
|
|
|
|
if test "`basename $OTOP`" != "ocaml_stuff"; then
|
2001-09-08 00:43:33 -07:00
|
|
|
COMM="$OTOP/boot/ocamlrun$EXE $OTOP/ocamlopt -I $OTOP/stdlib"
|
2001-09-07 01:19:00 -07:00
|
|
|
else
|
|
|
|
COMM=ocamlopt$OPT
|
|
|
|
fi
|
|
|
|
echo $COMM $*
|
|
|
|
$COMM $*
|