diff options
author | Xavier Leroy <xavier.leroy@inria.fr> | 1995-12-05 09:18:22 +0000 |
---|---|---|
committer | Xavier Leroy <xavier.leroy@inria.fr> | 1995-12-05 09:18:22 +0000 |
commit | a90769012d231fa37e3e2062f053aa695e98f50f (patch) | |
tree | 7c0139402df119ab43d71511c895b9abc93e02d5 | |
parent | c34a58a12edf215cba39e2a57a1890a84d9db476 (diff) |
Meilleures dependances
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@503 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
-rw-r--r-- | testasmcomp/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testasmcomp/Makefile b/testasmcomp/Makefile index de3d5c90d..de9173c20 100644 --- a/testasmcomp/Makefile +++ b/testasmcomp/Makefile @@ -15,7 +15,7 @@ CC=$(NATIVECC) CFLAGS=-g PROGS=fib.out tak.out quicksort.out quicksort2.out soli.out integr.out \ - arith.out + arith.out checkbound.out all: codegen $(PROGS) @@ -128,7 +128,7 @@ checkbound.out: main.c checkbound.o $(ARCH).o clean:: rm -f *.out *.cm[io] *.s *.o *~ -fib.o tak.o quicksort.o quicksort2.o integr.o soli.o: $(CODEGEN) +$(PROGS:.out=.o): $(CODEGEN) depend: beforedepend $(CAMLDEP) $(DEPFLAGS) *.mli *.ml > .depend |