Fix handling of OCAML_PKG_* macros for new OCaml autoconf.
[ocaml-bitstring.git] / Makefile.in
1 # Bitstring 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$
19
20 PACKAGE         = @PACKAGE_NAME@
21 VERSION         = @PACKAGE_VERSION@
22
23 OCAMLFIND       = @OCAMLFIND@
24 OCAMLMKLIB      = @OCAMLMKLIB@
25 OCAMLDOC        = @OCAMLDOC@
26 INSTALL         = @INSTALL@
27 TIME            = @TIME@
28 GPROF           = @GPROF@
29 BISECT_REPORT   = @BISECT_REPORT@
30
31 BYTESWAP_H      = @BYTESWAP_H@
32
33 OCAMLLIB        = @OCAMLLIB@
34 top_srcdir      = @top_srcdir@
35
36 pkg_cil         = @OCAML_PKG_cil@
37 pkg_extlib      = @OCAML_PKG_extlib@
38
39 enable_coverage = @enable_coverage@
40
41 OCAMLCFLAGS     = -g
42 OCAMLCPACKAGES  =
43 OCAMLCLIBS      = -linkpkg
44 OCAMLOPTFLAGS   =
45 OCAMLOPTPACKAGES =
46 OCAMLOPTLIBS    = -linkpkg
47
48 ifneq ($(enable_coverage),no)
49 OCAMLCFLAGS     += -I +bisect -pp 'camlp4o $(OCAMLLIB)/bisect/instrument.cma'
50 OCAMLCLIBS      += -I +bisect bisect.cma
51 OCAMLOPTFLAGS   += -I +bisect -pp 'camlp4o $(OCAMLLIB)/bisect/instrument.cma'
52 OCAMLOPTLIBS    += -I +bisect bisect.cmxa
53 endif
54
55 OCAMLDOCFLAGS   = -html -sort
56
57 CC              = @CC@
58 CFLAGS          = @CFLAGS@ -Wall -Werror -fPIC -I$(top_srcdir) -I$(OCAMLLIB)
59
60 LIBRARY_PATH    = @abs_top_builddir@
61 LD_LIBRARY_PATH = @abs_top_builddir@
62 export LIBRARY_PATH
63 export LD_LIBRARY_PATH
64
65 SUBDIRS         =
66 ifneq ($(pkg_cil),no)
67 ifneq ($(pkg_extlib),no)
68 SUBDIRS         += cil-tools
69 endif
70 endif
71
72 EXAMPLES        = $(patsubst %.ml,%,$(wildcard examples/*.ml))
73
74 TESTS           = $(patsubst %.ml,%,$(wildcard tests/*.ml))
75
76 BENCHMARKS      = $(patsubst %.ml,%,$(wildcard benchmarks/*.ml))
77
78 all:    $(BYTESWAP_H) \
79         bitstring.cma bitstring_persistent.cma \
80         bitstring.cmxa bitstring_persistent.cmxa \
81         pa_bitstring.cmo \
82         bitstring-objinfo
83         @for d in $(SUBDIRS); do $(MAKE) -C $$d $@; done
84
85 bitstring.cma: bitstring_types.cmo bitstring_config.cmo \
86           bitstring_c.o bitstring.cmo bitmatch.cmo
87         $(OCAMLMKLIB) -o bitstring $^
88
89 bitstring_persistent.cma: bitstring_persistent.cmo
90         $(OCAMLFIND) ocamlc -a -o $@ $^
91
92 bitstring_persistent.cmo: bitstring_persistent.ml
93         $(OCAMLFIND) ocamlc $(OCAMLCFLAGS) $(OCAMLCPACKAGES) \
94           -I +camlp4 -pp camlp4of -c $<
95
96 bitstring.cmxa: bitstring_types.cmx bitstring_config.cmx \
97           bitstring_c.o bitstring.cmx bitmatch.cmx
98         $(OCAMLMKLIB) -o bitstring $^
99
100 bitstring_persistent.cmxa: bitstring_persistent.cmx
101         $(OCAMLFIND) ocamlopt -a -o $@ $^
102
103 bitstring_persistent.cmx: bitstring_persistent.ml
104         $(OCAMLFIND) ocamlopt $(OCAMLOPTFLAGS) $(OCAMLOPTPACKAGES) \
105           -I +camlp4 -pp camlp4of -c $<
106
107 bitstring_persistent.cmi: bitstring_persistent.mli
108         $(OCAMLFIND) ocamlc $(OCAMLCFLAGS) $(OCAMLCPACKAGES) \
109           -I +camlp4 -pp camlp4of -c $<
110
111 pa_bitstring.cmo: pa_bitstring.ml bitstring.cma bitstring_persistent.cma
112         $(OCAMLFIND) ocamlc bitstring.cma -I +camlp4 dynlink.cma camlp4lib.cma \
113           -pp camlp4of -c $< -o $@
114
115 bitstring-objinfo: bitstring_objinfo.cmo bitstring.cma bitstring_persistent.cma
116         $(OCAMLFIND) ocamlc -I +camlp4 unix.cma dynlink.cma camlp4lib.cma \
117           $(OCAMLCLIBS) \
118           bitstring.cma bitstring_persistent.cma \
119           $< -o $@
120
121 # Create byteswap.h if the system doesn't have this file.
122 # From gnulib, license is LGPLv2+.
123
124 byteswap.h: byteswap.in.h
125         { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
126           cat $(srcdir)/byteswap.in.h; \
127         } > $@-t
128         mv -f $@-t $@
129
130 # Tests.
131
132 ifeq ($(enable_coverage),no)
133 PP      = -pp 'camlp4o bitstring.cma bitstring_persistent.cma pa_bitstring.cmo'
134 else
135 PP      = -pp 'camlp4o $(OCAMLLIB)/bisect/bisect.cma bitstring.cma bitstring_persistent.cma pa_bitstring.cmo'
136 endif
137
138 test: pa_bitstring.cmo \
139         bitstring.cma bitstring_persistent.cma \
140         bitstring.cmxa bitstring_persistent.cmxa \
141         tests/test.bmpp
142         @for f in $(TESTS); do \
143           echo Building $$f; \
144           $(OCAMLFIND) ocamlopt $(OCAMLOPTFLAGS) $(PP) -package unix $(OCAMLOPTLIBS) -I . bitstring.cmxa $$f.ml -o $$f.opt; \
145           if [ $$? -ne 0 ]; then exit 1; fi; \
146           echo Running $$f; \
147           $$f.opt; \
148           if [ $$? -ne 0 ]; then exit 1; fi; \
149         done
150         @for d in $(SUBDIRS); do $(MAKE) -C $$d $@; done
151
152 tests/test.bmpp: create_test_pattern
153         ./$< $@.new
154         mv $@.new $@
155
156 create_test_pattern: create_test_pattern.cmo
157         $(OCAMLFIND) ocamlc $(OCAMLCFLAGS) -pp camlp4of \
158           unix.cma -I +camlp4 dynlink.cma camlp4lib.cma \
159           $(OCAMLCLIBS) \
160           -I . bitstring.cma bitstring_persistent.cma $< -o $@
161
162 create_test_pattern.cmo: create_test_pattern.ml
163         $(OCAMLFIND) ocamlc $(OCAMLCFLAGS) -pp camlp4of \
164           unix.cma -I +camlp4 \
165           -I . -c $< -o $@
166
167 # Coverage of tests.
168
169 ifneq ($(BISECT_REPORT),no)
170 coverage:
171         rm -f coverage-report/*
172         rm -f bisect*.out
173         $(MAKE) test
174         $(BISECT_REPORT) -html coverage-report bisect*.out
175         rm -f bisect*.out
176         @echo Coverage report is in `pwd`/coverage-report/index.html
177 endif
178
179 # Examples.
180
181 examples: pa_bitstring.cmo bitstring.cma bitstring_persistent.cma
182         @for f in $(EXAMPLES); do \
183           echo Building $$f; \
184           $(OCAMLFIND) ocamlc $(OCAMLCFLAGS) $(PP) \
185             -package unix -linkpkg -I . bitstring.cma $$f.ml -o $$f; \
186           if [ $$? -ne 0 ]; then exit 1; fi; \
187         done
188         @for d in $(SUBDIRS); do $(MAKE) -C $$d $@; done
189
190 print-tests: pa_bitstring.cmo bitstring_persistent.cma
191         @for f in $(TESTS); do \
192           echo Test: $$f.ml; \
193           cmd="camlp4o bitstring.cma bitstring_persistent.cma pa_bitstring.cmo \
194             -printer pr_o.cmo $$f.ml"; \
195           echo $$cmd; \
196           $$cmd; \
197         done
198
199 print-examples: pa_bitstring.cmo
200         @for f in $(EXAMPLES); do \
201           echo Example: $$f.ml; \
202           camlp4o bitstring.cma bitstring_persistent.cma pa_bitstring.cmo \
203             -printer pr_o.cmo $$f.ml; \
204           if [ $$? -ne 0 ]; then exit 1; fi; \
205         done
206
207 # Benchmarks.
208
209 ifneq ($(TIME),no)
210
211 benchmarks: pa_bitstring.cmo bitstring.cma bitstring_persistent.cma
212         @for f in $(BENCHMARKS); do \
213           $(OCAMLFIND) ocamlopt $(OCAMLOPTFLAGS) $(PP) \
214             -package unix -linkpkg -I . bitstring.cmxa $$f.ml -o $$f.opt; \
215           if [ $$? -ne 0 ]; then exit 1; fi; \
216           $(TIME) -f "$$f: %e seconds" $$f.opt; \
217           if [ $$? -ne 0 ]; then exit 1; fi; \
218         done
219 ifneq ($(GPROF),no)
220         @for f in $(BENCHMARKS); do \
221           $(OCAMLFIND) ocamlopt $(OCAMLOPTFLAGS) $(PP) -p \
222             -package unix -linkpkg -I . bitstring.cmxa $$f.ml -o $$f.opt.p; \
223           if [ $$? -ne 0 ]; then exit 1; fi; \
224           rm -f gmon.out; \
225           $$f.opt.p; \
226           if [ $$? -ne 0 ]; then exit 1; fi; \
227           gprof $$f.opt.p > $$f.profile; \
228           if [ $$? -ne 0 ]; then exit 1; fi; \
229           echo "Wrote profile of $$f"; \
230           echo "    to $$f.profile"; \
231           rm -f gmon.out; \
232         done
233 endif
234
235 endif
236
237 # Clean.
238
239 clean:
240         rm -f core *~ *.cmi *.cmo *.cmx *.cma *.cmxa *.cmp *.a *.o *.so
241         rm -f tests/*~ tests/*.cmi tests/*.cmo tests/*.cmx tests/*.opt
242         rm -f tests/*.o
243         rm -f examples/*~ examples/*.cmi examples/*.cmo examples/*.cmx
244         rm -f examples/*.o $(EXAMPLES)
245         rm -f benchmarks/*~ benchmarks/*.cmi benchmarks/*.cmo
246         rm -f benchmarks/*.cmx benchmarks/*.o
247         rm -f benchmarks/*.opt benchmarks/*.opt.p benchmarks/*.profile
248         rm -f create_test_pattern bitstring-objinfo
249         @for d in $(SUBDIRS); do $(MAKE) -C $$d $@; done
250
251 distclean: clean
252         rm -rf autom4te.cache
253         rm -f config.log config.status
254         rm -f config.h Makefile META bitstring_config.ml
255         rm -f bitstring-objinfo
256         @for d in $(SUBDIRS); do $(MAKE) -C $$d $@; done
257
258 # Documentation.
259
260 ifneq ($(OCAMLDOC),)
261 doc:
262         rm -rf html
263         mkdir html
264         $(OCAMLDOC) $(OCAMLDOCFLAGS) -d html -I +camlp4 \
265           bitstring.mli bitstring_persistent.mli bitmatch.ml
266 endif
267
268 # Install.
269
270 install:
271         ocamlfind install bitstring META *.mli *.cmx *.cma *.cmxa *.a *.so \
272                 bitstring.cmi \
273                 bitstring_persistent.cmi \
274                 pa_bitstring.cmo
275         @for d in $(SUBDIRS); do $(MAKE) -C $$d $@; done
276
277 uninstall: 
278         ocamlfind remove bitstring
279
280 # Standard rules.
281
282 .mli.cmi:
283         $(OCAMLFIND) ocamlc $(OCAMLCFLAGS) $(OCAMLCPACKAGES) -c $<
284 .ml.cmo:
285         $(OCAMLFIND) ocamlc $(OCAMLCFLAGS) $(OCAMLCPACKAGES) -c $<
286 .ml.cmx:
287         $(OCAMLFIND) ocamlopt $(OCAMLOPTFLAGS) $(OCAMLOPTPACKAGES) -c $<
288
289 depend: .depend
290         @for d in $(SUBDIRS); do $(MAKE) -C $$d $@; done
291
292 .depend: bitstring.ml bitstring.mli \
293           bitstring_persistent.ml bitstring_persistent.mli \
294           bitstring_objinfo.ml \
295           create_test_pattern.ml
296         rm -f .depend
297         $(OCAMLFIND) ocamldep $(OCAMLCPACKAGES) \
298           bitstring.ml bitstring.mli \
299           bitstring_objinfo.ml >> $@
300         $(OCAMLFIND) ocamldep $(OCAMLCPACKAGES) -pp camlp4of \
301           bitstring_persistent.ml bitstring_persistent.mli \
302           create_test_pattern.ml >> $@
303
304 ifeq ($(wildcard .depend),.depend)
305 include .depend
306 endif
307
308 # Distribution.
309
310 dist:
311         $(MAKE) check-manifest
312         rm -rf $(PACKAGE)-$(VERSION)
313         mkdir $(PACKAGE)-$(VERSION)
314         tar -cf - -T MANIFEST | tar -C $(PACKAGE)-$(VERSION) -xf -
315         $(INSTALL) -m 0755 configure $(PACKAGE)-$(VERSION)/
316         $(INSTALL) -m 0644 config.h.in $(PACKAGE)-$(VERSION)/
317         svn log -v > $(PACKAGE)-$(VERSION)/CHANGES
318         tar zcf $(PACKAGE)-$(VERSION).tar.gz $(PACKAGE)-$(VERSION)
319         rm -rf $(PACKAGE)-$(VERSION)
320         ls -l $(PACKAGE)-$(VERSION).tar.gz
321
322 check-manifest:
323         svn -R list | grep -v '/$$' | sort > .check-manifest
324         sort MANIFEST > .orig-manifest; \
325         diff -u .orig-manifest .check-manifest; rv=$$?; \
326         rm -f .orig-manifest .check-manifest; \
327         exit $$rv
328
329 .PHONY: depend dist check-manifest dpkg doc \
330         print-examples print-tests examples test benchmarks
331
332 .SUFFIXES:      .cmo .cmi .cmx .ml .mli .mll