From 88bfb0bbe69e1bd2ee737a321f3641a53e272bc7 Mon Sep 17 00:00:00 2001 From: Xavier Leroy Date: Fri, 24 Oct 1997 15:53:09 +0000 Subject: [PATCH] MAJ git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@1739 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02 --- otherlibs/systhreads/Tests/Makefile | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/otherlibs/systhreads/Tests/Makefile b/otherlibs/systhreads/Tests/Makefile index 4e684887c..7e471f059 100644 --- a/otherlibs/systhreads/Tests/Makefile +++ b/otherlibs/systhreads/Tests/Makefile @@ -4,8 +4,6 @@ PROGS=test1.byt test2.byt test3.byt test4.byt test5.byt test6.byt \ include ../../../config/Makefile -VPATH=../../threads/Tests - CAMLC=../../../boot/ocamlrun ../../../ocamlc -I .. -I ../../unix -I ../../../stdlib CAMLOPT=../../../boot/ocamlrun ../../../ocamlopt -I .. -I ../../unix -I ../../../stdlib @@ -18,14 +16,12 @@ clean: rm -f *.cm* *.byt *.out rm -f $(PROGS:.byt=.ml) -.SUFFIXES: .ml .byt .out - -.ml.byt: +%.byt: ../../threads/Tests/%.ml cp ../../threads/Tests/$*.ml $*.ml $(CAMLC) -custom -o $*.byt unix.cma threads.cma $*.ml ../libthreads.a ../../unix/libunix.a -cclib -lpthread -.ml.out: +%.out: ../../threads/Tests/%.ml cp ../../threads/Tests/$*.ml $*.ml $(CAMLOPT) -o $*.out unix.cmxa threads.cmxa $*.ml ../libthreadsnat.a ../../unix/libunix.a -cclib -lpthread -$(PROGS): ../threads.cma ../libthreads.a ../stdlib.cma +$(PROGS): ../threads.cma ../libthreads.a