maint: resync upstream files
[autoconf.git] / Makefile.am
blobfcd5a169facf9dace5eaf3cf3d1bab5ba8183aeb
1 # Make Autoconf.
3 # Copyright (C) 1999-2004, 2006-2011 Free Software Foundation, Inc.
5 # This program is free software: you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation, either version 3 of the License, or
8 # (at your option) any later version.
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License
16 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
18 # bin/ must be run first, as it builds executables needed for tests.
19 # autom4te uses autotest.m4f to generate `testsuite', so build tests last.
20 # Rules in man/ use scripts from both bin/ and tests/, so *it* goes last.
21 SUBDIRS = bin . lib doc tests man
23 ACLOCAL_AMFLAGS = -I m4
25 EXTRA_DIST = ChangeLog.0 ChangeLog.1 ChangeLog.2 \
26              BUGS COPYINGv3 COPYING.EXCEPTION \
27              GNUmakefile maint.mk cfg.mk \
28              build-aux/gendocs.sh \
29              build-aux/git-version-gen \
30              build-aux/announce-gen build-aux/gnupload \
31              .prev-version .version
33 ## --------- ##
34 ## INSTALL.  ##
35 ## --------- ##
37 AM_MAKEINFOFLAGS = --no-headers --no-validate --no-split
39 if MAKE_CASE_SENSITIVE
40 pkgdata_DATA = $(srcdir)/INSTALL
42 MAINTAINERCLEANFILES = $(srcdir)/INSTALL
43 $(srcdir)/INSTALL: $(top_srcdir)/doc/install.texi
44         echo @firstparagraphindent insert                       \
45           | cat - $(top_srcdir)/doc/install.texi > tmp.texi
46         $(MAKEINFO) $(AM_MAKEINFOFLAGS) $(MAKEINFOFLAGS)        \
47           --plaintext -o $@ tmp.texi
48         rm -f tmp.texi
49 endif
52 # Version string management.  There are two files to be aware of:
53 # .tarball-version - present only in a distribution tarball, and not in
54 #   a checked-out repository.  Created with contents that were learned at
55 #   the last time autoconf was run, and used by git-version-gen.  Must not
56 #   be present in either $(srcdir) or $(builddir) for git-version-gen to
57 #   give accurate answers during normal development with a checked out tree,
58 #   but must be present in a tarball when there is no version control system.
59 #   Therefore, it cannot be used in any dependencies.  GNUmakefile has
60 #   hooks to force a reconfigure at distribution time to get the value
61 #   correct, without penalizing normal development with extra reconfigures.
62 # .version - present in a checked-out repository and in a distribution
63 #   tarball.  At least as current as the most recent .tarball-version
64 #   creation.  Usable in dependencies, particularly for files that don't
65 #   want to depend on config.h but do want to track version changes.
66 BUILT_SOURCES = $(top_srcdir)/.version
67 $(top_srcdir)/.version:
68         echo $(VERSION) > $@-t && mv $@-t $@
70 # Arrange so that .tarball-version appears only in distribution tarballs,
71 # never in a checked-out repository.
72 dist-hook:
73         echo $(VERSION) > $(distdir)/.tarball-version
75 # Arrange to remove the symlink to GNUmakefile in VPATH builds.
76 # TODO remove this once automake vs. AC_CONFIG_LINKS issue is fixed.
77 distclean-local:
78         if test x"$(VPATH)" != x ; then rm -f GNUmakefile ; fi
80 # Perl coverage statistics.
81 PERL_COVERAGE_DB = `pwd`/cover_db
82 PERL_COVERAGE_FLAGS = -MDevel::Cover=-db,$(PERL_COVERAGE_DB),-silent,on,-summary,off
83 PERL_COVER = cover
85 check-coverage-run: all
86         $(mkinstalldirs) $(PERL_COVERAGE_DB)
87         PERL5OPT="$(PERL_COVERAGE_FLAGS)"; export PERL5OPT; \
88         $(MAKE) $(AM_MAKEFLAGS) check
90 check-coverage-report:
91         @if test ! -d $(PERL_COVERAGE_DB); then \
92           echo "No coverage database found in \`$(PERL_COVERAGE_DB)'." >&2; \
93           echo "Please run \`make check-coverage' first" >&2; \
94           exit 1; \
95         fi
96         $(PERL_COVER) $(PERL_COVERAGE_DB) $(PERL_COVER_FLAGS)
98 # We don't use direct dependencies here because we'd like to be able
99 # to invoke the report even after interrupted check-coverage.
100 check-coverage: check-coverage-run
101         $(MAKE) $(AM_MAKEFLAGS) check-coverage-report
103 clean-local: clean-coverage
104 clean-coverage:
105         rm -rf $(PERL_COVERAGE_DB)
107 .PHONY: check-coverage check-coverage-run check-coverage-report clean-coverage