X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;ds=sidebyside;f=Makefile.in;h=6086f248df1982d631b978612d085a4f59c7023e;hb=80fd187cbf946133e98ca32d351c33132ce3ea47;hp=f3fed47bf7fd955154d2d71c56465a192b1c401c;hpb=42545798e1ada7e47d7ba56e1c9c2e32bc0e7129;p=ocaml-bitstring.git diff --git a/Makefile.in b/Makefile.in index f3fed47..6086f24 100644 --- a/Makefile.in +++ b/Makefile.in @@ -26,21 +26,36 @@ OCAMLDOC = @OCAMLDOC@ INSTALL = @INSTALL@ TIME = @TIME@ GPROF = @GPROF@ +BISECT_REPORT = @BISECT_REPORT@ + +BYTESWAP_H = @BYTESWAP_H@ OCAMLLIB = @OCAMLLIB@ +top_srcdir = @top_srcdir@ pkg_cil = @pkg_cil@ pkg_extlib = @pkg_extlib@ +enable_coverage = @enable_coverage@ + OCAMLCFLAGS = -g OCAMLCPACKAGES = +OCAMLCLIBS = -linkpkg OCAMLOPTFLAGS = OCAMLOPTPACKAGES = +OCAMLOPTLIBS = -linkpkg + +ifneq ($(enable_coverage),no) +OCAMLCFLAGS += -I +bisect -pp 'camlp4o $(OCAMLLIB)/bisect/instrument.cma' +OCAMLCLIBS += -I +bisect bisect.cma +OCAMLOPTFLAGS += -I +bisect -pp 'camlp4o $(OCAMLLIB)/bisect/instrument.cma' +OCAMLOPTLIBS += -I +bisect bisect.cmxa +endif OCAMLDOCFLAGS = -html -sort CC = @CC@ -CFLAGS = @CFLAGS@ -Wall -Werror -fPIC -I$(OCAMLLIB) +CFLAGS = @CFLAGS@ -Wall -Werror -fPIC -I$(top_srcdir) -I$(OCAMLLIB) LIBRARY_PATH = @abs_top_builddir@ LD_LIBRARY_PATH = @abs_top_builddir@ @@ -60,7 +75,8 @@ TESTS = $(patsubst %.ml,%,$(wildcard tests/*.ml)) BENCHMARKS = $(patsubst %.ml,%,$(wildcard benchmarks/*.ml)) -all: bitstring.cma bitstring_persistent.cma \ +all: $(BYTESWAP_H) \ + bitstring.cma bitstring_persistent.cma \ bitstring.cmxa bitstring_persistent.cmxa \ pa_bitstring.cmo \ bitstring-objinfo @@ -98,21 +114,37 @@ pa_bitstring.cmo: pa_bitstring.ml bitstring.cma bitstring_persistent.cma bitstring-objinfo: bitstring_objinfo.cmo bitstring.cma bitstring_persistent.cma $(OCAMLFIND) ocamlc -I +camlp4 unix.cma camlp4lib.cma \ + $(OCAMLCLIBS) \ bitstring.cma bitstring_persistent.cma \ $< -o $@ -# Tests and examples. +# Create byteswap.h if the system doesn't have this file. +# From gnulib, license is LGPLv2+. -PP = -pp "camlp4o bitstring.cma bitstring_persistent.cma pa_bitstring.cmo" +byteswap.h: byteswap.in.h + { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \ + cat $(srcdir)/byteswap.in.h; \ + } > $@-t + mv -f $@-t $@ + +# Tests. + +ifeq ($(enable_coverage),no) +PP = -pp 'camlp4o bitstring.cma bitstring_persistent.cma pa_bitstring.cmo' +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) ocamlc $(OCAMLCFLAGS) $(PP) \ - -package unix -linkpkg -I . bitstring.cma $$f.ml -o $$f; \ + $(OCAMLFIND) ocamlopt $(OCAMLOPTFLAGS) $(PP) -package unix $(OCAMLOPTLIBS) -I . bitstring.cmxa $$f.ml -o $$f.opt; \ if [ $$? -ne 0 ]; then exit 1; fi; \ echo Running $$f; \ - $$f; \ + $$f.opt; \ if [ $$? -ne 0 ]; then exit 1; fi; \ done @for d in $(SUBDIRS); do $(MAKE) -C $$d $@; done @@ -124,6 +156,7 @@ tests/test.bmpp: create_test_pattern create_test_pattern: create_test_pattern.cmo $(OCAMLFIND) ocamlc $(OCAMLCFLAGS) -pp camlp4of \ unix.cma -I +camlp4 camlp4lib.cma \ + $(OCAMLCLIBS) \ -I . bitstring.cma bitstring_persistent.cma $< -o $@ create_test_pattern.cmo: create_test_pattern.ml @@ -131,6 +164,20 @@ create_test_pattern.cmo: create_test_pattern.ml unix.cma -I +camlp4 \ -I . -c $< -o $@ +# Coverage of tests. + +ifneq ($(BISECT_REPORT),no) +coverage: + rm -f coverage-report/* + rm -f bisect*.out + $(MAKE) test + $(BISECT_REPORT) -html coverage-report bisect*.out + rm -f bisect*.out + @echo Coverage report is in `pwd`/coverage-report/index.html +endif + +# Examples. + examples: pa_bitstring.cmo bitstring.cma bitstring_persistent.cma @for f in $(EXAMPLES); do \ echo Building $$f; \ @@ -190,11 +237,15 @@ endif # Clean. clean: - rm -f core *~ *.cmi *.cmo *.cmx *.cma *.cmxa *.a *.o - rm -f tests/*~ tests/*.cmi tests/*.cmo $(TESTS) - rm -f examples/*~ examples/*.cmi examples/*.cmo $(EXAMPLES) + rm -f core *~ *.cmi *.cmo *.cmx *.cma *.cmxa *.cmp *.a *.o *.so + rm -f tests/*~ tests/*.cmi tests/*.cmo tests/*.cmx tests/*.opt + rm -f tests/*.o + rm -f examples/*~ examples/*.cmi examples/*.cmo examples/*.cmx + rm -f examples/*.o $(EXAMPLES) rm -f benchmarks/*~ benchmarks/*.cmi benchmarks/*.cmo + rm -f benchmarks/*.cmx benchmarks/*.o rm -f benchmarks/*.opt benchmarks/*.opt.p benchmarks/*.profile + rm -f create_test_pattern bitstring-objinfo @for d in $(SUBDIRS); do $(MAKE) -C $$d $@; done distclean: clean