From: Richard W.M. Jones Date: Wed, 27 Aug 2008 11:27:47 +0000 (+0000) Subject: Fix 'make test' rule. X-Git-Url: http://git.annexia.org/?a=commitdiff_plain;h=15990b118da35f54e5536b9d10bb7d4bac33a29b;hp=63bf7692c8cd8a1a6960cb24f3cdac24c61d5cf1;p=ocaml-bitstring.git Fix 'make test' rule. --- 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; \