refactor: rip module Automake::Language out of automake script
[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-2013 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   HACKING \
73   PLANS
74
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.
78 install-exec-hook:
79         @$(POST_INSTALL)
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"; \
86         done
87
88 uninstall-hook:
89         @for p in $(bin_SCRIPTS); do \
90           f=`echo $$p | sed '$(transform)'`; \
91           fv="$$f-$(APIVERSION)"; \
92           rm -f "$(DESTDIR)$(bindir)/$$fv"; \
93         done
94
95 # These files depend on Makefile so they are rebuilt if $(VERSION),
96 # $(datadir) or other do_subst'ituted variables change.
97 automake: automake.in
98 aclocal: aclocal.in
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 $@
106
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.
110 INSTALL: lib/INSTALL
111         $(AM_V_GEN)cp $(srcdir)/lib/INSTALL $@
112
113 # We don't use the default name for the autom4te cache directory,
114 # so we need this.
115 maintainer-clean-local:
116         rm -rf .autom4te.cache
117
118 # So that automake won't complain about the missing ChangeLog.
119 # The real rule for ChangeLog generation is now in maintainer/maint.mk
120 # (as it is maintainer-specific).
121 ChangeLog:
122
123
124 ## -------------------------------------------------------------------- ##
125 ##  Auxiliary scripts and files for use with "automake --add-missing".  ##
126 ## -------------------------------------------------------------------- ##
127
128 dist_pkgvdata_DATA = \
129   lib/COPYING \
130   lib/INSTALL \
131   lib/texinfo.tex
132
133 # These must all be executable when installed.  However, if we use
134 # _SCRIPTS, then the program transform will be applied, which is not
135 # what we want.  So we make them executable by hand.
136 dist_script_DATA = \
137   lib/config.guess \
138   lib/config.sub \
139   lib/install-sh \
140   lib/mdate-sh \
141   lib/missing \
142   lib/mkinstalldirs \
143   lib/ylwrap \
144   lib/depcomp \
145   lib/compile \
146   lib/py-compile \
147   lib/ar-lib \
148   lib/test-driver \
149   lib/tap-driver.sh \
150   lib/tap-driver.pl
151
152 install-data-hook:
153         @$(POST_INSTALL)
154         @for f in $(dist_script_DATA); do echo $$f; done \
155           | sed 's,^lib/,,' \
156           | ( st=0; \
157               while read f; do \
158                 echo " chmod +x '$(DESTDIR)$(scriptdir)/$$f'"; \
159                 chmod +x "$(DESTDIR)$(scriptdir)/$$f" || st=1; \
160               done; \
161               exit $$st )
162
163 installcheck-local: installcheck-executable-scripts
164 installcheck-executable-scripts:
165         @for f in $(dist_script_DATA); do echo $$f; done \
166           | sed 's,^lib/,,' \
167           | while read f; do \
168               path="$(pkgvdatadir)/$$f"; \
169               test -x "$$path" || echo $$path; \
170             done \
171           | sed 's/$$/: not executable/' \
172           | grep . 1>&2 && exit 1; exit 0
173
174
175 ## ---------------------------------------------------- ##
176 ##  Private perl modules used by automake and aclocal.  ##
177 ## ---------------------------------------------------- ##
178
179 perllibdir = $(pkgvdatadir)/Automake
180 dist_perllib_DATA = \
181   lib/Automake/ChannelDefs.pm \
182   lib/Automake/Channels.pm \
183   lib/Automake/Condition.pm \
184   lib/Automake/Configure_ac.pm \
185   lib/Automake/DisjConditions.pm \
186   lib/Automake/FileUtils.pm \
187   lib/Automake/General.pm \
188   lib/Automake/Getopt.pm \
189   lib/Automake/Item.pm \
190   lib/Automake/ItemDef.pm \
191   lib/Automake/Language.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/obsolete.m4 \
287   m4/options.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 ## Will be updated later.
338 TESTS =
339
340 # Some testsuite-influential variables should be overridable from the
341 # test scripts, but not from the environment.
342 # Keep this in sync with the similar list in 't/ax/runtest.in'.
343 AM_TESTS_ENVIRONMENT = \
344   for v in \
345     required \
346     am_test_protocol \
347     am_serial_tests \
348     am_test_prefer_config_shell \
349     am_original_AUTOMAKE \
350     am_original_ACLOCAL \
351     am_test_lib_sourced \
352     test_lib_sourced \
353   ; do \
354     eval test x"\$${$$v}" = x || unset $$v; \
355   done;
356 # We want warning messages and explanations for skipped tests to go to
357 # the console if possible, so set up 'stderr_fileno_' properly.
358 AM_TESTS_FD_REDIRECT = 9>&2
359 AM_TESTS_ENVIRONMENT += stderr_fileno_=9; export stderr_fileno_;
360
361 # For sourcing of extra "shell libraries" by our test scripts.  As per
362 # POSIX, sourcing a file with '.' will cause it to be looked up in $PATH
363 # in case it is given with a relative name containing no slashes.
364 AM_TESTS_ENVIRONMENT += \
365   if test $(srcdir) != .; then \
366     PATH='$(abs_srcdir)/t/ax'$(PATH_SEPARATOR)$$PATH; \
367   fi; \
368   PATH='$(abs_builddir)/t/ax'$(PATH_SEPARATOR)$$PATH; \
369   export PATH;
370
371 # Hand-written tests.
372
373 include $(srcdir)/t/list-of-tests.mk
374
375 TESTS += $(handwritten_TESTS)
376 EXTRA_DIST += $(handwritten_TESTS)
377
378 # Automatically-generated tests wrapping hand-written ones.
379 # Also, automatically-computed dependencies for tests.
380
381 include $(srcdir)/t/testsuite-part.am
382
383 TESTS += $(generated_TESTS)
384 EXTRA_DIST += $(generated_TESTS)
385
386 $(srcdir)/t/testsuite-part.am:
387         $(AM_V_at)rm -f t/testsuite-part.tmp $@
388         $(AM_V_GEN)$(PERL) $(srcdir)/gen-testsuite-part \
389           --srcdir $(srcdir) > t/testsuite-part.tmp
390         $(AM_V_at)chmod a-w t/testsuite-part.tmp
391         $(AM_V_at)mv -f t/testsuite-part.tmp $@
392 EXTRA_DIST += gen-testsuite-part
393
394 # The dependecies declared here are not truly complete, but such
395 # completeness would cause more issues than it would solve.  See
396 # automake bug#11347.
397 $(generated_TESTS): $(srcdir)/gen-testsuite-part
398 $(srcdir)/t/testsuite-part.am: $(srcdir)/gen-testsuite-part Makefile.am
399
400 # Hand-written tests for stuff in 'contrib/'.
401 include $(srcdir)/contrib/t/local.am
402 TESTS += $(contrib_TESTS)
403 EXTRA_DIST += $(contrib_TESTS)
404
405 # Static dependencies valid for each test case (also further
406 # extended later).  Note that use 'noinst_' rather than 'check_'
407 # as the prefix, because we really want them to be built by
408 # "make all".  This makes it easier to run the test cases by
409 # hand after having simply configured and built the package.
410
411 nodist_noinst_SCRIPTS = \
412   t/wrap/aclocal-$(APIVERSION) \
413   t/wrap/automake-$(APIVERSION)
414
415 dist_noinst_DATA = \
416   t/ax/test-init.sh \
417   t/ax/test-lib.sh \
418   t/ax/am-test-lib.sh \
419   t/ax/tap-functions.sh
420
421 # Few more static dependencies.
422 t/distcheck-missing-m4.log: t/ax/distcheck-hook-m4.am
423 t/distcheck-outdated-m4.log: t/ax/distcheck-hook-m4.am
424 EXTRA_DIST += t/ax/distcheck-hook-m4.am
425
426 t/ax/test-defs.sh: t/ax/test-defs.in Makefile
427         $(AM_V_at)rm -f $@ $@-t
428         $(AM_V_at)$(MKDIR_P) t/ax
429         $(AM_V_GEN)in=t/ax/test-defs.in \
430           && $(do_subst) <$(srcdir)/$$in >$@-t
431         $(generated_file_finalize)
432 EXTRA_DIST += t/ax/test-defs.in
433 CLEANFILES += t/ax/test-defs.sh
434 nodist_noinst_DATA = t/ax/test-defs.sh
435
436 ## Will be updated soon.
437 noinst_SCRIPTS =
438
439 t/ax/shell-no-trail-bslash: t/ax/shell-no-trail-bslash.in Makefile
440         $(AM_V_at)rm -f $@ $@-t
441         $(AM_V_GEN)in=t/ax/shell-no-trail-bslash.in \
442           && $(MKDIR_P) t/ax \
443           && $(do_subst) <$(srcdir)/$$in >$@-t \
444           && chmod a+x $@-t
445         $(generated_file_finalize)
446 EXTRA_DIST += t/ax/shell-no-trail-bslash.in
447 CLEANFILES += t/ax/shell-no-trail-bslash
448 noinst_SCRIPTS += t/ax/shell-no-trail-bslash
449
450 t/ax/cc-no-c-o: t/ax/cc-no-c-o.in Makefile
451         $(AM_V_at)rm -f $@ $@-t
452         $(AM_V_GEN)in=t/ax/cc-no-c-o.in \
453           && $(MKDIR_P) t/ax \
454           && $(do_subst) <$(srcdir)/$$in >$@-t \
455           && chmod a+x $@-t
456         $(generated_file_finalize)
457 EXTRA_DIST += t/ax/cc-no-c-o.in
458 CLEANFILES += t/ax/cc-no-c-o
459 noinst_SCRIPTS += t/ax/cc-no-c-o
460
461 runtest: t/ax/runtest.in Makefile
462         $(AM_V_at)rm -f $@ $@-t
463         $(AM_V_GEN)in=t/ax/runtest.in \
464           && $(MKDIR_P) t/ax \
465           && $(do_subst) <$(srcdir)/$$in >$@-t \
466           && chmod a+x $@-t
467         $(generated_file_finalize)
468 EXTRA_DIST += t/ax/runtest.in
469 CLEANFILES += runtest
470 noinst_SCRIPTS += runtest
471
472 # If two test scripts have the same basename, they will end up sharing
473 # the same log file, leading to all sort of undefined and undesired
474 # behaviours.
475 check-no-repeated-test-name:
476         @LC_ALL=C; export LC_ALL; \
477          lst='$(TEST_LOGS)'; for log in $$lst; do echo $$log; done \
478            | sort | uniq -c | awk '($$1 > 1) { print }' \
479            | sed 's/\.log$$//' | grep . >&2 \
480            && { \
481              echo $@: test names listed above are duplicated >&2; \
482              exit 1; \
483            }; :
484 check-local: check-no-repeated-test-name
485 .PHONY: check-no-repeated-test-name
486
487 # Check that our test cases are syntactically correct.
488 # See automake bug#11898.
489 check-tests-syntax:
490         @st=0; \
491         err () { echo "$@: $$*" >&2; st=1; }; \
492 ## The user might do something like "make check TESTS=t/foo" or
493 ## "make check TESTS_LOGS=t/foo.log" and expect (say) the test
494 ## 't/foo.sh' to be run; this has worked well until today, and
495 ## we want to continue supporting this use case.
496         bases=`for log in : $(TEST_LOGS); do echo $$log; done \
497           | sed -e '/^:$$/d' -e 's/\.log$$//'`; \
498         for bas in $$bases; do \
499           for suf in sh tap pl; do \
500             tst=$$bas.$$suf; \
501 ## Emulate VPATH search.
502             if test -f $$tst; then \
503               break; \
504             elif test -f $(srcdir)/$$tst; then \
505               tst=$(srcdir)/$$tst; \
506               break; \
507             else \
508               tst=''; \
509             fi; \
510           done; \
511           test -n "$$tst" || err "couldn't find test '$$bas'"; \
512 ## Don't check that perl tests are valid shell scripts!
513           test $$suf = pl && continue; \
514           $(AM_V_P) && echo " $(AM_TEST_RUNNER_SHELL) -n $$tst"; \
515           $(AM_TEST_RUNNER_SHELL) -n "$$tst" \
516             || err "test '$$tst' syntactically invalid"; \
517         done; \
518         exit $$st
519 check-local: check-tests-syntax
520 .PHONY: check-tests-syntax
521
522 # Recipes with a trailing backslash character (possibly followed by
523 # blank characters only) can cause spurious syntax errors with at
524 # least older bash versions (e.g., bash 2.05b), and can be potentially
525 # be unportable to other weaker shells.  Run the testsuite in a way
526 # that helps catching such problems in Automake-generated recipes.
527 # See automake bug#10436.
528 check-no-trailing-backslash-in-recipes:
529         $(AM_V_at)$(MAKE) $(AM_MAKEFLAGS) check \
530           CONFIG_SHELL='$(abs_top_builddir)/t/ax/shell-no-trail-bslash'
531 .PHONY: check-no-trailing-backslash-in-recipes
532
533 # Some compilers out there (hello, MSVC) still choke on "-c -o" being
534 # passed together on the command line.  Run the whole testsuite faking
535 # the presence of such a compiler, to help catch regressions that would
536 # otherwise only present themselves later "in the wild".  See also the
537 # long discussion about automake bug#13378.
538 check-cc-no-c-o:
539         $(AM_V_at)$(MAKE) $(AM_MAKEFLAGS) check \
540           CC='$(abs_top_builddir)/t/ax/cc-no-c-o' \
541           GNU_CC='$(abs_top_builddir)/t/ax/cc-no-c-o'
542 .PHONY: check-cc-no-c-o
543
544 ## Checking the list of tests.
545 test_subdirs = t t/pm contrib/t
546 include $(srcdir)/t/CheckListOfTests.am
547
548 # Run the testsuite with the installed aclocal and automake.
549 installcheck-local: installcheck-testsuite
550 installcheck-testsuite:
551         am_running_installcheck=yes $(MAKE) $(AM_MAKEFLAGS) check
552
553 # Performance tests.
554 .PHONY: perf
555 perf: all
556         $(MAKE) $(AM_MAKEFLAGS) TEST_SUITE_LOG='$(PERF_TEST_SUITE_LOG)' \
557                                 TESTS='$(perf_TESTS)' check
558 PERF_TEST_SUITE_LOG = t/perf/test-suite.log
559 CLEANFILES += $(PERF_TEST_SUITE_LOG)
560 EXTRA_DIST += $(perf_TESTS)
561
562 clean-local: clean-local-check
563 .PHONY: clean-local-check
564 clean-local-check:
565 ## Directories candidate to be test directories match this wildcard.
566         @globs='t/*.dir t/*/*.dir */t/*.dir */t/*/*.dir'; \
567 ## The 'nullglob' bash option is not portable, so use perl.
568         dirs=`$(PERL) -e "print join(' ', glob('$$globs'));"` || exit 1; \
569         if test -n "$$dirs"; then \
570 ## Errors in find are acceptable, errors in rm are not.
571             find $$dirs -type d ! -perm -700 -exec chmod u+rwx {} ';'; \
572             echo " rm -rf $$dirs"; \
573             rm -rf $$dirs || exit 1; \
574         fi
575
576
577 ## ---------------- ##
578 ##  Documentation.  ##
579 ## ---------------- ##
580
581 info_TEXINFOS = doc/automake.texi doc/automake-history.texi
582 doc_automake_TEXINFOS = doc/fdl.texi
583 doc_automake_history_TEXINFOS = doc/fdl.texi
584
585 man1_MANS = \
586   doc/aclocal.1 \
587   doc/automake.1 \
588   doc/aclocal-$(APIVERSION).1 \
589   doc/automake-$(APIVERSION).1
590
591 $(man1_MANS): $(srcdir)/configure.ac
592
593 CLEANFILES += $(man1_MANS)
594 EXTRA_DIST += doc/help2man
595
596 update_mans = \
597   $(AM_V_GEN): \
598     && $(MKDIR_P) doc \
599     && PATH="$(abs_builddir)/t/wrap$(PATH_SEPARATOR)$$PATH" \
600     && export PATH \
601     && $(PERL) $(srcdir)/doc/help2man --output=$@
602
603 doc/aclocal.1 doc/automake.1:
604         $(AM_V_GEN): \
605           && $(MKDIR_P) doc \
606           && f=`echo $@ | sed 's|.*/||; s|\.1$$||; $(transform)'` \
607           && echo ".so man1/$$f-$(APIVERSION).1" > $@
608
609 doc/aclocal-$(APIVERSION).1: aclocal.in aclocal lib/Automake/Config.pm
610         $(update_mans) aclocal-$(APIVERSION)
611 doc/automake-$(APIVERSION).1: automake.in automake lib/Automake/Config.pm
612         $(update_mans) automake-$(APIVERSION)
613
614
615 ## ---------------------------- ##
616 ##  Example package "amhello".  ##
617 ## ---------------------------- ##
618
619 amhello_sources = \
620   doc/amhello/configure.ac \
621   doc/amhello/Makefile.am \
622   doc/amhello/README \
623   doc/amhello/src/main.c \
624   doc/amhello/src/Makefile.am
625
626 amhello_configury = \
627   aclocal.m4 \
628   autom4te.cache \
629   Makefile.in \
630   config.h.in \
631   configure \
632   depcomp \
633   install-sh \
634   missing \
635   src/Makefile.in
636
637 dist_noinst_DATA += $(amhello_sources)
638 dist_doc_DATA = $(srcdir)/doc/amhello-1.0.tar.gz
639
640 # We depend on configure.ac so that we regenerate the tarball
641 # whenever the Automake version changes.
642 # aclocal-$(APIVERSION) and automake-$(APIVERSION) are generated by
643 # configure in 't/wrap'.
644 $(srcdir)/doc/amhello-1.0.tar.gz: $(amhello_sources) $(srcdir)/configure.ac
645         $(AM_V_GEN)tmp=amhello-output.tmp \
646           && PATH="$(abs_top_builddir)/t/wrap$(PATH_SEPARATOR)$$PATH" \
647           && export PATH \
648           && $(am__cd) $(srcdir)/doc/amhello \
649           && ACLOCAL=aclocal-$(APIVERSION) && export ACLOCAL \
650           && AUTOMAKE=automake-$(APIVERSION) && export AUTOMAKE \
651           && AUTOCONF='$(am_AUTOCONF)' && export AUTOCONF \
652           && AUTOM4TE='$(am_AUTOM4TE)' && export AUTOM4TE \
653           && AUTORECONF='$(am_AUTORECONF)' && export AUTORECONF \
654           && AUTOHEADER='$(am_AUTOHEADER)' && export AUTOHEADER \
655           && AUTOUPDATE='$(am_AUTOUPDATE)' && export AUTOUPDATE \
656           && ( \
657             { $(AM_V_P) || exec 5>&2 >$$tmp 2>&1; } \
658               && $(am_AUTORECONF) -vfi \
659               && ./configure \
660               && $(MAKE) $(AM_MAKEFLAGS) distcheck \
661               && $(MAKE) $(AM_MAKEFLAGS) distclean \
662               || { \
663                 if $(AM_V_P); then :; else \
664                   echo "$@: recipe failed." >&5; \
665                   echo "See file '`pwd`/$$tmp' for details" >&5; \
666                 fi; \
667                 exit 1; \
668               } \
669           ) \
670           && rm -rf $(amhello_configury) $$tmp \
671           && mv -f amhello-1.0.tar.gz ..
672
673
674 ## ------------------------------------------------- ##
675 ##  Third-party, obsolescent or experimental stuff.  ##
676 ## ------------------------------------------------- ##
677
678 EXTRA_DIST += \
679   contrib/check-html.am \
680   contrib/multilib/README \
681   contrib/multilib/config-ml.in \
682   contrib/multilib/symlink-tree \
683   contrib/multilib/multilib.am \
684   contrib/multilib/multi.m4 \
685   contrib/README
686
687
688 ## --------------------------------------------------- ##
689 ##  Older files, kept mostly for historical interest.  ##
690 ## --------------------------------------------------- ##
691
692 EXTRA_DIST += \
693   old/ChangeLog-tests \
694   old/ChangeLog.96 \
695   old/ChangeLog.98 \
696   old/ChangeLog.00 \
697   old/ChangeLog.01 \
698   old/ChangeLog.02 \
699   old/ChangeLog.03 \
700   old/ChangeLog.04 \
701   old/ChangeLog.09 \
702   old/ChangeLog.11 \
703   old/TODO
704
705 ## ---------------------------------------- ##
706 ##  Maintainer-specific files and scripts.  ##
707 ## ---------------------------------------- ##
708   
709 EXTRA_DIST += \
710   maintainer/am-ft \
711   maintainer/am-xft \
712   maintainer/rename-tests \
713   maintainer/maint.mk \
714   maintainer/syntax-checks.mk