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