summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorXavier Leroy <xavier.leroy@inria.fr>2006-09-21 10:01:24 +0000
committerXavier Leroy <xavier.leroy@inria.fr>2006-09-21 10:01:24 +0000
commitea323b26898aaa38ceddad346e89f382528411d2 (patch)
tree2ef66fae108ec8a889875c0a952d8ee846c3435d
parenta97f042d6fd72071a604f084ca4c46ba4b015c8b (diff)
MAJ Makefile Windows
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@7631 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
-rw-r--r--otherlibs/systhreads/Tests/Makefile.nt8
1 files changed, 4 insertions, 4 deletions
diff --git a/otherlibs/systhreads/Tests/Makefile.nt b/otherlibs/systhreads/Tests/Makefile.nt
index bc3cf96af..d3d340ae1 100644
--- a/otherlibs/systhreads/Tests/Makefile.nt
+++ b/otherlibs/systhreads/Tests/Makefile.nt
@@ -20,9 +20,9 @@ PROGS=test1.byt test2.byt test3.byt test4.byt test5.byt test6.byt \
include ../../../config/Makefile
-CAMLC=../../../boot/ocamlrun ../../../ocamlc -I .. -I ../../unix -I ../../../stdlib
+CAMLC=../../../boot/ocamlrun ../../../ocamlc -I .. -I ../../win32unix -I ../../../stdlib
-CAMLOPT=../../../boot/ocamlrun ../../../ocamlopt -I .. -I ../../unix -I ../../../stdlib
+CAMLOPT=../../../boot/ocamlrun ../../../ocamlopt -I .. -I ../../win32unix -I ../../../stdlib
all: $(PROGS)
@@ -34,10 +34,10 @@ clean:
%.byt: ../../threads/Tests/%.ml
cp ../../threads/Tests/$*.ml $*.ml
- $(CAMLC) -custom -o $*.byt unix.cma threads.cma $*.ml ../libthreads.$(A) ../../unix/libunix.$(A)
+ $(CAMLC) -custom -o $*.byt unix.cma threads.cma $*.ml ../libthreads.$(A) ../../win32unix/libunix.$(A)
%.out: ../../threads/Tests/%.ml
cp ../../threads/Tests/$*.ml $*.ml
- $(CAMLOPT) -o $*.out unix.cmxa threads.cmxa $*.ml ../libthreadsnat.$(A) ../../unix/libunix.$(A) -cclib -lpthread
+ $(CAMLOPT) -o $*.out unix.cmxa threads.cmxa $*.ml ../libthreadsnat.$(A) ../../win32unix/libunix.$(A) -cclib -lpthread
$(PROGS): ../threads.cma ../libthreads.$(A)