Improve documentation related to expanded-before-required.
[autoconf.git] / Makefile.am
blob919a298687dc136ca0eda5489b633d00fd58e8ed
1 # Make Autoconf.
3 # Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2006, 2007, 2008,
4 # 2009 Free Software Foundation, Inc.
6 # This program is free software: you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation, either version 3 of the License, or
9 # (at your option) any later version.
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
19 # bin/ must be run first, as it builds executables needed for tests.
20 # autom4te uses autotest.m4f to generate `testsuite', so build tests last.
21 # Rules in man/ use scripts from both bin/ and tests/, so *it* goes last.
22 SUBDIRS = bin . lib doc tests man
24 ACLOCAL_AMFLAGS = -I m4
26 EXTRA_DIST = ChangeLog.0 ChangeLog.1 ChangeLog.2 \
27              BUGS COPYINGv3 \
28              GNUmakefile maint.mk cfg.mk \
29              build-aux/gendocs.sh \
30              build-aux/git-version-gen \
31              build-aux/announce-gen build-aux/gnupload \
32              .prev-version .version
34 ## --------- ##
35 ## INSTALL.  ##
36 ## --------- ##
38 AM_MAKEINFOFLAGS = --no-headers --no-validate --no-split
40 if MAKE_CASE_SENSITIVE
41 pkgdata_DATA = $(srcdir)/INSTALL
43 MAINTAINERCLEANFILES = $(srcdir)/INSTALL
44 $(srcdir)/INSTALL: $(top_srcdir)/doc/install.texi
45         $(MAKEINFO) $(AM_MAKEINFOFLAGS) $(MAKEINFOFLAGS) --plaintext -o $@ \
46           $(top_srcdir)/doc/install.texi
47 endif
49 ## maintainer-check ##
50 maintainer-check: maintainer-check-tests
51 maintainer-check-tests: all
52         cd tests && $(MAKE) $(AM_MAKEFLAGS) maintainer-check
55 ## ----------------------------------- ##
56 ## Updating Perl files from Automake.  ##
57 ## ----------------------------------- ##
59 WGET = wget
60 WGETFLAGS = -C off
62 ## Fetch the latest versions of files we care about.
63 automake_gitweb = \
64   http://git.savannah.gnu.org/gitweb/?p=automake.git;a=blob_plain;hb=HEAD;
65 autom4te_files = \
66   Autom4te/Configure_ac.pm \
67   Autom4te/Channels.pm \
68   Autom4te/FileUtils.pm \
69   Autom4te/Struct.pm \
70   Autom4te/XFile.pm
72 autom4te-update:
73         rm -f -r Fetchdir > /dev/null 2>&1
74         mkdir -p Fetchdir/Autom4te
75         for file in $(autom4te_files); do \
76           infile=`echo $$file | sed 's/Autom4te/Automake/g'`; \
77           $(WGET) $(WGET_FLAGS) \
78             "$(automake_gitweb)f=lib/$$infile" \
79             -O "Fetchdir/$$file" || exit; \
80         done
81         perl -pi -e 's/Automake::/Autom4te::/g' Fetchdir/Autom4te/*.pm
82         for file in $(autom4te_files); do \
83           $(move_if_change) Fetchdir/$$file $(srcdir)/lib/$$file || exit; \
84         done
86 # Version string management.  There are two files to be aware of:
87 # .tarball-version - present only in a distribution tarball, and not in
88 #   a checked-out repository.  Created with contents that were learned at
89 #   the last time autoconf was run, and used by git-version-gen.  Must not
90 #   be present in either $(srcdir) or $(builddir) for git-version-gen to
91 #   give accurate answers during normal development with a checked out tree,
92 #   but must be present in a tarball when there is no version control system.
93 #   Therefore, it cannot be used in any dependencies.  GNUmakefile has
94 #   hooks to force a reconfigure at distribution time to get the value
95 #   correct, without penalizing normal development with extra reconfigures.
96 # .version - present in a checked-out repository and in a distribution
97 #   tarball.  At least as current as the most recent .tarball-version
98 #   creation.  Usable in dependencies, particularly for files that don't
99 #   want to depend on config.h but do want to track version changes.
100 BUILT_SOURCES = $(top_srcdir)/.version
101 $(top_srcdir)/.version:
102         echo $(VERSION) > $@-t && mv $@-t $@
104 # Arrange so that .tarball-version appears only in distribution tarballs,
105 # never in a checked-out repository.
106 dist-hook:
107         echo $(VERSION) > $(distdir)/.tarball-version
109 # Arrange to remove the symlink to GNUmakefile in VPATH builds.
110 # TODO remove this once automake vs. AC_CONFIG_LINKS issue is fixed.
111 distclean-local:
112         if test x"$(VPATH)" != x ; then rm -f GNUmakefile ; fi