summaryrefslogtreecommitdiff
path: root/stdlib/Makefile.nt
diff options
context:
space:
mode:
authorXavier Leroy <xavier.leroy@inria.fr>1996-04-30 14:53:58 +0000
committerXavier Leroy <xavier.leroy@inria.fr>1996-04-30 14:53:58 +0000
commit2301d778e79a859efe0dc02bd6a676120f1b83a6 (patch)
tree0d8b7afdcc1fe3523a57ffb7a569eb1a9db6991f /stdlib/Makefile.nt
parent1cbdeef09bbc3ab0a312b3c0438f588392ec2aa2 (diff)
downloadocaml-2301d778e79a859efe0dc02bd6a676120f1b83a6.tar.gz
Renommage en Objective Caml
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@782 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'stdlib/Makefile.nt')
-rw-r--r--stdlib/Makefile.nt16
1 files changed, 8 insertions, 8 deletions
diff --git a/stdlib/Makefile.nt b/stdlib/Makefile.nt
index 4e015f8a0b..acbcc33c4d 100644
--- a/stdlib/Makefile.nt
+++ b/stdlib/Makefile.nt
@@ -1,11 +1,11 @@
!include ..\config\Makefile.nt
-RUNTIME=..\boot\cslrun
-COMPILER=..\cslc
+RUNTIME=..\boot\ocamlrun
+COMPILER=..\ocamlc
CAMLC=$(RUNTIME) $(COMPILER)
-OPTCOMPILER=..\cslopt
+OPTCOMPILER=..\ocamlopt
CAMLOPT=$(RUNTIME) $(OPTCOMPILER)
-CAMLDEP=..\boot\cslrun ..\tools\csldep
+CAMLDEP=..\boot\ocamlrun ..\tools\ocamldep
OBJS=pervasives.cmo list.cmo string.cmo char.cmo array.cmo sys.cmo \
hashtbl.cmo sort.cmo filename.cmo obj.cmo lexing.cmo parsing.cmo \
@@ -13,12 +13,12 @@ OBJS=pervasives.cmo list.cmo string.cmo char.cmo array.cmo sys.cmo \
printf.cmo format.cmo arg.cmo printexc.cmo gc.cmo \
digest.cmo random.cmo oo.cmo
-all: stdlib.cma std_exit.cmo cslheader
+all: stdlib.cma std_exit.cmo ocamlheader
allopt: stdlib.cmxa std_exit.cmx
install:
- cp stdlib.cma std_exit.cmo *.cmi *.mli cslheader $(LIBDIR)
+ cp stdlib.cma std_exit.cmo *.cmi *.mli ocamlheader $(LIBDIR)
installopt:
cp stdlib.cmxa stdlib.lib std_exit.obj *.cmx $(LIBDIR)
@@ -29,11 +29,11 @@ stdlib.cma: $(OBJS)
stdlib.cmxa: $(OBJS:.cmo=.cmx)
$(CAMLOPT) -a -o stdlib.cmxa $(OBJS:.cmo=.cmx)
-cslheader: headernt.c ..\config\Makefile.nt
+ocamlheader: headernt.c ..\config\Makefile.nt
$(BYTECC) $(BYTECCCOMPOPTS) $(BYTECCLINKOPTS) -Fecslheader. headernt.c
clean::
- rm -f cslheader
+ rm -f ocamlheader
pervasives.cmi: pervasives.mli
$(CAMLC) $(COMPFLAGS) -nopervasives -c pervasives.mli