diff options
author | Xavier Leroy <xavier.leroy@inria.fr> | 2002-06-07 09:49:45 +0000 |
---|---|---|
committer | Xavier Leroy <xavier.leroy@inria.fr> | 2002-06-07 09:49:45 +0000 |
commit | a82c3665042b80a0febcbffdf0577cd37de349ff (patch) | |
tree | 25ddb7621d275881c1cfa38e6ce0a2b1462270b8 /otherlibs/dynlink | |
parent | 143761a5142bf30a3321ec7b66bf2f4b2620ac30 (diff) |
Portage Mingw et revision du portage Win32/MSVC
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@4899 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'otherlibs/dynlink')
-rw-r--r-- | otherlibs/dynlink/Makefile.nt | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/otherlibs/dynlink/Makefile.nt b/otherlibs/dynlink/Makefile.nt index 439915428..56d14ba63 100644 --- a/otherlibs/dynlink/Makefile.nt +++ b/otherlibs/dynlink/Makefile.nt @@ -15,17 +15,17 @@ # Makefile for the dynamic link library -!include ..\..\config\Makefile.nt +include ../../config/Makefile -CAMLC=..\..\boot\ocamlrun ..\..\ocamlc -INCLUDES=-I ..\..\utils -I ..\..\typing -I ..\..\bytecomp -COMPFLAGS=-I ..\..\stdlib $(INCLUDES) +CAMLC=../../boot/ocamlrun ../../ocamlc +INCLUDES=-I ../../utils -I ../../typing -I ../../bytecomp +COMPFLAGS=-warn-error A -I ../../stdlib $(INCLUDES) OBJS=dynlink.cmo -COMPILEROBJS=misc.cmo config.cmo tbl.cmo \ - clflags.cmo ident.cmo path.cmo \ +COMPILEROBJS=misc.cmo config.cmo tbl.cmo clflags.cmo \ + ident.cmo path.cmo \ types.cmo btype.cmo predef.cmo runtimedef.cmo \ - bytesections.cmo dll.cmo symtable.cmo opcodes.cmo + bytesections.cmo dll.cmo symtable.cmo opcodes.cmo meta.cmo all: dynlink.cma extract_crc @@ -38,7 +38,7 @@ extract_crc: dynlink.cma extract_crc.cmo $(CAMLC) $(COMPFLAGS) -o extract_crc dynlink.cma extract_crc.cmo install: - cp dynlink.cmi dynlink.cma extract_crc $(LIBDIR) + cp dynlink.cmi dynlink.cma dynlink.mli extract_crc $(LIBDIR) installopt: @@ -56,6 +56,6 @@ clean: partialclean $(CAMLC) -c $(COMPFLAGS) $< depend: - ..\..\boot\ocamlrun ..\..\tools\ocamldep *.mli *.ml > .depend + ../../boot/ocamlrun ../../tools/ocamldep $(INCLUDES) *.mli *.ml >.depend -!include .depend +include .depend |