summaryrefslogtreecommitdiff
path: root/tools/ocamlmktop.tpl
diff options
context:
space:
mode:
Diffstat (limited to 'tools/ocamlmktop.tpl')
-rw-r--r--tools/ocamlmktop.tpl18
1 files changed, 16 insertions, 2 deletions
diff --git a/tools/ocamlmktop.tpl b/tools/ocamlmktop.tpl
index 7cf6990b6f..af2d5e3fdb 100644
--- a/tools/ocamlmktop.tpl
+++ b/tools/ocamlmktop.tpl
@@ -1,12 +1,26 @@
#!/bin/sh
+#########################################################################
+# #
+# Objective Caml #
+# #
+# Damien Doligez, projet Para, INRIA Rocquencourt #
+# #
+# Copyright 1999 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. #
+# #
+#########################################################################
-# Dual script. Works under Bourne Shell and MPW Shell.
+# $Id$
+
+
+# Dual shell script. Works under both Bourne Shell and MPW Shell.
if : == x
then # Bourne Shell
exec %%BINDIR%%/ocamlc -linkall toplevellib.cma "$@" topmain.cmo
else # MPW Shell
- ocamlc-custom -linkall toplevellib.cma {"parameters"} topmain.cmo
+ ocamlc -linkall toplevellib.cma {"parameters"} topmain.cmo
exit {status}
end
fi