From 15990b118da35f54e5536b9d10bb7d4bac33a29b Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Wed, 27 Aug 2008 11:27:47 +0000 Subject: [PATCH] Fix 'make test' rule. --- Makefile.in | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile.in b/Makefile.in index 3fcd8e4..6086f24 100644 --- a/Makefile.in +++ b/Makefile.in @@ -135,7 +135,10 @@ else PP = -pp 'camlp4o $(OCAMLLIB)/bisect/bisect.cma bitstring.cma bitstring_persistent.cma pa_bitstring.cmo' endif -test: pa_bitstring.cmo bitstring.cma bitstring_persistent.cma tests/test.bmpp +test: pa_bitstring.cmo \ + bitstring.cma bitstring_persistent.cma \ + bitstring.cmxa bitstring_persistent.cmxa \ + tests/test.bmpp @for f in $(TESTS); do \ echo Building $$f; \ $(OCAMLFIND) ocamlopt $(OCAMLOPTFLAGS) $(PP) -package unix $(OCAMLOPTLIBS) -I . bitstring.cmxa $$f.ml -o $$f.opt; \ -- 1.8.3.1