Regenerate version.h when version_h.cc changes
[xapian.git] / xapian-core / Makefile.am
blobd00d735241f63734be30d037f691b0f581777caa
1 ## Process this file with automake to produce Makefile.in
3 AUTOMAKE_OPTIONS = 1.5 subdir-objects
4 ACLOCAL_AMFLAGS = -I m4
6 if MAINTAINER_MODE
7 # Export these so that we run the locally installed autotools when building
8 # from a bootstrapped git tree.
9 export ACLOCAL AUTOCONF AUTOHEADER AUTOM4TE AUTOMAKE
10 endif
12 AM_CPPFLAGS = -I$(top_srcdir)/common -I$(top_srcdir)/include
13 if VPATH_BUILD
14 # Needed for the generated files include/xapian/version.h
15 # include/xapian/error.h and include/xapian/errordispatch.h
16 AM_CPPFLAGS += -I'$(top_builddir)/include'
17 endif
19 # Order is relevant: when building, tests must be after ".".
20 SUBDIRS = . docs tests
22 noinst_HEADERS =
23 BUILT_SOURCES =
24 noinst_LTLIBRARIES =
25 CLEANFILES =
26 DISTCLEANFILES =
27 MAINTAINERCLEANFILES =
28 bin_PROGRAMS =
29 EXTRA_PROGRAMS =
31 .PHONY: coverage-reconfigure coverage-reconfigure-maintainer-mode coverage-check
33 # This relies on GNU make (for the pattern rule) but it's just a convenience
34 # as you can run these check-* targets with any make using:
36 #   cd tests ; make check-FOO
38 # So the pain of maintaining a huge list of target forwarding rules here isn't
39 # worth it.
41 # Note: We use @PERCENT@ here instead of a literal % to suppress an automake
42 # portability warning.
43 check-@PERCENT@:
44         cd tests && $(MAKE) $(AM_MAKEFLAGS) $@
46 ## --disable-shared as shared builds fail for me on x86-64 Debian etch.
47 ## CCACHE_DISABLE as ccache 2.4 doesn't handle the .gcno files.
48 COVERAGE_CONFIGURE = \
49     $(srcdir)/configure CXXFLAGS='-O0 --coverage' \
50     --enable-quiet --disable-shared CCACHE_DISABLE=1 VALGRIND=
52 coverage-reconfigure: distclean
53         $(COVERAGE_CONFIGURE)
55 coverage-reconfigure-maintainer-mode: distclean
56         $(COVERAGE_CONFIGURE) --enable-maintainer-mode
58 coverage-check:
59         ## GNU find specific.
60         find . -name '*.gcda' -delete
61         ## Don't run under valgrind even if configure was run by hand.
62         $(MAKE) $(AM_MAKEFLAGS) check VALGRIND=
63         rm -f xapian-core.lcov
64         lcov --capture -d . --quiet --rc 'lcov_branch_coverage=1' --no-external -o xapian-core.lcov
65         rm -rf lcov
66         genhtml --demangle-cpp --branch-coverage $(GENHTML_ARGS) -q -p "`pwd`" -t "Test Coverage for xapian-core `git log -n1 --abbrev-commit --format=%h`" -o lcov xapian-core.lcov
68 # We want to clean out build tree paths from the copy of xapian-config we
69 # install, mostly in the interests of facilitating reproducible builds.
70 noinst_SCRIPTS = xapian-config
72 install-exec-local: xapian-config
73         $(MKDIR_P) "$(DESTDIR)$(bindir)"
74         $(SED) '/##UNINSTONLYBEGIN/,/##UNINSTONLYEND/d' xapian-config > tmp.xc
75         $(INSTALL_SCRIPT) tmp.xc "$(DESTDIR)$(bindir)$$dir/`echo xapian-config|$(SED) -e '$(transform)'`"
76         rm -f tmp.xc
78 uninstall-local:
79         rm -f "$(DESTDIR)$(bindir)$$dir/xapian-config"
81 DISTCLEANFILES += xapian-config
83 EXTRA_DIST = ChangeLog ChangeLog.0 ChangeLog.examples HACKING PLATFORMS \
84  xapian-core.spec include/xapian/error.h include/xapian/errordispatch.h \
85  generate-exceptions exception_data.pm preautoreconf
87 cmakedir = $(libdir)/cmake/xapian
88 cmake_DATA = cmake/xapian-config.cmake cmake/xapian-config-version.cmake
90 # docsource.mk is generated by preautoreconf, run by bootstrap prior to
91 # it running autoreconf.
92 include docsource.mk
94 # Install the m4 file containing the XO_LIB_XAPIAN autoconf macro.
95 m4datadir = $(datadir)/aclocal
96 dist_m4data_DATA = m4-macros/xapian.m4
98 # Install the pkg-config file containing the correct compiler options.
99 pkgconfigdir = $(libdir)/pkgconfig
100 nodist_pkgconfig_DATA = pkgconfig/xapian-core.pc
101 DISTCLEANFILES += pkgconfig/xapian-core.pc
103 libxapian_la = libxapian.la
104 lib_LTLIBRARIES = libxapian.la
105 libxapian_la_SOURCES = $(lib_src)
106 libxapian_la_LIBADD = $(XAPIAN_LIBS)
107 libxapian_la_LDFLAGS = \
108     $(XAPIAN_LDFLAGS) $(NO_UNDEFINED) -version-info $(LIBRARY_VERSION_INFO)
110 lib_src =
112 if !MAINTAINER_NO_DOCS
113 dist_man_MANS = xapian-config.1
114 endif
116 include api/Makefile.mk
117 include bin/Makefile.mk
118 include backends/Makefile.mk
119 include common/Makefile.mk
120 include examples/Makefile.mk
121 include expand/Makefile.mk
122 include geospatial/Makefile.mk
123 include include/Makefile.mk
124 include languages/Makefile.mk
125 include matcher/Makefile.mk
126 include net/Makefile.mk
127 include queryparser/Makefile.mk
128 include unicode/Makefile.mk
129 include weight/Makefile.mk
131 xapianinclude_HEADERS += include/xapian/error.h
133 # If these files change, we need to rerun configure to reprocess them -
134 # making them dependencies of config.status achieves that.
135 CONFIG_STATUS_DEPENDENCIES = include/xapian/version_h.cc
137 if MAINTAINER_MODE
138 BUILT_SOURCES += include/xapian/error.h include/xapian/errordispatch.h
140 include/xapian/error.h include/xapian/errordispatch.h: generate-exceptions exception_data.pm
141         $(PERL) -w -I"$(srcdir)" "$(srcdir)/generate-exceptions"
142 endif
144 if !MAINTAINER_NO_DOCS
145 MAINTAINERCLEANFILES += $(dist_man_MANS)
146 endif
148 if DOCUMENTATION_RULES
149 xapian-config.1: xapian-config makemanpage
150         ./makemanpage ./xapian-config xapian-config xapian-config.1
151 endif
153 MAINTAINERCLEANFILES += $(BUILT_SOURCES)
155 .PHONY: check-syntax
157 check-syntax:
158         $(CXXCOMPILE) -fsyntax-only -gstabs+ $(check_sources)