diff options
author | Damien Doligez <damien.doligez-inria.fr> | 1999-11-29 19:04:40 +0000 |
---|---|---|
committer | Damien Doligez <damien.doligez-inria.fr> | 1999-11-29 19:04:40 +0000 |
commit | 2f48ba9b3f89a4976147144ee205170978c35a27 (patch) | |
tree | 891a759745ac24ae7a877bbd818119c5be1ba192 /tools/ocamlmktop.tpl | |
parent | 1ab92e6950ba3827346fb3b8af903a4d88ff8488 (diff) | |
download | ocaml-2f48ba9b3f89a4976147144ee205170978c35a27.tar.gz |
ajout notice de copyright; MacOS: utilisation de ToolServer
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@2633 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'tools/ocamlmktop.tpl')
-rw-r--r-- | tools/ocamlmktop.tpl | 18 |
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 |