1995-05-09 02:37:17 -07:00
|
|
|
#!/bin/sh
|
|
|
|
|
1996-11-02 10:05:24 -08:00
|
|
|
# Dual script. Works under Bourne Shell and MPW Shell.
|
|
|
|
|
|
|
|
if : == x
|
|
|
|
then # Bourne Shell
|
1996-11-29 06:46:32 -08:00
|
|
|
exec ocamlc -linkall toplevellib.cma "$@" topmain.cmo
|
1996-11-02 10:05:24 -08:00
|
|
|
else # MPW Shell
|
|
|
|
ocamlc-custom -linkall toplevellib.cma {"parameters"} topmain.cmo
|
|
|
|
exit {status}
|
|
|
|
end
|
|
|
|
fi
|