1 ## Process this file with automake to create Makefile.in
3 ## Makefile for Automake.
5 # Copyright (C) 1995-2012 Free Software Foundation, Inc.
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)
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.
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/>.
20 ## Might be updated later.
23 MAINTAINERCLEANFILES =
30 # We want a handful of substitutions to be fully-expanded by make;
31 # then use config.status to substitute the remainder where a single
32 # expansion is sufficient. We use a funny notation here to avoid
33 # configure substitutions in our text.
35 -e "s,[@]configure_input[@],Generated from $$in; do not edit by hand.,g" \
36 -e 's,[@]datadir[@],$(datadir),g' \
37 -e 's,[@]amdir[@],$(amdir),g' \
38 -e 's,[@]bindir[@],$(bindir),g' \
39 -e 's,[@]docdir[@],$(docdir),g' \
40 -e 's,[@]pkgvdatadir[@],$(pkgvdatadir),g' \
41 -e 's,[@]scriptdir[@],$(scriptdir),g' \
42 -e 's,[@]automake_acdir[@],$(automake_acdir),g' \
43 -e 's,[@]system_acdir[@],$(system_acdir),g' \
44 ## Hack to avoid a spurious substitution in the Automake script (part 1).
45 -e 's,[@]am__isrc[@],!!@!!am__isrc!!@!!,g' \
46 | $(SHELL) ./config.status --file=- \
47 ## Hack to avoid a spurious substitution in the Automake script (part 2).
48 | sed -e 's,!!@!!am__isrc!!@!!,@''am__isrc@,g' \
51 # Generated files shouldn't contain unexpanded '@substitutions@', and
52 # should be made read-only, to prevent them from being edited by mistake
53 # instead of the file the are generated from.
54 generated_file_finalize = $(AM_V_at) \
55 if LC_ALL=C grep '@[a-zA-Z0-9_][a-zA-Z0-9_]*@' $@-t; then \
56 echo "$@ contains unexpanded substitution (see lines above)"; \
59 chmod a-w $@-t && mv -f $@-t $@
61 bin_SCRIPTS = automake aclocal
63 CLEANFILES += $(bin_SCRIPTS)
64 AUTOMAKESOURCES = automake.in aclocal.in
66 TAGS_FILES = $(AUTOMAKESOURCES)
75 ## Make versioned links. We only run the transform on the root name;
76 ## then we make a versioned link with the transformed base name. This
77 ## seemed like the most reasonable approach.
80 @for p in $(bin_SCRIPTS); do \
81 f="`echo $$p|sed '$(transform)'`"; \
82 fv="$$f-$(APIVERSION)"; \
83 rm -f "$(DESTDIR)$(bindir)/$$fv"; \
84 echo " $(LN) '$(DESTDIR)$(bindir)/$$f' '$(DESTDIR)$(bindir)/$$fv'"; \
85 $(LN) "$(DESTDIR)$(bindir)/$$f" "$(DESTDIR)$(bindir)/$$fv"; \
89 @for p in $(bin_SCRIPTS); do \
90 f="`echo $$p|sed '$(transform)'`"; \
91 fv="$$f-$(APIVERSION)"; \
92 rm -f "$(DESTDIR)$(bindir)/$$fv"; \
95 ## These files depend on Makefile so they are rebuilt if $(VERSION),
96 ## $(datadir) or other do_subst'ituted variables change.
99 automake aclocal: Makefile
100 $(AM_V_at)rm -f $@ $@-t
101 $(AM_V_GEN)in=$@.in; $(do_subst) <$(srcdir)/$@.in >$@-t
102 ## We can't use '$(generated_file_finalize)' here, because currently
103 ## Automake contains occurrences of unexpanded @substitutions@ in
104 ## comments, and that is perfectly legit.
105 $(AM_V_at)chmod a+x,a-w $@-t && mv -f $@-t $@
107 ## The master location for INSTALL is lib/INSTALL.
108 ## This is where "make fetch" will install new versions.
109 ## Make sure we also update this copy.
111 $(AM_V_GEN)cp $(srcdir)/lib/INSTALL $@
113 # We don't use the default name for the autom4te cache directory,
115 maintainer-clean-local:
116 rm -rf .autom4te.cache
119 ## -------------------------------------------------------------------- ##
120 ## Auxiliary scripts and files for use with "automake --add-missing". ##
121 ## -------------------------------------------------------------------- ##
123 dist_pkgvdata_DATA = \
128 ## These must all be executable when installed. However, if we use
129 ## _SCRIPTS, then the program transform will be applied, which is not
130 ## what we want. So we make them executable by hand.
150 @for f in $(dist_script_DATA); do echo $$f; done \
154 echo " chmod +x '$(DESTDIR)$(scriptdir)/$$f'"; \
155 chmod +x "$(DESTDIR)$(scriptdir)/$$f" || st=1; \
159 installcheck-local: installcheck-executable-scripts
160 installcheck-executable-scripts:
161 @for f in $(dist_script_DATA); do echo $$f; done \
164 path="$(pkgvdatadir)/$$f"; \
165 test -x "$$path" || echo $$path; \
167 | sed 's/$$/: not executable/' \
168 | grep . 1>&2 && exit 1; exit 0
171 ## ---------------------------------------------------- ##
172 ## Private perl modules used by automake and aclocal. ##
173 ## ---------------------------------------------------- ##
175 perllibdir = $(pkgvdatadir)/Automake
176 dist_perllib_DATA = \
177 lib/Automake/ChannelDefs.pm \
178 lib/Automake/Channels.pm \
179 lib/Automake/Condition.pm \
180 lib/Automake/Configure_ac.pm \
181 lib/Automake/DisjConditions.pm \
182 lib/Automake/FileUtils.pm \
183 lib/Automake/General.pm \
184 lib/Automake/Getopt.pm \
185 lib/Automake/Item.pm \
186 lib/Automake/ItemDef.pm \
187 lib/Automake/Location.pm \
188 lib/Automake/Options.pm \
189 lib/Automake/Rule.pm \
190 lib/Automake/RuleDef.pm \
191 lib/Automake/Variable.pm \
192 lib/Automake/VarDef.pm \
193 lib/Automake/Version.pm \
194 lib/Automake/XFile.pm \
197 nodist_perllib_DATA = lib/Automake/Config.pm
198 CLEANFILES += $(nodist_perllib_DATA)
200 lib/Automake/Config.pm: lib/Automake/Config.in Makefile
201 $(AM_V_at)rm -f $@ $@-t
202 $(AM_V_at)test -d lib/Automake || $(MKDIR_P) lib/Automake
203 $(AM_V_GEN)in=Config.in \
204 && $(do_subst) <$(srcdir)/lib/Automake/Config.in >$@-t
205 $(generated_file_finalize)
206 EXTRA_DIST += lib/Automake/Config.in
209 ## --------------------- ##
210 ## Makefile fragments. ##
211 ## --------------------- ##
216 lib/am/clean-hdr.am \
219 lib/am/configure.am \
226 lib/am/header-vars.am \
229 lib/am/inst-vars.am \
231 lib/am/lang-compile.am \
238 lib/am/ltlibrary.am \
239 lib/am/mans-vars.am \
244 lib/am/remake-hdr.am \
248 lib/am/texi-vers.am \
249 lib/am/texibuild.am \
255 ## ------------------------------ ##
256 ## Automake-provided m4 macros. ##
257 ## ------------------------------ ##
259 dist_automake_ac_DATA = \
291 dist_system_ac_DATA = m4/acdir/README
293 # We build amversion.m4 here, instead of from config.status,
294 # because config.status is rerun each time one of configure's
295 # dependencies change and amversion.m4 happens to be a configure
296 # dependency. configure and amversion.m4 would be rebuilt in
298 # Use '$(top_srcdir)/m4' for the benefit of non-GNU makes: this is
299 # how amversion.m4 appears in our dependencies.
300 $(top_srcdir)/m4/amversion.m4: $(srcdir)/configure.ac $(srcdir)/m4/amversion.in
301 $(AM_V_at)rm -f $@-t $@
302 $(AM_V_GEN)in=amversion.in \
303 && $(do_subst) <$(srcdir)/m4/amversion.in >$@-t
304 $(generated_file_finalize)
305 EXTRA_DIST += m4/amversion.in
312 # Run the tests with a proper shell detected at configure time.
313 LOG_COMPILER = $(AM_TEST_RUNNER_SHELL)
315 TEST_EXTENSIONS = .pl .sh .tap
316 SH_LOG_COMPILER = $(LOG_COMPILER)
317 TAP_LOG_COMPILER = $(LOG_COMPILER)
318 PL_LOG_COMPILER = $(PERL)
319 AM_PL_LOG_FLAGS = -Mstrict -I $(builddir)/lib -I $(srcdir)/lib -w
321 TAP_LOG_DRIVER = AM_TAP_AWK='$(AWK)' $(SHELL) $(srcdir)/lib/tap-driver.sh
323 AM_TAP_LOG_DRIVER_FLAGS = --merge
325 EXTRA_DIST += t/README t/ax/is
327 TESTS = ## Will be updated later.
329 # Some testsuite-influential variables should be overridable from the
330 # test scripts, but not from the environment.
331 AM_TESTS_ENVIRONMENT = \
337 am_test_prefer_config_shell \
338 am_original_AUTOMAKE \
339 am_original_ACLOCAL \
341 eval test x"\$${$$v}" = x || unset $$v; \
343 # The 'AM_TESTS_REEXEC=no' setting tells the tests not to needlessly
344 # re-execute themselves with the shell detected at configure time, since
345 # we are already running them under it explicitly in our setup (see e.g.
346 # the definition of TEST_LOG_COMPILER above).
347 AM_TESTS_ENVIRONMENT += AM_TESTS_REEXEC=no; export AM_TESTS_REEXEC;
348 # We want warning messages and explanations for skipped tests to go to
349 # the console if possible, so set up 'stderr_fileno_' properly.
350 AM_TESTS_FD_REDIRECT = 9>&2
351 AM_TESTS_ENVIRONMENT += stderr_fileno_=9; export stderr_fileno_;
353 # Hand-written tests.
355 include $(srcdir)/t/list-of-tests.mk
357 TESTS += $(handwritten_TESTS)
358 EXTRA_DIST += $(handwritten_TESTS)
360 # Automatically-generated tests wrapping hand-written ones.
361 # Also, automatically-computed dependencies for tests.
363 include $(srcdir)/t/testsuite-part.am
365 TESTS += $(generated_TESTS)
366 EXTRA_DIST += $(generated_TESTS)
368 $(srcdir)/t/testsuite-part.am:
369 $(AM_V_at)rm -f t/testsuite-part.tmp $@
370 $(AM_V_GEN)$(PERL) $(srcdir)/gen-testsuite-part \
371 --srcdir $(srcdir) > t/testsuite-part.tmp
372 $(AM_V_at)chmod a-w t/testsuite-part.tmp
373 $(AM_V_at)mv -f t/testsuite-part.tmp $@
374 EXTRA_DIST += gen-testsuite-part
376 ## The dependecies declared here are not truly complete, but such
377 ## completeness would cause more issues than it would solve. See
378 ## automake bug#11347.
379 $(generated_TESTS): $(srcdir)/gen-testsuite-part
380 $(srcdir)/t/testsuite-part.am: $(srcdir)/gen-testsuite-part Makefile.am
382 # Static dependencies valid for each test case.
383 check_SCRIPTS = t/wrap/aclocal-$(APIVERSION) t/wrap/automake-$(APIVERSION)
384 dist_check_DATA = t/ax/plain-functions.sh t/ax/tap-functions.sh
385 check_DATA = defs defs-static
387 # Few more static dependencies.
388 t/distcheck-missing-m4.log: t/ax/distcheck-hook-m4.am
389 t/distcheck-outdated-m4.log: t/ax/distcheck-hook-m4.am
390 EXTRA_DIST += t/ax/distcheck-hook-m4.am
392 defs-static: defs-static.in Makefile
393 $(AM_V_at)rm -f $@ $@-t
394 $(AM_V_GEN)in=defs-static.in\
395 && $(do_subst) <$(srcdir)/defs-static.in >$@-t
396 $(generated_file_finalize)
397 EXTRA_DIST += defs-static.in
398 CLEANFILES += defs-static
400 # If two test scripts have the same basename, they will end up sharing
401 # the same log file, leading to all sort of undefined and undesired
403 check-no-repeated-test-name:
404 @LC_ALL=C; export LC_ALL; \
405 lst='$(TEST_LOGS)'; for log in $$lst; do echo $$log; done \
406 | sort | uniq -c | awk '($$1 > 1) { print }' \
407 | sed 's/\.log$$//' | grep . >&2 \
409 echo $@: test names listed above are duplicated >&2; \
412 check-local: check-no-repeated-test-name
413 .PHONY: check-no-repeated-test-name
415 ## Checking the list of tests.
416 test_subdirs = t t/pm t/perf
417 include $(srcdir)/t/CheckListOfTests.am
419 # Run the testsuite with the installed aclocal and automake.
420 installcheck-local: installcheck-testsuite
421 installcheck-testsuite:
422 am_running_installcheck=yes $(MAKE) $(AM_MAKEFLAGS) check
424 clean-local: clean-local-check
425 .PHONY: clean-local-check
427 -set x t/*.dir; shift; \
428 if test "$$#,$$1" = "1,*.dir"; then \
429 : there is no test directory to clean; \
431 find "$$@" -type d ! -perm -700 -exec chmod u+rwx {} ';'; \
436 ## ---------------- ##
438 ## ---------------- ##
440 info_TEXINFOS = doc/automake.texi doc/automake-history.texi
441 doc_automake_TEXINFOS = doc/fdl.texi
442 doc_automake_history_TEXINFOS = doc/fdl.texi
447 doc/aclocal-$(APIVERSION).1 \
448 doc/automake-$(APIVERSION).1
450 $(man1_MANS): $(srcdir)/configure.ac
452 CLEANFILES += $(man1_MANS)
453 EXTRA_DIST += doc/help2man
458 && PATH="$(abs_builddir)/t/wrap$(PATH_SEPARATOR)$$PATH" \
460 && $(PERL) $(srcdir)/doc/help2man --output=$@
462 doc/aclocal.1 doc/automake.1:
465 && f=`echo $@ | sed 's|.*/||; s|\.1$$||; $(transform)'` \
466 && echo ".so man1/$$f-$(APIVERSION).1" > $@
468 doc/aclocal-$(APIVERSION).1: aclocal.in aclocal lib/Automake/Config.pm
469 $(update_mans) aclocal-$(APIVERSION)
470 doc/automake-$(APIVERSION).1: automake.in automake lib/Automake/Config.pm
471 $(update_mans) automake-$(APIVERSION)
474 ## ---------------------------- ##
475 ## Example package "amhello". ##
476 ## ---------------------------- ##
479 doc/amhello/configure.ac \
480 doc/amhello/Makefile.am \
482 doc/amhello/src/main.c \
483 doc/amhello/src/Makefile.am
485 amhello_configury = \
496 dist_noinst_DATA = $(amhello_sources)
497 dist_doc_DATA = $(srcdir)/doc/amhello-1.0.tar.gz
499 # We depend on configure.ac so that we regenerate the tarball
500 # whenever the Automake version changes.
501 # aclocal-$(APIVERSION) and automake-$(APIVERSION) are generated by
502 # configure in 't/wrap'.
503 $(srcdir)/doc/amhello-1.0.tar.gz: $(amhello_sources) $(srcdir)/configure.ac
505 && PATH="$(abs_top_builddir)/t/wrap$(PATH_SEPARATOR)$$PATH" \
507 && $(am__cd) $(srcdir)/doc/amhello \
508 && ACLOCAL=aclocal-$(APIVERSION) && export ACLOCAL \
509 && AUTOMAKE=automake-$(APIVERSION) && export AUTOMAKE \
510 && AUTOCONF='$(am_AUTOCONF)' && export AUTOCONF \
511 && AUTOM4TE='$(am_AUTOM4TE)' && export AUTOM4TE \
512 && AUTORECONF='$(am_AUTORECONF)' && export AUTORECONF \
513 && AUTOHEADER='$(am_AUTOHEADER)' && export AUTOHEADER \
514 && AUTOUPDATE='$(am_AUTOUPDATE)' && export AUTOUPDATE \
515 && $(am_AUTORECONF) -vfi \
517 && $(MAKE) $(AM_MAKEFLAGS) distcheck \
518 && $(MAKE) $(AM_MAKEFLAGS) distclean \
519 && rm -rf $(amhello_configury) \
520 && mv -f amhello-1.0.tar.gz ..
523 ## ------------------------------------------------- ##
524 ## Third-party, obsolescent or experimental stuff. ##
525 ## ------------------------------------------------- ##
528 contrib/check-html.am \
529 contrib/multilib/README \
530 contrib/multilib/config-ml.in \
531 contrib/multilib/symlink-tree \
532 contrib/multilib/multilib.am \
533 contrib/multilib/multi.m4 \
537 ## --------------------------------------------------- ##
538 ## Older files, kept mostly for historical interest. ##
539 ## --------------------------------------------------- ##
542 old/ChangeLog-tests \
555 ##########################################################################
557 ## Everything past here is useful to the maintainer, but probably not
560 ##########################################################################
563 ## --------------------------------------------------------- ##
564 ## Automatic generation of the ChangeLog from git history. ##
565 ## --------------------------------------------------------- ##
567 gitlog_to_changelog_command = $(PERL) $(srcdir)/lib/gitlog-to-changelog
568 gitlog_to_changelog_fixes = $(srcdir)/.git-log-fix
569 gitlog_to_changelog_options = --amend=$(gitlog_to_changelog_fixes) \
570 --since='2011-12-28 00:00:00' \
571 --no-cluster --format '%s%n%n%b'
573 EXTRA_DIST += lib/gitlog-to-changelog
574 EXTRA_DIST += $(gitlog_to_changelog_fixes)
576 # When executed from a git checkout, generate the ChangeLog from the git
577 # history. When executed from an extracted distribution tarball, just
578 # copy the distributed ChangeLog in the build directory (and if this
579 # fails, or if no distributed ChangeLog file is present, complain and
582 # We need the apparently useless dependency from another .PHONY target
583 # 'am--changelog-regen-hook' to work around a bug of Solaris make, which
584 # doesn't execute the recipe of a target named as an existing file, even
585 # if such target is declared '.PHONY' (yikes!)
587 .PHONY: am--changelog-regen-hook
588 am--changelog-regen-hook:
589 ChangeLog: am--changelog-regen-hook
590 $(AM_V_GEN)set -e; set -u; \
591 ## The ChangeLog should be regenerated unconditionally when working from
592 ## checked-out sources; otherwise, if we're working from a distribution
593 ## tarball, we expect the ChangeLog to be distributed, so check that it
594 ## is indeed present in the source directory.
595 if test -d $(srcdir)/.git; then \
597 && $(gitlog_to_changelog_command) \
598 $(gitlog_to_changelog_options) >$@-t \
602 elif test ! -f $(srcdir)/$@; then \
603 echo "Source tree is not a git checkout, and no pre-existent" \
604 "$@ file has been found there" >&2; \
608 # Ensure tests are world-executable.
609 # FIXME: this should be turned into a maintainer check...
611 $(am__cd) $(distdir)/t && chmod a+rx *.sh *.tap
614 ## --------------------------- ##
615 ## Perl coverage statistics. ##
616 ## --------------------------- ##
618 PERL_COVERAGE_DB = $(abs_top_builddir)/cover_db
619 PERL_COVERAGE_FLAGS = -MDevel::Cover=-db,$(PERL_COVERAGE_DB),-silent,on,-summary,off
622 check-coverage-run recheck-coverage-run: all
623 $(mkinstalldirs) $(PERL_COVERAGE_DB)
624 PERL5OPT="$$PERL5OPT $(PERL_COVERAGE_FLAGS)"; export PERL5OPT; \
625 WANT_NO_THREADS=yes; export WANT_NO_THREADS; unset AUTOMAKE_JOBS; \
626 $(MAKE) $(AM_MAKEFLAGS) `echo $@ | sed 's/-coverage-run//'`
628 check-coverage-report:
629 @if test ! -d "$(PERL_COVERAGE_DB)"; then \
630 echo "No coverage database found in '$(PERL_COVERAGE_DB)'." >&2; \
631 echo "Please run \"make check-coverage\" first" >&2; \
634 $(PERL_COVER) $(PERL_COVER_FLAGS) "$(PERL_COVERAGE_DB)"
636 # We don't use direct dependencies here because we'd like to be able
637 # to invoke the report even after interrupted check-coverage.
638 check-coverage: check-coverage-run
639 $(MAKE) $(AM_MAKEFLAGS) check-coverage-report
641 recheck-coverage: recheck-coverage-run
642 $(MAKE) $(AM_MAKEFLAGS) check-coverage-report
645 rm -rf "$(PERL_COVERAGE_DB)"
646 clean-local: clean-coverage
648 .PHONY: check-coverage recheck-coverage check-coverage-run \
649 recheck-coverage-run check-coverage-report clean-coverage
652 ## ---------------------------------------------------- ##
653 ## Tagging and/or uploading stable and beta releases. ##
654 ## ---------------------------------------------------- ##
658 EXTRA_DIST += lib/gnupload
660 version_rx = ^[1-9][0-9]*\.[0-9][0-9]*(\.[0-9][0-9]*)?
661 stable_version_rx = $(version_rx)$$
662 beta_version_rx = $(version_rx)[bdfhjlnprtvxz]$$
663 match_version = echo "$(VERSION)" | $(EGREP) >/dev/null
665 ## Check that we don't have uncommitted or unstaged changes.
666 ## TODO: Maybe the git suite already offers a shortcut to verify if the
667 ## TODO: working directory is "clean" or not? If yes, use that instead
668 ## TODO: of duplicating the logic here.
669 git_must_have_clean_workdir = \
670 $(GIT) rev-parse --verify HEAD >/dev/null \
671 && $(GIT) update-index -q --refresh \
672 && $(GIT) diff-files --quiet \
673 && $(GIT) diff-index --quiet --cached HEAD \
674 || fatal "you have uncommitted or unstaged changes"
676 determine_release_type = \
677 if $(match_version) '$(stable_version_rx)'; then \
678 release_type='Release' dest=ftp; \
679 elif $(match_version) '$(beta_version_rx)'; then \
680 release_type='Beta release' dest=alpha; \
682 fatal "invalid version '$(VERSION)' for a release"; \
685 git-tag-release: maintainer-check
687 fatal () { echo "$@: $$*; not tagging" >&2; exit 1; }; \
688 case '$(AM_TAG_DRYRUN)' in \
689 ""|[nN]|[nN]o|NO) run="";; \
690 *) run="echo Running:";; \
692 $(determine_release_type); \
693 $(git_must_have_clean_workdir); \
694 ## If all was successful, tag the release in the local repository.
695 $$run $(GIT) tag -s "v$(VERSION)" -m "$$release_type $(VERSION)"
699 fatal () { echo "$@: $$*; not releasing" >&2; exit 1; }; \
700 $(determine_release_type); \
701 dest=$$dest.gnu.org:automake; \
702 $(git_must_have_clean_workdir); \
703 ## Check that we are releasing from a valid tag.
704 tag=`$(GIT) describe` \
705 && case $$tag in "v$(VERSION)") true;; *) false;; esac \
706 || fatal "you can only create a release from a tagged version"; \
707 ## Build and upload the distribution tarball(s).
708 $(MAKE) $(AM_MAKEFLAGS) dist || exit 1; \
709 echo Will upload to $$dest: $(DIST_ARCHIVES); \
710 $(srcdir)/lib/gnupload $(GNUPLOADFLAGS) --to $$dest $(DIST_ARCHIVES)
712 .PHONY: git-upload-release git-tag-release
715 ## ------------------------------------------------------------------ ##
716 ## Explore differences of autogenerated files in different commits. ##
717 ## ------------------------------------------------------------------ ##
719 ## Visually comparing differences between the Makefile.in files in
720 ## automake's own build system as generated in two different branches
721 ## might help to catch bugs and blunders. This has already happened a
722 ## few times in the past, when we used to version-control Makefile.in.
725 NEW_COMMIT=$${NEW_COMMIT-"HEAD"}; \
726 OLD_COMMIT=$${OLD_COMMIT-"HEAD~1"}; \
727 am_gitdir='$(abs_top_srcdir)/.git'; \
728 get_autofiles_from_rev () \
731 && echo "$@: will get files from revision $$rev" \
732 && $(GIT) clone -q --depth 1 "$$am_gitdir" tmp \
734 && $(GIT) checkout -q "$$rev" \
735 && echo "$@: bootstrapping $$rev" \
736 && $(SHELL) ./bootstrap.sh \
737 && echo "$@: copying files from $$rev" \
738 && makefile_ins=`find . -name Makefile.in` \
739 && (tar cf - configure aclocal.m4 $$makefile_ins) | \
740 (cd .. && $(am__cd) "$$dir" && tar xf -) \
745 ## Before proceeding, ensure the specified revisions truly exist.
746 && $(GIT) --git-dir="$$am_gitdir" describe $$OLD_COMMIT >/dev/null \
747 && $(GIT) --git-dir="$$am_gitdir" describe $$NEW_COMMIT >/dev/null \
750 && $(am__cd) $$outdir \
752 && get_autofiles_from_rev $$OLD_COMMIT old \
753 && get_autofiles_from_rev $$NEW_COMMIT new \
756 ## With lots of eye candy; we like our developers pampered and spoiled :-)
757 compare-autodiffs: autodiffs
759 : $${COLORDIFF=colordiff} $${DIFF=diff}; \
761 if test ! -d "$$dir"; then \
762 echo "$@: $$dir: Not a directory" >&2; \
765 mydiff=false mypager=false; \
767 if ($$COLORDIFF -r . .) </dev/null >/dev/null 2>&1; then \
768 mydiff=$$COLORDIFF; \
776 if test "$$mydiff" = false; then \
777 if ($$DIFF -r -u . .); then \
780 echo "$@: no good-enough diff program specified" >&2; \
784 st=0; $$mydiff -r -u $$dir/old $$dir/new | $$mypager || st=$$?; \
787 .PHONY: autodiffs compare-autodiffs
790 ## --------------------------------------------------------------------- ##
791 ## Synchronize third-party files that are committed in our repository. ##
792 ## --------------------------------------------------------------------- ##
794 ## Program to use to fetch files.
796 WGET_SV_CVS = $(WGET) http://savannah.gnu.org/cgi-bin/viewcvs/~checkout~/
797 WGET_SV_GIT_CF = $(WGET) 'http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;hb=HEAD;f='
798 WGET_SV_GIT_AC = $(WGET) 'http://git.savannah.gnu.org/gitweb/?p=autoconf.git;a=blob_plain;hb=HEAD;f='
799 WGET_SV_GIT_GL = $(WGET) 'http://git.savannah.gnu.org/gitweb/?p=gnulib.git;a=blob_plain;hb=HEAD;f='
801 ## Files that we fetch and which we compare against.
802 ## The 'lib/COPYING' file must still be synced by hand.
808 gitlog-to-changelog \
812 ## Fetch the latest versions of files we care about.
814 rm -rf Fetchdir > /dev/null 2>&1
816 ## If a get fails then that is a problem.
817 ($(am__cd) Fetchdir && \
818 $(WGET_SV_GIT_CF)config.guess -O config.guess && \
819 $(WGET_SV_GIT_CF)config.sub -O config.sub && \
820 $(WGET_SV_CVS)texinfo/texinfo/doc/texinfo.tex -O texinfo.tex && \
821 $(WGET_SV_GIT_GL)doc/INSTALL -O INSTALL && \
822 $(WGET_SV_GIT_GL)build-aux/gnupload -O gnupload && \
823 $(WGET_SV_GIT_GL)build-aux/update-copyright -O update-copyright && \
824 $(WGET_SV_GIT_GL)build-aux/gitlog-to-changelog -O gitlog-to-changelog)
825 ## Don't exit after test because we want to give as many errors as
827 @stat=0; for file in $(FETCHFILES); do \
828 if diff -u $(srcdir)/lib/$$file Fetchdir/$$file \
829 >>Fetchdir/update.patch 2>/dev/null; then :; \
832 echo "Updating $(srcdir)/lib/$$file ..."; \
833 cp Fetchdir/$$file $(srcdir)/lib/$$file; \
837 echo "See Fetchdir/update.patch for a log of the changes."; \
842 ## ------------------------------------------------ ##
843 ## Update copyright years of all committed files. ##
844 ## ------------------------------------------------ ##
846 EXTRA_DIST += lib/update-copyright
848 update_copyright_env = \
849 UPDATE_COPYRIGHT_FORCE=1 \
850 UPDATE_COPYRIGHT_USE_INTERVALS=2
852 .PHONY: update-copyright
855 current_year=`date +%Y` && test -n "$$current_year" \
856 || { echo "$@: cannot get current year" >&2; exit 1; }; \
857 sed -i "/^RELEASE_YEAR=/s/=.*$$/=$$current_year/" \
858 bootstrap.sh configure.ac; \
859 excluded_re=`echo $(FETCHFILES) \
860 | sed -e 's|^|lib/|' -e 's| | lib/|g' -e 's, ,|,g'`; \
862 | grep -Ev '^(lib/)?(COPYING|INSTALL)$$' \
863 | grep -Ev "^($$excluded_re)$$" \
864 | $(update_copyright_env) xargs $(srcdir)/lib/$@