Merge branch 'maint'
[platform/upstream/automake.git] / Makefile.am
1 ## Process this file with automake to create Makefile.in
2
3 ## Makefile for Automake.
4
5 # Copyright (C) 1995, 1996, 1997, 1998, 1999, 2001, 2002, 2003, 2004,
6 # 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Free Software
7 # Foundation, Inc.
8
9 # This program is free software; you can redistribute it and/or modify
10 # it under the terms of the GNU General Public License as published by
11 # the Free Software Foundation; either version 2, or (at your option)
12 # any later version.
13
14 # This program is distributed in the hope that it will be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 # GNU General Public License for more details.
18
19 # You should have received a copy of the GNU General Public License
20 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
21
22 ## lib goes first, because it builds Config.pm, used by aclocal and
23 ## automake (run in doc, tests, and in the rebuild rules.)
24 ## `.' goes before doc and tests, because the latter two directories
25 ## run aclocal and automake.
26 SUBDIRS = lib . contrib doc m4 tests
27
28 bin_SCRIPTS = automake aclocal
29
30 CLEANFILES = $(bin_SCRIPTS)
31 AUTOMAKESOURCES = automake.in aclocal.in
32
33 TAGS_FILES = $(AUTOMAKESOURCES)
34
35 EXTRA_DIST = \
36   GNUmakefile \
37   syntax-checks.mk \
38   HACKING \
39   ChangeLog.96 \
40   ChangeLog.98 \
41   ChangeLog.00 \
42   ChangeLog.01 \
43   ChangeLog.02 \
44   ChangeLog.03 \
45   ChangeLog.04 \
46   ChangeLog.09 \
47   ChangeLog.11 \
48   bootstrap \
49   $(AUTOMAKESOURCES)
50
51 ## Make versioned links.  We only run the transform on the root name;
52 ## then we make a versioned link with the transformed base name.  This
53 ## seemed like the most reasonable approach.
54 install-exec-hook:
55         @$(POST_INSTALL)
56         @for p in $(bin_SCRIPTS); do \
57           f="`echo $$p|sed '$(transform)'`"; \
58           fv="$$f-$(APIVERSION)"; \
59           rm -f "$(DESTDIR)$(bindir)/$$fv"; \
60           echo " $(LN) '$(DESTDIR)$(bindir)/$$f' '$(DESTDIR)$(bindir)/$$fv'"; \
61           $(LN) "$(DESTDIR)$(bindir)/$$f" "$(DESTDIR)$(bindir)/$$fv"; \
62         done
63
64 uninstall-hook:
65         @for p in $(bin_SCRIPTS); do \
66           f="`echo $$p|sed '$(transform)'`"; \
67           fv="$$f-$(APIVERSION)"; \
68           rm -f "$(DESTDIR)$(bindir)/$$fv"; \
69         done
70
71
72 ## We can't use configure to do the substitution here; we must do it
73 ## by hand.  We use a funny notation here to avoid configure
74 ## substitutions in our text.
75 do_subst = sed \
76   -e 's,[@]APIVERSION[@],$(APIVERSION),g' \
77   -e 's,[@]PACKAGE[@],$(PACKAGE),g' \
78   -e 's,[@]PACKAGE_BUGREPORT[@],$(PACKAGE_BUGREPORT),g' \
79   -e 's,[@]PACKAGE_URL[@],$(PACKAGE_URL),g' \
80   -e 's,[@]PATH_SEPARATOR[@],$(PATH_SEPARATOR),g' \
81   -e 's,[@]PERL[@],$(PERL),g' \
82   -e 's,[@]PERL_THREADS[@],$(PERL_THREADS),g' \
83   -e 's,[@]SHELL[@],$(SHELL),g' \
84   -e 's,[@]am_AUTOCONF[@],$(am_AUTOCONF),g' \
85   -e 's,[@]am_AUTOM4TE[@],$(am_AUTOM4TE),g' \
86   -e 's,[@]VERSION[@],$(VERSION),g' \
87   -e 's,[@]configure_input[@],Generated from $@.in; do not edit by hand.,g' \
88   -e 's,[@]datadir[@],$(datadir),g'
89
90 ## These files depend on Makefile so they are rebuilt if $(VERSION),
91 ## $(datadir) or other do_subst'ituted variables change.
92 ## Use chmod a-w to prevent people from editing the wrong file by accident.
93 automake: automake.in
94 aclocal: aclocal.in
95 automake aclocal: Makefile
96         $(AM_V_at)rm -f $@ $@-t
97         $(AM_V_GEN)$(do_subst) $(srcdir)/$@.in >$@-t
98         $(AM_V_at)chmod a+x,a-w $@-t && mv -f $@-t $@
99
100 ## The master location for INSTALL is lib/INSTALL.
101 ## This is where `make fetch' will install new versions.
102 ## Make sure we also update this copy.
103 INSTALL: lib/INSTALL
104         $(AM_V_GEN)cp $(srcdir)/lib/INSTALL $@
105
106 # Run the testsuite with the installed aclocal and automake.
107 installcheck-local:
108         am_running_installcheck=yes $(MAKE) $(AM_MAKEFLAGS) check
109
110 # Convenience proxy target for the test suites.
111 recheck:
112         $(am__cd) tests && $(MAKE) $(AM_MAKEFLAGS) $@
113 .PHONY: recheck
114
115 ################################################################
116 ##
117 ## Everything past here is useful to the maintainer, but probably not
118 ## to anybody else
119 ##
120
121 gitlog_to_changelog_command = $(PERL) $(srcdir)/lib/gitlog-to-changelog
122 gitlog_to_changelog_options = --since='2011-12-28 00:00:00' \
123                               --no-cluster --format '%s%n%n%b'
124
125 # Automatic generation of the ChangeLog from git history.
126 #
127 # When executed from a git checkout, generate the ChangeLog from the git
128 # history.  When executed from an extracted distribution tarball, just
129 # copy the distributed ChangeLog in the build directory (and if this
130 # fails, or if no distributed ChangeLog file is present, complain and
131 # give an error).
132 #
133 # We need the apparently useless dependency from another .PHONY target
134 # `am--changelog-regen-hook' to work around a bug of Solaris make, which
135 # doesn't execute the recipe of a target named as an existing file, even
136 # if such target is declared `.PHONY' (yikes!)
137 #
138 .PHONY: am--changelog-regen-hook
139 am--changelog-regen-hook:
140 ChangeLog: am--changelog-regen-hook
141         $(AM_V_GEN)set -e; set -u; \
142 ## The ChangeLog should be regenerated unconditionally when working from
143 ## checked-out sources; otherwise, if we're working from a distribution
144 ## tarball, we expect the ChangeLog to be distributed, so check that it
145 ## is indeed present in the source directory.
146         if test -d $(srcdir)/.git; then \
147           rm -f $@-t \
148             && $(gitlog_to_changelog_command) \
149                $(gitlog_to_changelog_options) >$@-t \
150             && chmod a-w $@-t \
151             && mv -f $@-t $@ \
152             || exit 1; \
153         elif test ! -f $(srcdir)/$@; then \
154           echo "Source tree is not a git checkout, and no pre-existent" \
155                "$@ file has been found there" >&2; \
156           exit 1; \
157         fi
158
159 # Ensure tests are world-executable
160 dist-hook:
161         $(am__cd) $(distdir)/tests && chmod a+rx *.test
162
163
164 # Perl coverage statistics.
165 PERL_COVERAGE_DB = $(abs_top_builddir)/cover_db
166 PERL_COVERAGE_FLAGS = -MDevel::Cover=-db,$(PERL_COVERAGE_DB),-silent,on,-summary,off
167 PERL_COVER = cover
168
169 check-coverage-run recheck-coverage-run: all
170         $(mkinstalldirs) $(PERL_COVERAGE_DB)
171         PERL5OPT="$$PERL5OPT $(PERL_COVERAGE_FLAGS)"; export PERL5OPT; \
172         WANT_NO_THREADS=yes; export WANT_NO_THREADS; unset AUTOMAKE_JOBS; \
173         $(MAKE) $(AM_MAKEFLAGS) `echo $@ | sed 's/-coverage-run//'`
174
175 check-coverage-report:
176         @if test ! -d "$(PERL_COVERAGE_DB)"; then \
177           echo "No coverage database found in \`$(PERL_COVERAGE_DB)'." >&2; \
178           echo "Please run \`make check-coverage' first" >&2; \
179           exit 1; \
180         fi
181         $(PERL_COVER) $(PERL_COVER_FLAGS) "$(PERL_COVERAGE_DB)"
182
183 # We don't use direct dependencies here because we'd like to be able
184 # to invoke the report even after interrupted check-coverage.
185 check-coverage: check-coverage-run
186         $(MAKE) $(AM_MAKEFLAGS) check-coverage-report
187
188 recheck-coverage: recheck-coverage-run
189         $(MAKE) $(AM_MAKEFLAGS) check-coverage-report
190
191 clean-coverage:
192         rm -rf "$(PERL_COVERAGE_DB)"
193 clean-local: clean-coverage
194
195 .PHONY: check-coverage recheck-coverage check-coverage-run \
196         recheck-coverage-run check-coverage-report clean-coverage
197
198 ## Tagging and/or uploading stable and beta releases.
199
200 GIT = git
201
202 version_rx = ^[1-9][0-9]*\.[0-9][0-9]*(\.[0-9][0-9]*)?
203 stable_version_rx = $(version_rx)$$
204 beta_version_rx = $(version_rx)[bdfhjlnprtvxz]$$
205 match_version = echo "$(VERSION)" | $(EGREP) >/dev/null
206
207 ## Check that we don't have uncommitted or unstaged changes.
208 ## TODO: Maybe the git suite already offers a shortcut to verify if the
209 ## TODO: working directory is "clean" or not?  If yes, use that instead
210 ## TODO: of duplicating the logic here.
211 git_must_have_clean_workdir = \
212   $(GIT) rev-parse --verify HEAD >/dev/null \
213     && $(GIT) update-index -q --refresh \
214     && $(GIT) diff-files --quiet \
215     && $(GIT) diff-index --quiet --cached HEAD \
216     || fatal "you have uncommitted or unstaged changes"
217
218 determine_release_type = \
219   if $(match_version) '$(stable_version_rx)'; then \
220     release_type='Release' dest=ftp; \
221   elif $(match_version) '$(beta_version_rx)'; then \
222     release_type='Beta release' dest=alpha; \
223   else \
224     fatal "invalid version '$(VERSION)' for a release"; \
225   fi
226
227 git-tag-release: maintainer-check
228         @set -e; set -u; \
229         fatal () { echo "$@: $$*; not tagging" >&2; exit 1; }; \
230         case '$(AM_TAG_DRYRUN)' in \
231           ""|[nN]|[nN]o|NO) run="";; \
232           *) run="echo Running:";; \
233         esac; \
234         $(determine_release_type); \
235         $(git_must_have_clean_workdir); \
236 ## Make sure the NEWS file is up-to-date.
237         sed 1q $(srcdir)/NEWS | grep '$(VERSION)' >/dev/null \
238           || fatal "NEWS not updated"; \
239 ## If all was successful, tag the release in the local repository.
240         $$run $(GIT) tag -s "v$(VERSION)" -m "$$release_type $(VERSION)"
241
242 git-upload-release:
243         @set -e; set -u; \
244         fatal () { echo "$@: $$*; not releasing" >&2; exit 1; }; \
245         $(determine_release_type); \
246         dest=$$dest.gnu.org:automake; \
247         $(git_must_have_clean_workdir); \
248 ## Check that we are releasing from a valid tag.
249         tag=`$(GIT) describe` \
250           && case $$tag in "v$(VERSION)") true;; *) false;; esac \
251           || fatal "you can only create a release from a tagged version"; \
252 ## Build and upload the distribution tarball(s).
253         $(MAKE) $(AM_MAKEFLAGS) dist || exit 1; \
254         echo Will upload to $$dest: $(DIST_ARCHIVES); \
255         $(srcdir)/lib/gnupload $(GNUPLOADFLAGS) --to $$dest $(DIST_ARCHIVES)
256
257 .PHONY: git-upload-release git-tag-release
258
259 ## Visually comparing differences between the Makefile.in files in
260 ## automake's own build system as generated in two different branches
261 ## might help to catch bugs and blunders.  This has already happened a
262 ## few times in the past, when we used to version-control Makefile.in.
263 autodiffs:
264         @set -u; \
265          NEW_COMMIT=$${NEW_COMMIT-"HEAD"}; \
266          OLD_COMMIT=$${OLD_COMMIT-"HEAD~1"}; \
267          am_gitdir='$(abs_top_srcdir)/.git'; \
268          get_autofiles_from_rev () \
269          { \
270              rev=$$1 dir=$$2 \
271                && echo "$@: will get files from revision $$rev" \
272                && git clone -q --depth 1 "$$am_gitdir" tmp \
273                && $(am__cd) tmp \
274                && git checkout -q "$$rev" \
275                && echo "$@: bootstrapping $$rev" \
276                && $(SHELL) ./bootstrap \
277                && echo "$@: copying files from $$rev" \
278                && makefile_ins=`find . -name Makefile.in` \
279                && (tar cf - configure aclocal.m4 $$makefile_ins) | \
280                   (cd .. && $(am__cd) "$$dir" && tar xf -) \
281                && cd .. \
282                && rm -rf tmp; \
283          }; \
284          outdir=$@.dir \
285 ## Before proceeding, ensure the specified revisions truly exist.
286            && git --git-dir="$$am_gitdir" describe $$OLD_COMMIT >/dev/null \
287            && git --git-dir="$$am_gitdir" describe $$NEW_COMMIT >/dev/null \
288            && rm -rf $$outdir \
289            && mkdir $$outdir \
290            && $(am__cd) $$outdir \
291            && mkdir new old \
292            && get_autofiles_from_rev $$OLD_COMMIT old \
293            && get_autofiles_from_rev $$NEW_COMMIT new \
294            && exit 0
295 ## With lots of eye candy; we like our developers pampered and spoiled :-)
296 compare-autodiffs: autodiffs
297         @set -u; \
298         : $${COLORDIFF=colordiff} $${DIFF=diff}; \
299         dir=autodiffs.dir; \
300         if test ! -d "$$dir"; then \
301           echo "$@: $$dir: Not a directory" >&2; \
302           exit 1; \
303         fi; \
304         mydiff=false mypager=false; \
305         if test -t 1; then \
306           if ($$COLORDIFF -r . .) </dev/null >/dev/null 2>&1; then \
307             mydiff=$$COLORDIFF; \
308             mypager="less -R"; \
309           else \
310             mypager=less; \
311           fi; \
312         else \
313           mypager=cat; \
314         fi; \
315         if test "$$mydiff" = false; then \
316           if ($$DIFF -r -u . .); then \
317             mydiff=$$DIFF; \
318           else \
319             echo "$@: no good-enough diff program specified" >&2; \
320             exit 1; \
321           fi; \
322         fi; \
323         st=0; $$mydiff -r -u $$dir/old $$dir/new | $$mypager || st=$$?; \
324         rm -rf $$dir; \
325         exit $$st
326 .PHONY: autodiffs compare-autodiffs
327
328 ## Program to use to fetch files.
329 WGET = wget
330 WGET_SV_CVS = $(WGET) http://savannah.gnu.org/cgi-bin/viewcvs/~checkout~/
331 WGET_SV_GIT_CF = $(WGET) 'http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;hb=HEAD;f='
332 WGET_SV_GIT_AC = $(WGET) 'http://git.savannah.gnu.org/gitweb/?p=autoconf.git;a=blob_plain;hb=HEAD;f='
333 WGET_SV_GIT_GL = $(WGET) 'http://git.savannah.gnu.org/gitweb/?p=gnulib.git;a=blob_plain;hb=HEAD;f='
334
335 ## Files that we fetch and which we compare against.
336 ## The 'lib/COPYING' file must still be synced by hand.
337 FETCHFILES = \
338 INSTALL \
339 config.guess \
340 config.sub \
341 gnupload \
342 gitlog-to-changelog \
343 texinfo.tex \
344 update-copyright
345
346 ## Fetch the latest versions of files we care about.
347 fetch:
348         rm -rf Fetchdir > /dev/null 2>&1
349         mkdir Fetchdir
350 ## If a get fails then that is a problem.
351         ($(am__cd) Fetchdir && \
352         $(WGET_SV_GIT_CF)config.guess -O config.guess && \
353         $(WGET_SV_GIT_CF)config.sub -O config.sub && \
354         $(WGET_SV_CVS)texinfo/texinfo/doc/texinfo.tex -O texinfo.tex && \
355         $(WGET_SV_GIT_GL)doc/INSTALL -O INSTALL && \
356         $(WGET_SV_GIT_GL)build-aux/gnupload -O gnupload && \
357         $(WGET_SV_GIT_GL)build-aux/update-copyright -O update-copyright && \
358         $(WGET_SV_GIT_GL)build-aux/gitlog-to-changelog -O gitlog-to-changelog)
359 ## Don't exit after test because we want to give as many errors as
360 ## possible.
361         @stat=0; for file in $(FETCHFILES); do \
362           if diff -u $(srcdir)/lib/$$file Fetchdir/$$file \
363                   >>Fetchdir/update.patch 2>/dev/null; then :; \
364           else \
365             stat=1; \
366             echo "Updating $(srcdir)/lib/$$file ..."; \
367             cp Fetchdir/$$file $(srcdir)/lib/$$file; \
368           fi; \
369         done; \
370         test $$stat = 0 || \
371           echo "See Fetchdir/update.patch for a log of the changes."; \
372         exit $$stat
373 .PHONY: fetch
374
375 update_copyright_env = \
376   UPDATE_COPYRIGHT_FORCE=1 \
377   UPDATE_COPYRIGHT_USE_INTERVALS=2
378
379 .PHONY: update-copyright
380 update-copyright:
381         git ls-files | grep -Ev 'COPYING|INSTALL' \
382           | $(update_copyright_env) xargs $(srcdir)/lib/$@