diff options
author | Xavier Leroy <xavier.leroy@inria.fr> | 1997-01-05 14:06:13 +0000 |
---|---|---|
committer | Xavier Leroy <xavier.leroy@inria.fr> | 1997-01-05 14:06:13 +0000 |
commit | 373903b964f0ed8ad713cbd56e6ebf4dce5e5069 (patch) | |
tree | d880c067f51b57816982867458366a18ea8fec34 /Makefile.nt | |
parent | efea2db0440cdaa940524c92d909e1de47268670 (diff) |
Petits nettoyages
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@1239 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'Makefile.nt')
-rw-r--r-- | Makefile.nt | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/Makefile.nt b/Makefile.nt index af2ec9c6a..fcc399c0f 100644 --- a/Makefile.nt +++ b/Makefile.nt @@ -13,7 +13,6 @@ CAMLDEP=boot\ocamlrun tools\ocamldep DEPFLAGS=$(INCLUDES) CAMLRUN=byterun\ocamlrun - INCLUDES=-I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel UTILS=utils\misc.cmo utils\tbl.cmo utils\config.cmo \ @@ -361,10 +360,15 @@ clean:: # The runtime system for the bytecode compiler -runtime: +runtime: makeruntime stdlib\libcamlrun.lib + +makeruntime: cd byterun & $(MAKEREC) all +stdlib\libcamlrun.lib: asmrun\libcamlrun.lib + cp byterun\libcamlrun.lib stdlib\libcamlrun.lib realclean:: cd byterun & $(MAKEREC) clean + rm -f stdlib\libcamlrun.lib alldepend:: cd byterun & $(MAKEREC) depend @@ -378,6 +382,7 @@ stdlib\libasmrun.lib: asmrun\libasmrun.lib cp asmrun\libasmrun.lib stdlib\libasmrun.lib realclean:: cd asmrun & $(MAKEREC) clean + rm -f stdlib\libasmrun.lib alldepend:: cd asmrun & $(MAKEREC) depend |