xref: /netbsd-src/external/gpl3/autoconf/dist/Makefile.am (revision 15a984a0d95c8f96abe9717ee6241762c55dc106)
1# Make Autoconf.
2
3# Copyright (C) 1999-2004, 2006-2012 Free Software Foundation, Inc.
4
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.
9
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.
14
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/>.
17
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.
21SUBDIRS = bin . lib doc tests man
22
23ACLOCAL_AMFLAGS = -I m4
24
25EXTRA_DIST = ChangeLog.0 ChangeLog.1 ChangeLog.2 ChangeLog.3 \
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	     build-aux/gitlog-to-changelog \
32	     .prev-version .version
33
34## --------- ##
35## INSTALL.  ##
36## --------- ##
37
38AM_MAKEINFOFLAGS = --no-headers --no-validate --no-split
39
40if MAKE_CASE_SENSITIVE
41pkgdata_DATA = $(srcdir)/INSTALL
42MAINTAINERCLEANFILES = $(srcdir)/INSTALL
43
44# Don't leave blank line at end of file.
45OMIT_TRAILING_EMPTY_LINES = '/^$$/H; /^$$/d; x; s/\n//p; s/\n*//; x'
46# Prefer 'plain quotes' over `makeinfo quotes'.
47CONVERT_QUOTES = "s/\`\([^']*\)'/'\1'/g"
48
49$(srcdir)/INSTALL: $(top_srcdir)/doc/install.texi
50        @echo "NOT REBUILDING $@"
51NetBSD_DISABLED_INSTALL:
52	echo @firstparagraphindent insert				\
53	  | cat - $(top_srcdir)/doc/install.texi > tmp.texi
54	$(MAKEINFO) $(AM_MAKEINFOFLAGS) $(MAKEINFOFLAGS)		\
55	     --plaintext tmp.texi					\
56	  | sed -e $(CONVERT_QUOTES) -e $(OMIT_TRAILING_EMPTY_LINES)	\
57	     > $@-t && mv $@-t $@
58	rm -f tmp.texi
59endif
60
61# Generate the ChangeLog from git history.
62gen_start_date = 2012-01-15 18:00:00 UTC
63.PHONY: gen-ChangeLog
64gen-ChangeLog:
65	if test -d $(top_srcdir)/.git; then \
66	  $(top_srcdir)/build-aux/gitlog-to-changelog \
67	    --since='$(gen_start_date)' > $(distdir)/cl-t \
68	    && rm -f $(distdir)/ChangeLog \
69	    && mv $(distdir)/cl-t $(distdir)/ChangeLog; \
70	fi
71
72# Dummy rule, to pacify automake "gnu" strictness and allow a clean
73# bootstrap.  Creates a dummy ChangeLog (unless one is already present,
74# as might be the case for users of vc-dwim) that will be overridden
75# with a proper one at distribution time.
76ChangeLog:
77	@echo dummy > $@
78
79# Version string management.  There are two files to be aware of:
80# .tarball-version - present only in a distribution tarball, and not in
81#   a checked-out repository.  Created with contents that were learned at
82#   the last time autoconf was run, and used by git-version-gen.  Must not
83#   be present in either $(srcdir) or $(builddir) for git-version-gen to
84#   give accurate answers during normal development with a checked out tree,
85#   but must be present in a tarball when there is no version control system.
86#   Therefore, it cannot be used in any dependencies.  GNUmakefile has
87#   hooks to force a reconfigure at distribution time to get the value
88#   correct, without penalizing normal development with extra reconfigures.
89# .version - present in a checked-out repository and in a distribution
90#   tarball.  At least as current as the most recent .tarball-version
91#   creation.  Usable in dependencies, particularly for files that don't
92#   want to depend on config.h but do want to track version changes.
93BUILT_SOURCES = $(top_srcdir)/.version
94$(top_srcdir)/.version:
95	echo $(VERSION) > $@-t && mv $@-t $@
96
97# Arrange so that .tarball-version appears only in distribution tarballs,
98# never in a checked-out repository.
99dist-hook: gen-ChangeLog
100	echo $(VERSION) > $(distdir)/.tarball-version
101
102# Arrange to remove the symlink to GNUmakefile in VPATH builds.
103# TODO remove this once automake vs. AC_CONFIG_LINKS issue is fixed.
104distclean-local:
105	if test x"$(VPATH)" != x ; then rm -f GNUmakefile ; fi
106
107# Perl coverage statistics.
108PERL_COVERAGE_DB = `pwd`/cover_db
109PERL_COVERAGE_FLAGS = -MDevel::Cover=-db,$(PERL_COVERAGE_DB),-silent,on,-summary,off
110PERL_COVER = cover
111
112check-coverage-run: all
113	$(mkinstalldirs) $(PERL_COVERAGE_DB)
114	PERL5OPT="$(PERL_COVERAGE_FLAGS)"; export PERL5OPT; \
115	$(MAKE) $(AM_MAKEFLAGS) check
116
117check-coverage-report:
118	@if test ! -d $(PERL_COVERAGE_DB); then \
119	  echo "No coverage database found in \`$(PERL_COVERAGE_DB)'." >&2; \
120	  echo "Please run \`make check-coverage' first" >&2; \
121	  exit 1; \
122	fi
123	$(PERL_COVER) $(PERL_COVERAGE_DB) $(PERL_COVER_FLAGS)
124
125# We don't use direct dependencies here because we'd like to be able
126# to invoke the report even after interrupted check-coverage.
127check-coverage: check-coverage-run
128	$(MAKE) $(AM_MAKEFLAGS) check-coverage-report
129
130clean-local: clean-coverage
131clean-coverage:
132	rm -rf $(PERL_COVERAGE_DB)
133
134.PHONY: check-coverage check-coverage-run check-coverage-report clean-coverage
135