Makefile make install/clean.
[ocaml-bitstring.git] / Makefile.in
1 # Bitmatch syntax extension.
2 # Copyright (C) 2008 Red Hat Inc., Richard W.M. Jones
3 #
4 # This library is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU Lesser General Public
6 # License as published by the Free Software Foundation; either
7 # version 2 of the License, or (at your option) any later version.
8 #
9 # This library is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12 # Lesser General Public License for more details.
13 #
14 # You should have received a copy of the GNU Lesser General Public
15 # License along with this library; if not, write to the Free Software
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301  USA
17 #
18 # $Id: Makefile.in,v 1.2 2008-04-02 08:03:26 rjones Exp $
19
20 PACKAGE         = @PACKAGE_NAME@
21 VERSION         = @PACKAGE_VERSION@
22
23 OCAMLFIND       = @OCAMLFIND@
24 OCAMLMKLIB      = @OCAMLMKLIB@
25 OCAMLDOC        = @OCAMLDOC@
26 INSTALL         = @INSTALL@
27
28 OCAMLCFLAGS     = -g
29 OCAMLCPACKAGES  =
30 OCAMLOPTFLAGS   =
31 OCAMLOPTPACKAGES =
32
33 EXAMPLES        = $(wildcard examples/*.ml)
34
35 TESTS           = $(patsubst %.ml,%,$(wildcard tests/*.ml))
36
37 all:    pa_bitmatch.cmo bitmatch.cma bitmatch.cmxa
38
39 pa_bitmatch.cmo: pa_bitmatch.ml
40         $(OCAMLFIND) ocamlc -I +camlp4 camlp4lib.cma \
41           -pp camlp4of.opt -c $< -o $@
42
43 bitmatch.cma: bitmatch.cmo
44         $(OCAMLFIND) ocamlc -a -o $@ $^
45
46 bitmatch.cmxa: bitmatch.cmx
47         $(OCAMLFIND) ocamlopt -a -o $@ $^
48
49 # Tests and examples.
50
51 test: pa_bitmatch.cmo bitmatch.cma
52         @for f in $(TESTS); do \
53           echo Test: $$f; \
54           $(OCAMLFIND) ocamlc $(OCAMLCFLAGS) -pp "camlp4o pa_bitmatch.cmo" \
55             -I . bitmatch.cma $$f.ml -o $$f; \
56           if [ $$? -ne 0 ]; then exit 1; fi; \
57           $$f; \
58           if [ $$? -ne 0 ]; then exit 1; fi; \
59         done
60
61 print-tests: pa_bitmatch.cmo
62         @for f in $(TESTS); do \
63           echo Test: $$f.ml; \
64           cmd="camlp4o pa_bitmatch.cmo -printer pr_o.cmo $$f.ml"; \
65           echo $$cmd; \
66           $$cmd; \
67         done
68
69 print-examples: pa_bitmatch.cmo
70         @for f in $(EXAMPLES); do \
71           echo Example: $$f; \
72           camlp4o pa_bitmatch.cmo -printer pr_o.cmo $$f; \
73           if [ $$? -ne 0 ]; then exit 1; fi; \
74         done
75
76 # Clean.
77
78 clean:
79         rm -f core *~ *.cmi *.cmo *.cmx *.cma *.cmxa *.a *.o
80         rm -f tests/*~ tests/*.cmi tests/*.cmo $(TESTS)
81         rm -f examples/*~
82
83 install:
84
85 # Standard rules.
86
87 .mli.cmi:
88         $(OCAMLFIND) ocamlc $(OCAMLCFLAGS) $(OCAMLCPACKAGES) -c $<
89 .ml.cmo:
90         $(OCAMLFIND) ocamlc $(OCAMLCFLAGS) $(OCAMLCPACKAGES) -c $<
91 .ml.cmx:
92         $(OCAMLFIND) ocamlopt $(OCAMLOPTFLAGS) $(OCAMLOPTPACKAGES) -c $<
93
94 depend: .depend
95
96 .depend: bitmatch.ml bitmatch.mli
97         rm -f .depend
98         $(OCAMLFIND) ocamldep $(OCAMLCPACKAGES) $^ > $@
99
100 ifeq ($(wildcard .depend),.depend)
101 include .depend
102 endif
103
104 # Distribution.
105
106 dist:
107         $(MAKE) check-manifest
108         rm -rf $(PACKAGE)-$(VERSION)
109         mkdir $(PACKAGE)-$(VERSION)
110         tar -cf - -T MANIFEST | tar -C $(PACKAGE)-$(VERSION) -xf -
111         $(INSTALL) -m 0755 configure $(PACKAGE)-$(VERSION)/
112         tar zcf $(PACKAGE)-$(VERSION).tar.gz $(PACKAGE)-$(VERSION)
113         rm -rf $(PACKAGE)-$(VERSION)
114         ls -l $(PACKAGE)-$(VERSION).tar.gz
115
116 check-manifest:
117         @for d in `find -type d -name CVS`; do \
118         b=`dirname $$d`/; \
119         awk -F/ '$$1 != "D" {print $$2}' $$d/Entries | \
120         sed -e "s|^|$$b|" -e "s|^\./||"; \
121         done | sort > .check-manifest; \
122         sort MANIFEST > .orig-manifest; \
123         diff -u .orig-manifest .check-manifest; rv=$$?; \
124         rm -f .orig-manifest .check-manifest; \
125         exit $$rv
126
127 .PHONY: depend dist check-manifest dpkg doc print-examples print-tests test
128
129 .SUFFIXES:      .cmo .cmi .cmx .ml .mli .mll