Now supports constant field patterns in bitmatch.
[ocaml-bitstring.git] / Makefile
1 # $Id: Makefile,v 1.2 2008-04-01 08:56:43 rjones Exp $
2
3 OCAMLFIND = ocamlfind
4 OCAMLMKLIB = ocamlmklib
5
6
7 OCAMLCFLAGS = -g
8 OCAMLCPACKAGES =
9 OCAMLOPTFLAGS =
10 OCAMLOPTPACKAGES =
11
12 EXAMPLES := $(wildcard examples/*.ml)
13
14 TESTS   := $(patsubst %.ml,%,$(wildcard tests/*.ml))
15
16 all:    pa_bitmatch.cmo bitmatch.cma bitmatch.cmxa
17
18 pa_bitmatch.cmo: pa_bitmatch.ml
19         ocamlfind ocamlc -I +camlp4 camlp4lib.cma -pp camlp4of.opt -c $< -o $@
20
21 bitmatch.cma: bitmatch.cmo
22         $(OCAMLFIND) ocamlc -a -o $@ $^
23
24 bitmatch.cmxa: bitmatch.cmx
25         $(OCAMLFIND) ocamlopt -a -o $@ $^
26
27 test: pa_bitmatch.cmo bitmatch.cma
28         @for f in $(TESTS); do \
29           echo Test: $$f; \
30           $(OCAMLFIND) ocamlc $(OCAMLCFLAGS) -pp "camlp4o pa_bitmatch.cmo" \
31             -I . bitmatch.cma $$f.ml -o $$f; \
32           if [ $$? -ne 0 ]; then exit 1; fi; \
33           $$f; \
34           if [ $$? -ne 0 ]; then exit 1; fi; \
35         done
36
37 print-tests: pa_bitmatch.cmo
38         @for f in $(TESTS); do \
39           echo Test: $$f.ml; \
40           camlp4o pa_bitmatch.cmo -printer pr_o.cmo $$f.ml; \
41         done
42
43 print-examples: pa_bitmatch.cmo
44         @for f in $(EXAMPLES); do \
45           echo Example: $$f; \
46           camlp4o pa_bitmatch.cmo -printer pr_o.cmo $$f; \
47         done
48
49 .mli.cmi:
50         $(OCAMLFIND) ocamlc $(OCAMLCFLAGS) $(OCAMLCPACKAGES) -c $<
51 .ml.cmo:
52         $(OCAMLFIND) ocamlc $(OCAMLCFLAGS) $(OCAMLCPACKAGES) -c $<
53 .ml.cmx:
54         $(OCAMLFIND) ocamlopt $(OCAMLOPTFLAGS) $(OCAMLOPTPACKAGES) -c $<
55
56 depend: .depend
57
58 .depend: bitmatch.ml bitmatch.mli
59         rm -f .depend
60         $(OCAMLFIND) ocamldep $(OCAMLCPACKAGES) $^ > $@
61
62 ifeq ($(wildcard .depend),.depend)
63 include .depend
64 endif
65
66 .PHONY: depend dist check-manifest dpkg doc print-examples print-tests test
67
68 .SUFFIXES:      .cmo .cmi .cmx .ml .mli .mll