diff options
author | Xavier Leroy <xavier.leroy@inria.fr> | 2000-03-16 13:35:20 +0000 |
---|---|---|
committer | Xavier Leroy <xavier.leroy@inria.fr> | 2000-03-16 13:35:20 +0000 |
commit | b070d1dce08a924cfdae5b5304318a990ebb73c8 (patch) | |
tree | adbee9f1271b251af595e3a1ac42c545f02d3237 /Makefile.nt | |
parent | 3375e52091a4274b9503be74351a4aada59a94db (diff) |
MAJ portage Win32
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@2962 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'Makefile.nt')
-rw-r--r-- | Makefile.nt | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Makefile.nt b/Makefile.nt index 5b8923b8d..7348ed827 100644 --- a/Makefile.nt +++ b/Makefile.nt @@ -59,7 +59,8 @@ COMP=bytecomp\lambda.cmo bytecomp\printlambda.cmo \ BYTECOMP=bytecomp\meta.cmo bytecomp\instruct.cmo bytecomp\bytegen.cmo \ bytecomp\printinstr.cmo bytecomp\opcodes.cmo bytecomp\emitcode.cmo \ - bytecomp\symtable.cmo bytecomp\bytelibrarian.cmo bytecomp\bytelink.cmo + bytecomp\bytesections.cmo bytecomp\symtable.cmo \ + bytecomp\bytelibrarian.cmo bytecomp\bytelink.cmo ASMCOMP=asmcomp\arch.cmo asmcomp\cmm.cmo asmcomp\printcmm.cmo \ asmcomp\reg.cmo asmcomp\mach.cmo asmcomp\proc.cmo \ @@ -98,8 +99,8 @@ OPTOBJS=$(OPTUTILS) $(PARSING) $(TYPING) $(COMP) $(ASMCOMP) $(OPTDRIVER) EXPUNGEOBJS=utils\misc.cmo utils\formatmsg.cmo utils\tbl.cmo \ utils\config.cmo utils\clflags.cmo \ typing\ident.cmo typing\path.cmo typing\types.cmo typing\btype.cmo \ - typing\predef.cmo bytecomp\runtimedef.cmo bytecomp\symtable.cmo \ - toplevel\expunge.cmo + typing\predef.cmo bytecomp\runtimedef.cmo bytecomp\bytesections.cmo \ + bytecomp\symtable.cmo toplevel\expunge.cmo PERVASIVES=arg array buffer callback char digest filename format gc hashtbl \ lexing list map obj parsing pervasives printexc printf queue random \ @@ -185,9 +186,8 @@ restore: # Check if fixpoint reached compare: - fc /b boot\ocamlc ocamlc - fc /b boot\ocamllex lex\ocamllex - echo "Fixpoint reached, bootstrap succeeded." + - cmp -i 4096 boot/ocamlc ocamlc + - cmp -i 4096 boot/ocamllex lex/ocamllex # Remove old bootstrap compilers cleanboot: |