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