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-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 ## Might be updated later.
21 CLEANFILES =
22 DISTCLEANFILES =
23 MAINTAINERCLEANFILES =
24 EXTRA_DIST =
25
26 ## ------------ ##
27 ##  Top level.  ##
28 ## ------------ ##
29
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.
34 do_subst = ( sed \
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' \
49   )
50
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)"; \
57     exit 1; \
58   fi; \
59   chmod a-w $@-t && mv -f $@-t $@
60
61 bin_SCRIPTS = automake aclocal
62
63 CLEANFILES += $(bin_SCRIPTS)
64 AUTOMAKESOURCES = automake.in aclocal.in
65
66 TAGS_FILES = $(AUTOMAKESOURCES)
67
68 EXTRA_DIST += \
69   $(AUTOMAKESOURCES) \
70   bootstrap.sh \
71   GNUmakefile \
72   maint.mk \
73   syntax-checks.mk \
74   HACKING
75
76 ## Make versioned links.  We only run the transform on the root name;
77 ## then we make a versioned link with the transformed base name.  This
78 ## seemed like the most reasonable approach.
79 install-exec-hook:
80         @$(POST_INSTALL)
81         @for p in $(bin_SCRIPTS); do \
82           f="`echo $$p|sed '$(transform)'`"; \
83           fv="$$f-$(APIVERSION)"; \
84           rm -f "$(DESTDIR)$(bindir)/$$fv"; \
85           echo " $(LN) '$(DESTDIR)$(bindir)/$$f' '$(DESTDIR)$(bindir)/$$fv'"; \
86           $(LN) "$(DESTDIR)$(bindir)/$$f" "$(DESTDIR)$(bindir)/$$fv"; \
87         done
88
89 uninstall-hook:
90         @for p in $(bin_SCRIPTS); do \
91           f="`echo $$p|sed '$(transform)'`"; \
92           fv="$$f-$(APIVERSION)"; \
93           rm -f "$(DESTDIR)$(bindir)/$$fv"; \
94         done
95
96 ## These files depend on Makefile so they are rebuilt if $(VERSION),
97 ## $(datadir) or other do_subst'ituted variables change.
98 automake: automake.in
99 aclocal: aclocal.in
100 automake aclocal: Makefile
101         $(AM_V_at)rm -f $@ $@-t
102         $(AM_V_GEN)in=$@.in; $(do_subst) <$(srcdir)/$@.in >$@-t
103 ## We can't use '$(generated_file_finalize)' here, because currently
104 ## Automake contains occurrences of unexpanded @substitutions@ in
105 ## comments, and that is perfectly legit.
106         $(AM_V_at)chmod a+x,a-w $@-t && mv -f $@-t $@
107
108 ## The master location for INSTALL is lib/INSTALL.
109 ## This is where "make fetch" will install new versions.
110 ## Make sure we also update this copy.
111 INSTALL: lib/INSTALL
112         $(AM_V_GEN)cp $(srcdir)/lib/INSTALL $@
113
114 # We don't use the default name for the autom4te cache directory,
115 # so we need this.
116 maintainer-clean-local:
117         rm -rf .autom4te.cache
118
119 # So that automake won't complain about the missing ChangeLog.
120 # The real rule for ChangeLog generation is now in maint.mk (as
121 # it is maintainer-specific).
122 ChangeLog:
123
124
125 ## -------------------------------------------------------------------- ##
126 ##  Auxiliary scripts and files for use with "automake --add-missing".  ##
127 ## -------------------------------------------------------------------- ##
128
129 dist_pkgvdata_DATA = \
130   lib/COPYING \
131   lib/INSTALL \
132   lib/texinfo.tex
133
134 ## These must all be executable when installed.  However, if we use
135 ## _SCRIPTS, then the program transform will be applied, which is not
136 ## what we want.  So we make them executable by hand.
137 dist_script_DATA = \
138   lib/config.guess \
139   lib/config.sub \
140   lib/install-sh \
141   lib/mdate-sh \
142   lib/missing \
143   lib/mkinstalldirs \
144   lib/ylwrap \
145   lib/depcomp \
146   lib/compile \
147   lib/py-compile \
148   lib/ar-lib \
149   lib/test-driver \
150   lib/tap-driver.sh \
151   lib/tap-driver.pl
152
153 install-data-hook:
154         @$(POST_INSTALL)
155         @for f in $(dist_script_DATA); do echo $$f; done \
156           | sed 's,^lib/,,' \
157           | ( st=0; \
158               while read f; do \
159                 echo " chmod +x '$(DESTDIR)$(scriptdir)/$$f'"; \
160                 chmod +x "$(DESTDIR)$(scriptdir)/$$f" || st=1; \
161               done; \
162               exit $$st )
163
164 installcheck-local: installcheck-executable-scripts
165 installcheck-executable-scripts:
166         @for f in $(dist_script_DATA); do echo $$f; done \
167           | sed 's,^lib/,,' \
168           | while read f; do \
169               path="$(pkgvdatadir)/$$f"; \
170               test -x "$$path" || echo $$path; \
171             done \
172           | sed 's/$$/: not executable/' \
173           | grep . 1>&2 && exit 1; exit 0
174
175
176 ## ---------------------------------------------------- ##
177 ##  Private perl modules used by automake and aclocal.  ##
178 ## ---------------------------------------------------- ##
179
180 perllibdir = $(pkgvdatadir)/Automake
181 dist_perllib_DATA = \
182   lib/Automake/ChannelDefs.pm \
183   lib/Automake/Channels.pm \
184   lib/Automake/Condition.pm \
185   lib/Automake/Configure_ac.pm \
186   lib/Automake/DisjConditions.pm \
187   lib/Automake/FileUtils.pm \
188   lib/Automake/General.pm \
189   lib/Automake/Getopt.pm \
190   lib/Automake/Item.pm \
191   lib/Automake/ItemDef.pm \
192   lib/Automake/Location.pm \
193   lib/Automake/Options.pm \
194   lib/Automake/Rule.pm \
195   lib/Automake/RuleDef.pm \
196   lib/Automake/Variable.pm \
197   lib/Automake/VarDef.pm \
198   lib/Automake/Version.pm \
199   lib/Automake/XFile.pm \
200   lib/Automake/Wrap.pm
201
202 nodist_perllib_DATA = lib/Automake/Config.pm
203 CLEANFILES += $(nodist_perllib_DATA)
204
205 lib/Automake/Config.pm: lib/Automake/Config.in Makefile
206         $(AM_V_at)rm -f $@ $@-t
207         $(AM_V_at)test -d lib/Automake || $(MKDIR_P) lib/Automake
208         $(AM_V_GEN)in=Config.in \
209           && $(do_subst) <$(srcdir)/lib/Automake/Config.in >$@-t
210         $(generated_file_finalize)
211 EXTRA_DIST += lib/Automake/Config.in
212
213
214 ## --------------------- ##
215 ##  Makefile fragments.  ##
216 ## --------------------- ##
217
218 dist_am_DATA = \
219   lib/am/check.am \
220   lib/am/check2.am \
221   lib/am/clean-hdr.am \
222   lib/am/clean.am \
223   lib/am/compile.am \
224   lib/am/configure.am \
225   lib/am/data.am \
226   lib/am/dejagnu.am \
227   lib/am/depend.am \
228   lib/am/depend2.am \
229   lib/am/distdir.am \
230   lib/am/footer.am \
231   lib/am/header-vars.am \
232   lib/am/header.am \
233   lib/am/install.am \
234   lib/am/inst-vars.am \
235   lib/am/java.am \
236   lib/am/lang-compile.am \
237   lib/am/lex.am \
238   lib/am/library.am \
239   lib/am/libs.am \
240   lib/am/libtool.am \
241   lib/am/lisp.am \
242   lib/am/ltlib.am \
243   lib/am/ltlibrary.am \
244   lib/am/mans-vars.am \
245   lib/am/mans.am \
246   lib/am/program.am \
247   lib/am/progs.am \
248   lib/am/python.am \
249   lib/am/remake-hdr.am \
250   lib/am/scripts.am \
251   lib/am/subdirs.am \
252   lib/am/tags.am \
253   lib/am/texi-vers.am \
254   lib/am/texibuild.am \
255   lib/am/texinfos.am \
256   lib/am/vala.am \
257   lib/am/yacc.am
258
259
260 ## ------------------------------ ##
261 ##  Automake-provided m4 macros.  ##
262 ## ------------------------------ ##
263
264 dist_automake_ac_DATA = \
265   m4/amversion.m4 \
266   m4/ar-lib.m4 \
267   m4/as.m4 \
268   m4/auxdir.m4 \
269   m4/cond.m4 \
270   m4/cond-if.m4 \
271   m4/depend.m4 \
272   m4/depout.m4 \
273   m4/dmalloc.m4 \
274   m4/extra-recurs.m4 \
275   m4/gcj.m4 \
276   m4/init.m4 \
277   m4/install-sh.m4 \
278   m4/lead-dot.m4 \
279   m4/lex.m4 \
280   m4/lispdir.m4 \
281   m4/maintainer.m4 \
282   m4/make.m4 \
283   m4/minuso.m4 \
284   m4/missing.m4 \
285   m4/mkdirp.m4 \
286   m4/options.m4 \
287   m4/protos.m4 \
288   m4/python.m4 \
289   m4/runlog.m4 \
290   m4/sanity.m4 \
291   m4/silent.m4 \
292   m4/strip.m4 \
293   m4/substnot.m4 \
294   m4/tar.m4 \
295   m4/upc.m4 \
296   m4/vala.m4
297
298 automake_internal_acdir = $(automake_acdir)/internal
299 dist_automake_internal_ac_DATA = m4/internal/ac-config-macro-dirs.m4
300
301 dist_system_ac_DATA = m4/acdir/README
302
303 # We build amversion.m4 here, instead of from config.status,
304 # because config.status is rerun each time one of configure's
305 # dependencies change and amversion.m4 happens to be a configure
306 # dependency.  configure and amversion.m4 would be rebuilt in
307 # loop otherwise.
308 # Use '$(top_srcdir)/m4' for the benefit of non-GNU makes: this is
309 # how amversion.m4 appears in our dependencies.
310 $(top_srcdir)/m4/amversion.m4: $(srcdir)/configure.ac $(srcdir)/m4/amversion.in
311         $(AM_V_at)rm -f $@-t $@
312         $(AM_V_GEN)in=amversion.in \
313           && $(do_subst) <$(srcdir)/m4/amversion.in >$@-t
314         $(generated_file_finalize)
315 EXTRA_DIST += m4/amversion.in
316
317
318 ## ------------ ##
319 ##  Testsuite.  ##
320 ## ------------ ##
321
322 # Run the tests with a proper shell detected at configure time.
323 LOG_COMPILER = $(AM_TEST_RUNNER_SHELL)
324
325 TEST_EXTENSIONS = .pl .sh .tap
326 SH_LOG_COMPILER = $(LOG_COMPILER)
327 TAP_LOG_COMPILER = $(LOG_COMPILER)
328 PL_LOG_COMPILER = $(PERL)
329 AM_PL_LOG_FLAGS = -Mstrict -I $(builddir)/lib -I $(srcdir)/lib -w
330
331 TAP_LOG_DRIVER = AM_TAP_AWK='$(AWK)' $(SHELL) $(srcdir)/lib/tap-driver.sh
332
333 AM_TAP_LOG_DRIVER_FLAGS = --merge
334
335 EXTRA_DIST += t/README t/ax/is t/ax/is_newest
336
337 TESTS = ## Will be updated later.
338
339 # Some testsuite-influential variables should be overridable from the
340 # test scripts, but not from the environment.
341 # Keep this in sync with the similar list in 'runtest.in'.
342 AM_TESTS_ENVIRONMENT = \
343   for v in \
344     required \
345     am_test_protocol \
346     am_serial_tests \
347     am_test_prefer_config_shell \
348     am_original_AUTOMAKE \
349     am_original_ACLOCAL \
350     am_test_lib_sourced \
351     test_lib_sourced \
352   ; do \
353     eval test x"\$${$$v}" = x || unset $$v; \
354   done;
355 # We want warning messages and explanations for skipped tests to go to
356 # the console if possible, so set up 'stderr_fileno_' properly.
357 AM_TESTS_FD_REDIRECT = 9>&2
358 AM_TESTS_ENVIRONMENT += stderr_fileno_=9; export stderr_fileno_;
359
360 # For sourcing of extra "shell libraries" by our test scripts.  As per
361 # POSIX, sourcing a file with '.' will cause it to be looked up in $PATH
362 # in case it is given with a relative name containing no slashes.
363 AM_TESTS_ENVIRONMENT += \
364   if test $(srcdir) != .; then \
365     PATH='$(abs_srcdir)/t/ax'$(PATH_SEPARATOR)$$PATH; \
366   fi; \
367   PATH='$(abs_builddir)/t/ax'$(PATH_SEPARATOR)$$PATH; \
368   export PATH;
369
370 # Hand-written tests.
371
372 include $(srcdir)/t/list-of-tests.mk
373
374 TESTS += $(handwritten_TESTS)
375 EXTRA_DIST += $(handwritten_TESTS)
376
377 # Automatically-generated tests wrapping hand-written ones.
378 # Also, automatically-computed dependencies for tests.
379
380 include $(srcdir)/t/testsuite-part.am
381
382 TESTS += $(generated_TESTS)
383 EXTRA_DIST += $(generated_TESTS)
384
385 $(srcdir)/t/testsuite-part.am:
386         $(AM_V_at)rm -f t/testsuite-part.tmp $@
387         $(AM_V_GEN)$(PERL) $(srcdir)/gen-testsuite-part \
388           --srcdir $(srcdir) > t/testsuite-part.tmp
389         $(AM_V_at)chmod a-w t/testsuite-part.tmp
390         $(AM_V_at)mv -f t/testsuite-part.tmp $@
391 EXTRA_DIST += gen-testsuite-part
392
393 ## The dependecies declared here are not truly complete, but such
394 ## completeness would cause more issues than it would solve.  See
395 ## automake bug#11347.
396 $(generated_TESTS): $(srcdir)/gen-testsuite-part
397 $(srcdir)/t/testsuite-part.am: $(srcdir)/gen-testsuite-part Makefile.am
398
399 # Hand-written tests for stuff in 'contrib/'.
400 include $(srcdir)/contrib/t/local.am
401 TESTS += $(contrib_TESTS)
402 EXTRA_DIST += $(contrib_TESTS)
403
404 # Static dependencies valid for each test case (also further
405 # extended later).  Note that use 'noinst_' rather than 'check_'
406 # as the prefix, because we really want them to be built by
407 # "make all".  This makes it easier to run the test cases by
408 # hand after having simply configured and built the package.
409
410 nodist_noinst_SCRIPTS = \
411   t/wrap/aclocal-$(APIVERSION) \
412   t/wrap/automake-$(APIVERSION)
413
414 dist_noinst_DATA = \
415   t/ax/test-init.sh \
416   t/ax/test-lib.sh \
417   t/ax/am-test-lib.sh \
418   t/ax/tap-functions.sh
419
420 # Few more static dependencies.
421 t/distcheck-missing-m4.log: t/ax/distcheck-hook-m4.am
422 t/distcheck-outdated-m4.log: t/ax/distcheck-hook-m4.am
423 EXTRA_DIST += t/ax/distcheck-hook-m4.am
424
425 t/ax/test-defs.sh: t/ax/test-defs.in Makefile
426         $(AM_V_at)rm -f $@ $@-t
427         $(AM_V_at)$(MKDIR_P) t/ax
428         $(AM_V_GEN)in=t/ax/test-defs.in \
429           && $(do_subst) <$(srcdir)/$$in >$@-t
430         $(generated_file_finalize)
431 EXTRA_DIST += t/ax/test-defs.in
432 CLEANFILES += t/ax/test-defs.sh
433 nodist_noinst_DATA = t/ax/test-defs.sh
434
435 noinst_SCRIPTS = # Will be updated soon.
436
437 t/ax/shell-no-trail-bslash: t/ax/shell-no-trail-bslash.in Makefile
438         $(AM_V_at)rm -f $@ $@-t
439         $(AM_V_GEN)in=t/ax/shell-no-trail-bslash.in \
440           && $(MKDIR_P) t/ax \
441           && $(do_subst) <$(srcdir)/$$in >$@-t \
442           && chmod a+x $@-t
443         $(generated_file_finalize)
444 EXTRA_DIST += t/ax/shell-no-trail-bslash.in
445 CLEANFILES += t/ax/shell-no-trail-bslash
446 noinst_SCRIPTS += t/ax/shell-no-trail-bslash
447
448 runtest: runtest.in Makefile
449         $(AM_V_at)rm -f $@ $@-t
450         $(AM_V_GEN)in=runtest.in \
451           && $(MKDIR_P) t/ax \
452           && $(do_subst) <$(srcdir)/runtest.in >$@-t \
453           && chmod a+x $@-t
454         $(generated_file_finalize)
455 EXTRA_DIST += runtest.in
456 CLEANFILES += runtest
457 noinst_SCRIPTS += runtest
458
459 # If two test scripts have the same basename, they will end up sharing
460 # the same log file, leading to all sort of undefined and undesired
461 # behaviours.
462 check-no-repeated-test-name:
463         @LC_ALL=C; export LC_ALL; \
464          lst='$(TEST_LOGS)'; for log in $$lst; do echo $$log; done \
465            | sort | uniq -c | awk '($$1 > 1) { print }' \
466            | sed 's/\.log$$//' | grep . >&2 \
467            && { \
468              echo $@: test names listed above are duplicated >&2; \
469              exit 1; \
470            }; :
471 check-local: check-no-repeated-test-name
472 .PHONY: check-no-repeated-test-name
473
474 # Check that our test cases are syntactically correct.
475 # See automake bug#11898.
476 check-tests-syntax:
477         @st=0; \
478         err () { echo "$@: $$*" >&2; st=1; }; \
479 ## The user might do something like "make check TESTS=t/foo" or
480 ## "make check TESTS_LOGS=t/foo.log" and expect (say) the test
481 ## 't/foo.sh' to be run; this has worked well until today, and
482 ## we want to continue supporting this use case.
483         bases=`for log in : $(TEST_LOGS); do echo $$log; done \
484           | sed -e '/^:$$/d' -e 's/\.log$$//'`; \
485         for bas in $$bases; do \
486           for suf in sh tap pl; do \
487             tst=$$bas.$$suf; \
488 ## Emulate VPATH search.
489             if test -f $$tst; then \
490               break; \
491             elif test -f $(srcdir)/$$tst; then \
492               tst=$(srcdir)/$$tst; \
493               break; \
494             else \
495               tst=''; \
496             fi; \
497           done; \
498           test -n "$$tst" || err "couldn't find test '$$bas'"; \
499 ## Don't check that perl tests are valid shell scripts!
500           test $$suf = pl && continue; \
501           $(AM_V_P) && echo " $(AM_TEST_RUNNER_SHELL) -n $$tst"; \
502           $(AM_TEST_RUNNER_SHELL) -n "$$tst" \
503             || err "test '$$tst' syntactically invalid"; \
504         done; \
505         exit $$st
506 check-local: check-tests-syntax
507 .PHONY: check-tests-syntax
508
509 # Recipes with a trailing backslash character (possibly followed by
510 # blank characters only) can cause spurious syntax errors with at
511 # least older bash versions (e.g., bash 2.05b), and can be potentially
512 # be unportable to other weaker shells.  Run the testsuite in a way
513 # that helps catching such problems in Automake-generated recipes.
514 # See automake bug#10436.
515 check-no-trailing-backslash-in-recipes:
516         $(AM_V_at)$(MAKE) $(AM_MAKEFLAGS) check \
517           CONFIG_SHELL='$(abs_top_builddir)/t/ax/shell-no-trail-bslash'
518 .PHONY: check-no-trailing-backslash-in-recipes
519
520 ## Checking the list of tests.
521 test_subdirs = t t/pm contrib/t
522 include $(srcdir)/t/CheckListOfTests.am
523
524 # Run the testsuite with the installed aclocal and automake.
525 installcheck-local: installcheck-testsuite
526 installcheck-testsuite:
527         am_running_installcheck=yes $(MAKE) $(AM_MAKEFLAGS) check
528
529 # Performance tests.
530 .PHONY: perf
531 perf: all
532         $(MAKE) $(AM_MAKEFLAGS) TEST_SUITE_LOG='$(PERF_TEST_SUITE_LOG)' \
533                                 TESTS='$(perf_TESTS)' check
534 PERF_TEST_SUITE_LOG = t/perf/test-suite.log
535 CLEANFILES += $(PERF_TEST_SUITE_LOG)
536 EXTRA_DIST += $(perf_TESTS)
537
538 clean-local: clean-local-check
539 .PHONY: clean-local-check
540 clean-local-check:
541 ## Directories candidate to be test directories match this wildcard.
542         @globs='t/*.dir t/*/*.dir */t/*.dir */t/*/*.dir'; \
543 ## The 'nullglob' bash option is not portable, so use perl.
544         dirs=`$(PERL) -e "print join(' ', glob('$$globs'));"` || exit 1; \
545         if test -n "$$dirs"; then \
546 ## Errors in find are acceptable, errors in rm are not.
547             find $$dirs -type d ! -perm -700 -exec chmod u+rwx {} ';'; \
548             echo " rm -rf $$dirs"; \
549             rm -rf $$dirs || exit 1; \
550         fi
551
552
553 ## ---------------- ##
554 ##  Documentation.  ##
555 ## ---------------- ##
556
557 info_TEXINFOS = doc/automake.texi doc/automake-history.texi
558 doc_automake_TEXINFOS = doc/fdl.texi
559 doc_automake_history_TEXINFOS = doc/fdl.texi
560
561 man1_MANS = \
562   doc/aclocal.1 \
563   doc/automake.1 \
564   doc/aclocal-$(APIVERSION).1 \
565   doc/automake-$(APIVERSION).1
566
567 $(man1_MANS): $(srcdir)/configure.ac
568
569 CLEANFILES += $(man1_MANS)
570 EXTRA_DIST += doc/help2man
571
572 update_mans = \
573   $(AM_V_GEN): \
574     && $(MKDIR_P) doc \
575     && PATH="$(abs_builddir)/t/wrap$(PATH_SEPARATOR)$$PATH" \
576     && export PATH \
577     && $(PERL) $(srcdir)/doc/help2man --output=$@
578
579 doc/aclocal.1 doc/automake.1:
580         $(AM_V_GEN): \
581           && $(MKDIR_P) doc \
582           && f=`echo $@ | sed 's|.*/||; s|\.1$$||; $(transform)'` \
583           && echo ".so man1/$$f-$(APIVERSION).1" > $@
584
585 doc/aclocal-$(APIVERSION).1: aclocal.in aclocal lib/Automake/Config.pm
586         $(update_mans) aclocal-$(APIVERSION)
587 doc/automake-$(APIVERSION).1: automake.in automake lib/Automake/Config.pm
588         $(update_mans) automake-$(APIVERSION)
589
590
591 ## ---------------------------- ##
592 ##  Example package "amhello".  ##
593 ## ---------------------------- ##
594
595 amhello_sources = \
596   doc/amhello/configure.ac \
597   doc/amhello/Makefile.am \
598   doc/amhello/README \
599   doc/amhello/src/main.c \
600   doc/amhello/src/Makefile.am
601
602 amhello_configury = \
603   aclocal.m4 \
604   autom4te.cache \
605   Makefile.in \
606   config.h.in \
607   configure \
608   depcomp \
609   install-sh \
610   missing \
611   src/Makefile.in
612
613 dist_noinst_DATA += $(amhello_sources)
614 dist_doc_DATA = $(srcdir)/doc/amhello-1.0.tar.gz
615
616 # We depend on configure.ac so that we regenerate the tarball
617 # whenever the Automake version changes.
618 # aclocal-$(APIVERSION) and automake-$(APIVERSION) are generated by
619 # configure in 't/wrap'.
620 $(srcdir)/doc/amhello-1.0.tar.gz: $(amhello_sources) $(srcdir)/configure.ac
621         $(AM_V_GEN): \
622           && PATH="$(abs_top_builddir)/t/wrap$(PATH_SEPARATOR)$$PATH" \
623           && export PATH \
624           && $(am__cd) $(srcdir)/doc/amhello \
625           && ACLOCAL=aclocal-$(APIVERSION) && export ACLOCAL \
626           && AUTOMAKE=automake-$(APIVERSION) && export AUTOMAKE \
627           && AUTOCONF='$(am_AUTOCONF)' && export AUTOCONF \
628           && AUTOM4TE='$(am_AUTOM4TE)' && export AUTOM4TE \
629           && AUTORECONF='$(am_AUTORECONF)' && export AUTORECONF \
630           && AUTOHEADER='$(am_AUTOHEADER)' && export AUTOHEADER \
631           && AUTOUPDATE='$(am_AUTOUPDATE)' && export AUTOUPDATE \
632           && $(am_AUTORECONF) -vfi \
633           && ./configure \
634           && $(MAKE) $(AM_MAKEFLAGS) distcheck \
635           && $(MAKE) $(AM_MAKEFLAGS) distclean \
636           && rm -rf $(amhello_configury) \
637           && mv -f amhello-1.0.tar.gz ..
638
639
640 ## ------------------------------------------------- ##
641 ##  Third-party, obsolescent or experimental stuff.  ##
642 ## ------------------------------------------------- ##
643
644 EXTRA_DIST += \
645   contrib/check-html.am \
646   contrib/multilib/README \
647   contrib/multilib/config-ml.in \
648   contrib/multilib/symlink-tree \
649   contrib/multilib/multilib.am \
650   contrib/multilib/multi.m4 \
651   contrib/README
652
653
654 ## --------------------------------------------------- ##
655 ##  Older files, kept mostly for historical interest.  ##
656 ## --------------------------------------------------- ##
657
658 EXTRA_DIST += \
659   old/ChangeLog-tests \
660   old/ChangeLog.96 \
661   old/ChangeLog.98 \
662   old/ChangeLog.00 \
663   old/ChangeLog.01 \
664   old/ChangeLog.02 \
665   old/ChangeLog.03 \
666   old/ChangeLog.04 \
667   old/ChangeLog.09 \
668   old/ChangeLog.11 \
669   old/TODO