Add a `--clean' option for autoconf, autoheader, autoreconf and autom4te.
[autoconf/tsuna.git] / Makefile.am
blobd243ed76b7533b58afc9650c4a9c98db83f3d3bc
1 # Make Autoconf.
3 # Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2006 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 SUBDIRS = bin . lib man doc tests
23 ACLOCAL_AMFLAGS = -I m4
25 EXTRA_DIST = ChangeLog.0 ChangeLog.1 ChangeLog.2 \
26              BUGS \
27              GNUmakefile Makefile.maint Makefile.cfg \
28              build-aux/git-version-gen \
29              config/announce-gen config/prev-version.txt
31 MAINTAINERCLEANFILES = $(srcdir)/INSTALL
33 ## -------------------- ##
34 ## Forwarding targets.  ##
35 ## -------------------- ##
37 html:
38         cd doc && $(MAKE) $(AM_MAKEFLAGS) $@
40 .PHONY: html
43 ## --------- ##
44 ## INSTALL.  ##
45 ## --------- ##
47 pkgdata_DATA = $(srcdir)/INSTALL
48 AM_MAKEINFOFLAGS = --no-headers --no-validate --no-split
49 $(srcdir)/INSTALL: $(top_srcdir)/doc/install.texi
50         $(MAKEINFO) $(AM_MAKEINFOFLAGS) $(MAKEINFOFLAGS) -o $@ \
51           $(top_srcdir)/doc/install.texi
53 ## maintainer-check ##
54 maintainer-check: maintainer-check-tests
55 maintainer-check-tests:
56         cd tests && make maintainer-check
59 ## ----------------------------------- ##
60 ## Updating Perl files from Automake.  ##
61 ## ----------------------------------- ##
63 WGET = wget
64 WGETFLAGS = -C off
66 ## Fetch the latest versions of files we care about.
67 automake_cvsweb = \
68    http://sources.redhat.com/cgi-bin/cvsweb.cgi/~checkout~/automake
69 automake_cvsargs = \
70    'content-type=text/plain&cvsroot=automake'
71 autom4te_files = \
72   Autom4te/Configure_ac.pm \
73   Autom4te/Channels.pm \
74   Autom4te/FileUtils.pm \
75   Autom4te/Struct.pm \
76   Autom4te/XFile.pm
78 autom4te-update:
79         rm -f -r Fetchdir > /dev/null 2>&1
80         mkdir -p Fetchdir/Autom4te
81         for file in $(autom4te_files); do \
82           $(WGET) $(WGET_FLAGS) \
83             "$(automake_cvsweb)/lib/$file?$(automake_cvsargs)" \
84             -O "Fetchdir/$$file" || exit; \
85         done
86         perl -pi -e 's/Automake::/Autom4te::/g' Fetchdir/Autom4te/*.pm
87         for file in $(autom4te_files); do \
88           $(move_if_change) Fetchdir/$$file $(srcdir)/lib/$$file || exit; \
89         done
91 # Arrange so that .version appears only in distribution tarballs,
92 # never in a checked-out repository.
93 dist-hook:
94         echo $(VERSION) > $(distdir)/.version