diff options
author | Xavier Leroy <xavier.leroy@inria.fr> | 2004-04-01 13:10:12 +0000 |
---|---|---|
committer | Xavier Leroy <xavier.leroy@inria.fr> | 2004-04-01 13:10:12 +0000 |
commit | 5eb0a9bbee5a7f41c83b2325d00567733cb28caf (patch) | |
tree | d352d92ab766692e6d0d5f9960cede9164b66c67 | |
parent | 0100a08d104f6e1b0b8477b51072e09b0b456d52 (diff) |
Bug fix pour portage Mingw
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@6180 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
-rw-r--r-- | otherlibs/num/test/Makefile.nt | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/otherlibs/num/test/Makefile.nt b/otherlibs/num/test/Makefile.nt index 0d342145e..11faa025a 100644 --- a/otherlibs/num/test/Makefile.nt +++ b/otherlibs/num/test/Makefile.nt @@ -13,6 +13,8 @@ # $Id$ +include ../../../config/Makefile + CAMLC=../../../boot/ocamlrun ../../../ocamlc -I ../../../stdlib -I .. CAMLOPT=../../../boot/ocamlrun ../../../ocamlopt -I ../../../stdlib -I .. CC=$(BYTECC) @@ -28,10 +30,10 @@ TESTFILES=test.cmo \ TESTOPTFILES=$(TESTFILES:.cmo=.cmx) -test.byt: $(TESTFILES) ../nums.cma ../libnums.lib +test.byt: $(TESTFILES) ../nums.cma ../libnums.$(A) $(CAMLC) -o test.byt nums.cma $(TESTFILES) -test.opt: $(TESTOPTFILES) ../nums.cmxa ../libnums.lib +test.opt: $(TESTOPTFILES) ../nums.cmxa ../libnums.$(A) $(CAMLOPT) -o test.opt nums.cmxa $(TESTOPTFILES) test_bng.exe: test_bng.o |