Add and document AS_INIT_GENERATED.
[autoconf.git] / Makefile.am
blob4da4b2957e5614d6fa5a09151c463c95caafd0c9
1 # Make Autoconf.
3 # Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2006, 2007, 2008 Free
4 # 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/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         $(MAKEINFO) $(AM_MAKEINFOFLAGS) $(MAKEINFOFLAGS) --plaintext -o $@ \
45           $(top_srcdir)/doc/install.texi
46 endif
48 ## maintainer-check ##
49 maintainer-check: maintainer-check-tests
50 maintainer-check-tests: all
51         cd tests && $(MAKE) $(AM_MAKEFLAGS) maintainer-check
54 ## ----------------------------------- ##
55 ## Updating Perl files from Automake.  ##
56 ## ----------------------------------- ##
58 WGET = wget
59 WGETFLAGS = -C off
61 ## Fetch the latest versions of files we care about.
62 automake_gitweb = \
63   http://git.savannah.gnu.org/gitweb/?p=automake.git;a=blob_plain;hb=HEAD;
64 autom4te_files = \
65   Autom4te/Configure_ac.pm \
66   Autom4te/Channels.pm \
67   Autom4te/FileUtils.pm \
68   Autom4te/Struct.pm \
69   Autom4te/XFile.pm
71 autom4te-update:
72         rm -f -r Fetchdir > /dev/null 2>&1
73         mkdir -p Fetchdir/Autom4te
74         for file in $(autom4te_files); do \
75           infile=`echo $$file | sed 's/Autom4te/Automake/g'`; \
76           $(WGET) $(WGET_FLAGS) \
77             "$(automake_gitweb)f=lib/$$infile" \
78             -O "Fetchdir/$$file" || exit; \
79         done
80         perl -pi -e 's/Automake::/Autom4te::/g' Fetchdir/Autom4te/*.pm
81         for file in $(autom4te_files); do \
82           $(move_if_change) Fetchdir/$$file $(srcdir)/lib/$$file || exit; \
83         done
85 # Version string management.  There are two files to be aware of:
86 # .tarball-version - present only in a distribution tarball, and not in
87 #   a checked-out repository.  Created with contents that were learned at
88 #   the last time autoconf was run, and used by git-version-gen.  Must not
89 #   be present in either $(srcdir) or $(builddir) for git-version-gen to
90 #   give accurate answers during normal development with a checked out tree,
91 #   but must be present in a tarball when there is no version control system.
92 #   Therefore, it cannot be used in any dependencies.  GNUmakefile has
93 #   hooks to force a reconfigure at distribution time to get the value
94 #   correct, without penalizing normal development with extra reconfigures.
95 # .version - present in a checked-out repository and in a distribution
96 #   tarball.  At least as current as the most recent .tarball-version
97 #   creation.  Usable in dependencies, particularly for files that don't
98 #   want to depend on config.h but do want to track version changes.
99 BUILT_SOURCES = $(top_srcdir)/.version
100 $(top_srcdir)/.version:
101         echo $(VERSION) > $@-t && mv $@-t $@
103 # Arrange so that .tarball-version appears only in distribution tarballs,
104 # never in a checked-out repository.
105 dist-hook:
106         echo $(VERSION) > $(distdir)/.tarball-version
108 # Arrange to remove the symlink to GNUmakefile in VPATH builds.
109 # TODO remove this once automake vs. AC_CONFIG_LINKS issue is fixed.
110 distclean-local:
111         if test x"$(VPATH)" != x ; then rm -f GNUmakefile ; fi