Merge branch 'yflags-test-fixes' into 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  Free Software Foundation, Inc.
7
8 # This program is free software; you can redistribute it and/or modify
9 # it under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 2, or (at your option)
11 # any later version.
12
13 # This program is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 # GNU General Public License for more details.
17
18 # You should have received a copy of the GNU General Public License
19 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
20
21 ## lib goes first, because it builds Config.pm, used by aclocal and
22 ## automake (run in doc, tests, and in the rebuild rules.)
23 ## `.' goes before doc and tests, because the latter two directories
24 ## run aclocal and automake.
25 SUBDIRS = lib . doc m4 tests
26
27 bin_SCRIPTS = automake aclocal
28
29 CLEANFILES = $(bin_SCRIPTS)
30 AUTOMAKESOURCES = automake.in aclocal.in
31
32 TAGS_FILES = $(AUTOMAKESOURCES)
33
34 EXTRA_DIST = \
35   ChangeLog.96 \
36   ChangeLog.98 \
37   ChangeLog.00 \
38   ChangeLog.01 \
39   ChangeLog.02 \
40   ChangeLog.03 \
41   ChangeLog.04 \
42   ChangeLog.09 \
43   bootstrap \
44   $(AUTOMAKESOURCES)
45
46 ## Make versioned links.  We only run the transform on the root name;
47 ## then we make a versioned link with the transformed base name.  This
48 ## seemed like the most reasonable approach.
49 install-exec-hook:
50         @$(POST_INSTALL)
51         @for p in $(bin_SCRIPTS); do \
52           f="`echo $$p|sed '$(transform)'`"; \
53           fv="$$f-$(APIVERSION)"; \
54           rm -f $(DESTDIR)$(bindir)/$$fv; \
55           echo " $(LN) $(DESTDIR)$(bindir)/$$f $(DESTDIR)$(bindir)/$$fv"; \
56           $(LN) $(DESTDIR)$(bindir)/$$f $(DESTDIR)$(bindir)/$$fv; \
57         done
58
59 uninstall-hook:
60         @for p in $(bin_SCRIPTS); do \
61           f="`echo $$p|sed '$(transform)'`"; \
62           fv="$$f-$(APIVERSION)"; \
63           rm -f $(DESTDIR)$(bindir)/$$fv; \
64         done
65
66
67 ## We can't use configure to do the substitution here; we must do it
68 ## by hand.  We use a funny notation here to avoid configure
69 ## substitutions in our text.
70 do_subst = sed \
71   -e 's,[@]APIVERSION[@],$(APIVERSION),g' \
72   -e 's,[@]PACKAGE[@],$(PACKAGE),g' \
73   -e 's,[@]PACKAGE_BUGREPORT[@],$(PACKAGE_BUGREPORT),g' \
74   -e 's,[@]PACKAGE_URL[@],$(PACKAGE_URL),g' \
75   -e 's,[@]PATH_SEPARATOR[@],$(PATH_SEPARATOR),g' \
76   -e 's,[@]PERL[@],$(PERL),g' \
77   -e 's,[@]PERL_THREADS[@],$(PERL_THREADS),g' \
78   -e 's,[@]SHELL[@],$(SHELL),g' \
79   -e 's,[@]VERSION[@],$(VERSION),g' \
80   -e 's,[@]configure_input[@],Generated from $@.in; do not edit by hand.,g' \
81   -e 's,[@]datadir[@],$(datadir),g'
82
83 ## These files depend on Makefile so they are rebuilt if $(VERSION),
84 ## $(datadir) or other do_subst'ituted variables change.
85 ## Use chmod a-w to prevent people from editing the wrong file by accident.
86 automake: automake.in
87 aclocal: aclocal.in
88 automake aclocal: Makefile
89         rm -f $@ $@.tmp
90         $(do_subst) $(srcdir)/$@.in >$@.tmp
91         chmod +x $@.tmp
92         chmod a-w $@.tmp
93         mv -f $@.tmp $@
94
95 ## The master location for INSTALL is lib/INSTALL.
96 ## This is where `make fetch' will install new versions.
97 ## Make sure we also update this copy.
98 INSTALL: lib/INSTALL
99         cp $(srcdir)/lib/INSTALL $@
100
101 ################################################################
102 ##
103 ## Everything past here is useful to the maintainer, but probably not
104 ## to anybody else
105 ##
106
107 # Ensure tests are world-executable
108 dist-hook:
109         cd $(distdir)/tests && chmod a+rx *.test
110
111 # Some simple checks, and then ordinary check.  These are only really
112 # guaranteed to work on my machine.
113 syntax_check_rules = \
114 sc_diff_automake_in_automake \
115 sc_perl_syntax \
116 sc_no_brace_variable_expansions \
117 sc_rm_minus_f \
118 sc_no_for_variable_in_macro \
119 sc_mkinstalldirs \
120 sc_pre_normal_post_install_uninstall \
121 sc_perl_no_undef \
122 sc_perl_no_split_regex_space \
123 sc_cd_in_backquotes \
124 sc_cd_relative_dir \
125 sc_perl_at_uscore_in_scalar_context \
126 sc_perl_local_no_parens \
127 sc_perl_local \
128 sc_AMDEP_TRUE_in_automake_in \
129 sc_tests_make_without_am_makeflags \
130 sc_tests_plain_make \
131 sc_tests_plain_autoconf \
132 sc_tests_plain_autoupdate \
133 sc_tests_plain_automake \
134 sc_tests_here_document_format \
135 sc_tests_Exit_not_exit \
136 sc_tests_automake_fails \
137 sc_tests_plain_aclocal \
138 sc_tests_plain_perl \
139 sc_tests_required_after_defs \
140 sc_tests_overriding_macros_on_cmdline \
141 sc_tests_plain_sleep \
142 sc_tests_plain_egrep_fgrep \
143 sc_tests_PATH_SEPARATOR \
144 sc_mkdir_p \
145 sc_perl_at_substs \
146 sc_unquoted_DESTDIR \
147 sc_tabs_in_texi \
148 sc_at_in_texi
149
150 .PHONY: $(syntax_check_rules)
151 $(syntax_check_rules): automake aclocal
152 maintainer-check: $(syntax_check_rules)
153
154 ## This check avoids accidental configure substitutions in the source.
155 ## There are exactly 8 lines that should be modified.  This works out
156 ## to 28 lines of diffs.
157 sc_diff_automake_in_automake:
158         @if test `diff $(srcdir)/automake.in automake | wc -l` -ne 28; then \
159           echo "found too many diffs between automake.in and automake" 1>&2; \
160           diff -c $(srcdir)/automake.in automake; \
161           exit 1; \
162         fi
163
164 ## Syntax check with default Perl (on my machine, Perl 5).
165 sc_perl_syntax:
166         perllibdir="./lib$(PATH_SEPARATOR)$(srcdir)/lib" $(PERL) -c -w automake
167         perllibdir="./lib$(PATH_SEPARATOR)$(srcdir)/lib" $(PERL) -c -w aclocal
168
169 ## expect no instances of '${...}'.  However, $${...} is ok, since that
170 ## is a shell construct, not a Makefile construct.
171 sc_no_brace_variable_expansions:
172         @if grep -F '$${' $(srcdir)/lib/am/[a-z]*.am | \
173                grep -F -v '$$$$'; then \
174           echo "Found too many uses of '\$${' in the lines above." 1>&2; \
175           exit 1;                               \
176         else :; fi
177
178 ## Make sure `rm' is called with `-f'.
179 sc_rm_minus_f:
180         @if grep -v '^#' $(srcdir)/lib/am/[a-z]*.am $(srcdir)/tests/*.test | \
181             grep -E '\<rm ([^-]|\-[^f ]*\>)'; then \
182           echo "Suspicious 'rm' invocation." 1>&2; \
183           exit 1;                               \
184         else :; fi
185
186 ## Never use something like `for file in $(FILES)', this doesn't work
187 ## if FILES is empty or if it contains shell meta characters (e.g. $ is
188 ## commonly used in Java filenames).
189 sc_no_for_variable_in_macro:
190         @if grep 'for .* in \$$(' $(srcdir)/lib/am/[a-z]*.am; then \
191           echo 'Use "list=$$(mumble); for var in $$$$list".' 1>&2 ; \
192           exit 1; \
193         else :; fi
194
195 ## Make sure all invocations of mkinstalldirs are correct.
196 sc_mkinstalldirs:
197         @if grep -n 'mkinstalldirs' $(srcdir)/lib/am/[a-z]*.am | \
198               grep -F -v '$$(mkinstalldirs)'; then \
199           echo "Found incorrect use of mkinstalldirs in the lines above" 1>&2; \
200           exit 1; \
201         else :; fi
202
203 ## Make sure all calls to PRE/NORMAL/POST_INSTALL/UNINSTALL
204 sc_pre_normal_post_install_uninstall:
205         @if grep -E -n '\((PRE|NORMAL|POST)_(|UN)INSTALL\)' \
206                  $(srcdir)/lib/am/[a-z]*.am | \
207               grep -v ':##' | grep -v ':        @\$$('; then \
208           echo "Found incorrect use of PRE/NORMAL/POST_INSTALL/UNINSTALL in the lines above" 1>&2; \
209           exit 1; \
210         else :; fi
211
212 ## We never want to use "undef", only "delete", but for $/.
213 sc_perl_no_undef:
214         @if grep -n -w 'undef ' $(srcdir)/automake.in | \
215               grep -F -v 'undef $$/'; then \
216           echo "Found undef in automake.in; use delete instead" 1>&2; \
217           exit 1; \
218         fi
219
220 ## We never want split (/ /,...), only split (' ', ...).
221 sc_perl_no_split_regex_space:
222         @if grep -n 'split (/ /' $(srcdir)/automake.in; then \
223           echo "Found bad split in the lines above." 1>&2; \
224           exit 1; \
225         fi
226
227 ## Look for cd within backquotes
228 sc_cd_in_backquotes:
229         @if grep -n '^[^#]*` *cd ' $(srcdir)/automake.in \
230               $(srcdir)/lib/am/*.am; then \
231           echo "Consider using \$$(am__cd) in the lines above." 1>&2; \
232           exit 1; \
233         fi
234
235 ## Look for cd to a relative directory (may be influenced by CDPATH).
236 ## Skip some known directories that are OK.
237 sc_cd_relative_dir:
238         @if grep -n '^[^#]*cd ' $(srcdir)/automake.in \
239               $(srcdir)/lib/am/*.am | \
240               grep -v 'echo.*cd ' | \
241               grep -v 'am__cd =' | \
242               grep -v '^[^#]*cd [./]' | \
243               grep -v '^[^#]*cd \$$(top_builddir)' | \
244               grep -v '^[^#]*cd "\$$\$$am__cwd' | \
245               grep -v '^[^#]*cd \$$(abs' | \
246               grep -v '^[^#]*cd "\$$(DESTDIR)'; then \
247           echo "Consider using \$$(am__cd) in the lines above." 1>&2; \
248           exit 1; \
249         fi
250
251 ## Using @_ in a scalar context is most probably a programming error.
252 sc_perl_at_uscore_in_scalar_context:
253         @if grep -Hn '[^@_A-Za-z0-9][_A-Za-z0-9]*[^) ] *= *@_' $(srcdir)/automake.in; then \
254           echo "Using @_ in a scalar context in the lines above." 1>&2; \
255           exit 1; \
256         fi
257
258 ## Forbid using parens with `local' to ease counting.
259 sc_perl_local_no_parens:
260         @if grep '^[ \t]*local *(' $(srcdir)/automake.in; then \
261           echo "Don't use \`local' with parens: use several \`local' above." >&2; \
262           exit 1; \
263         fi
264
265 ## Allow only `local $_' in Automake.
266 sc_perl_local:
267         @if grep -v '^[ \t]*local \$$_;' $(srcdir)/automake.in | \
268                 grep '^[ \t]*local [^*]'; then \
269           echo "Please avoid \`local'." 1>&2; \
270           exit 1; \
271         fi
272
273 ## Don't let AMDEP_TRUE substitution appear in automake.in.
274 sc_AMDEP_TRUE_in_automake_in:
275         @if grep '@AMDEP''_TRUE@' $(srcdir)/automake.in; then \
276           echo "Don't put AMDEP_TRUE substitution in automake.in" 1>&2; \
277           exit 1; \
278         fi
279
280 ## Tests should never call make directly.
281 sc_tests_make_without_am_makeflags:
282         @if grep '^[^#].*(MAKE) ' $(srcdir)/lib/am/*.am $(srcdir)/automake.in |\
283                 grep -v 'AM_MAKEFLAGS'; then \
284           echo 'Use $$(MAKE) $$(AM_MAKEFLAGS).' 1>&2; \
285           exit 1; \
286         fi
287
288 ## Tests should never call make directly.
289 sc_tests_plain_make:
290         @if grep -v '^#' $(srcdir)/tests/*.test | grep ':[      ]*make'; then \
291           echo 'Do not run "make" in the above tests.  Use "$$MAKE" instead.' 1>&2; \
292           exit 1; \
293         fi
294
295 ## Tests should never call autoconf directly.
296 sc_tests_plain_autoconf:
297         @if grep -v '^#' $(srcdir)/tests/*.test | grep ':[      ]*autoconf'; then \
298           echo 'Do not run "autoconf" in the above tests.  Use "$$AUTOCONF" instead.' 1>&2; \
299           exit 1; \
300         fi
301
302 ## Tests should never call autoupdate directly.
303 sc_tests_plain_autoupdate:
304         @if grep -v '^#' $(srcdir)/tests/*.test | grep ':[      ]*autoupdate'; then \
305           echo 'Do not run "autoupdate" in the above tests.  Use "$$AUTOUPDATE" instead.' 1>&2; \
306           exit 1; \
307         fi
308
309 ## Tests should never call automake directly.
310 sc_tests_plain_automake:
311         @if grep -v '^#' $(srcdir)/tests/*.test | grep -E ':[   ]*automake([^:]|$$)'; then \
312           echo 'Do not run "automake" in the above tests.  Use "$$AUTOMAKE" instead.' 1>&2;  \
313           exit 1; \
314         fi
315
316 ## Tests should only use END and EOF for here documents
317 ## (so that the next test is effective).
318 sc_tests_here_document_format:
319         @if grep '<<' $(srcdir)/tests/*.test | grep -v 'END' | grep -v 'EOF'; then \
320           echo 'Use here documents with "END" and "EOF" only, for greppability.' 1>&2; \
321           exit 1; \
322         fi
323
324 ## Tests should never call exit directly, but use Exit.
325 ## This is so that the exit status is transported correctly across the 0 trap.
326 ## Ignore comments, and ignore one perl line in ext2.test.
327 sc_tests_Exit_not_exit:
328         @found=false; for file in $(srcdir)/tests/*.test; do \
329           res=`sed -n -e '/^#/d; /^\$$PERL/d' -e '/<<.*END/,/^END/b' \
330                       -e '/<<.*EOF/,/^EOF/b' -e '/exit [$$0-9]/p' $$file`; \
331           if test -n "$$res"; then \
332             echo "$$file:$$res"; \
333             found=true; \
334           fi; \
335         done; \
336         if $$found; then \
337           echo 'Do not call plain "exit", use "Exit" instead, in above tests.' 1>&2; \
338           exit 1; \
339         fi
340
341 ## Use AUTOMAKE_fails when appropriate
342 sc_tests_automake_fails:
343         @if grep -v '^#' $(srcdir)/tests/*.test | grep '\$$AUTOMAKE.*&&.*[eE]xit'; then \
344           echo 'Use AUTOMAKE_fails + grep to catch automake failures in the above tests.' 1>&2;  \
345           exit 1; \
346         fi
347
348 ## Tests should never call aclocal directly.
349 sc_tests_plain_aclocal:
350         @if grep -v '^#' $(srcdir)/tests/*.test | grep ':[      ]*aclocal'; then \
351           echo 'Do not run "aclocal" in the above tests.  Use "$$ACLOCAL" instead.' 1>&2;  \
352           exit 1; \
353         fi
354
355 ## Tests should never call perl directly.
356 sc_tests_plain_perl:
357         @if grep -v '^#' $(srcdir)/tests/*.test | grep ':[      ]*perl'; then \
358           echo 'Do not run "perl" in the above tests.  Use "$$PERL" instead.' 1>&2; \
359           exit 1; \
360         fi
361
362 ## Setting `required' after sourcing `./defs' is a bug.
363 sc_tests_required_after_defs:
364         @for file in $(srcdir)/tests/*.test; do \
365           if out=`sed -n '/defs/,$${/required=/p;}' $$file`; test -n "$$out"; then \
366             echo 'Do not set "required" after sourcing "defs" in '"$$file: $$out" 1>&2; \
367             exit 1; \
368           fi; \
369         done
370
371 ## Overriding a Makefile macro on the command line is not portable when
372 ## recursive targets are used.  Better use an envvar.  SHELL is an exception,
373 ## POSIX says it can't come from the environment.  V and DESTDIRS are exceptions,
374 ## too, as package authors are urged not to initialize them anywhere.
375 sc_tests_overriding_macros_on_cmdline:
376         @if grep -E '\$$MAKE .*(SHELL=.*=|=.*SHELL=)' $(srcdir)/tests/*.test; then \
377           echo 'Rewrite "$$MAKE foo=bar SHELL=$$SHELL" as "foo=bar $$MAKE -e SHELL=$$SHELL"' 1>&2; \
378           echo ' in the above lines, it is more portable.' 1>&2; \
379           exit 1; \
380         fi
381         @if sed 's/DESTDIR=[^ ]*//; s/SHELL=[^ ]*//; s/V=[^ ]*//' $(srcdir)/tests/*.test | \
382             grep '\$$MAKE .*=' ; then \
383           echo 'Rewrite "$$MAKE foo=bar" as "foo=bar $$MAKE -e" in the above lines,' 1>&2; \
384           echo 'it is more portable.' 1>&2; \
385           exit 1; \
386         fi
387         @if grep 'SHELL=.*\$$MAKE' $(srcdir)/tests/*.test; then \
388           echo '$$MAKE ignores the SHELL envvar, use "$$MAKE SHELL=$$SHELL" in' 1>&2; \
389           echo 'the above lines.' 1>&2; \
390           exit 1; \
391         fi
392
393 ## Never use `sleep 1' to create files with different timestamps.
394 ## Use `$sleep' instead.  Some filesystems (e.g., Windows') have only
395 ## a 2sec resolution.
396 sc_tests_plain_sleep:
397         @if grep -E '\bsleep +[12345]\b' $(srcdir)/tests/*.test; then \
398           echo 'Do not use "sleep x" in the above tests.  Use "$$sleep" instead.' 1>&2; \
399           exit 1; \
400         fi
401
402 ## fgrep and egrep are not required by POSIX.
403 sc_tests_plain_egrep_fgrep:
404         @if grep -E '\b[ef]grep\b' $(srcdir)/tests/*.test ; then \
405           echo 'Do not use egrep or fgrep in test cases.  Use $$FGREP or $$EGREP.' 1>&2; \
406           exit 1; \
407         fi
408         @if grep -E '\b[ef]grep\b' $(srcdir)/lib/am/*.am $(srcdir)/m4/*.m4; then \
409           echo 'Do not use egrep or fgrep in the above files, they are not portable.' 1>&2; \
410           exit 1; \
411         fi
412
413 ## Using `:' as a PATH separator is not portable.
414 sc_tests_PATH_SEPARATOR:
415         @if grep -E '\bPATH=.*:.*' $(srcdir)/tests/*.test ; then \
416           echo "Use \`$$PATH_SEPARATOR', not \`:', in PATH definitions above." 1>&2; \
417           exit 1; \
418         fi
419
420 sc_mkdir_p:
421         @if grep 'mkdir_p' $(srcdir)/automake.in \
422               $(srcdir)/lib/am/*.am $(srcdir)/tests/*.test; then \
423           echo 'Do not use mkdir_p in the above files, use MKDIR_P.' 1>&2; \
424           exit 1; \
425         fi
426
427 ## Try to make sure all @...@ substitutions are covered by our
428 ## substitution rule.
429 sc_perl_at_substs:
430         @if test `grep -E '^[^#]*@[A-Za-z_0-9]+@' aclocal | wc -l` -ne 0; then \
431           echo "Unresolved @...@ substitution in aclocal" 1>&2; \
432           exit 1; \
433         fi
434         @if test `grep -E '^[^#]*@[A-Za-z_0-9]+@' automake | wc -l` -ne 0; then \
435           echo "Unresolved @...@ substitution in automake" 1>&2; \
436           exit 1; \
437         fi
438
439 sc_unquoted_DESTDIR:
440         @if grep -E "[^\'\"]\\\$$\(DESTDIR" $(srcdir)/lib/am/*.am; then \
441           echo 'Suspicious unquoted DESTDIR uses.' 1>&2 ; \
442           exit 1; \
443         fi
444
445 sc_tabs_in_texi:
446         @if grep '      ' $(srcdir)/doc/automake.texi; then \
447           echo 'Do not use tabs in the manual.' 1>&2; \
448           exit 1; \
449         fi
450
451 sc_at_in_texi:
452         @if grep -E '([^@]|^)@([         ][^@]|$$)' $(srcdir)/doc/automake.texi; \
453         then \
454           echo 'Unescaped @.' 1>&2; \
455           exit 1; \
456         fi
457
458
459 git-dist: maintainer-check
460 ## Make sure the NEWS file is up-to-date.
461         @if sed 1q $(srcdir)/NEWS | grep -e "$(VERSION)" > /dev/null; then :; else \
462           echo "NEWS not updated; not releasing" 1>&2; \
463           exit 1;                               \
464         fi
465 ## Build the distribution
466         $(MAKE) $(AM_MAKEFLAGS) distcheck
467 ## Finally, if anything was successful, commit the last changes and tag
468 ## the release in the repository.  We don't use RCS keywords so it's OK
469 ## to distribute the files before they were committed.
470         cd $(srcdir) && git commit -a -s && \
471            git tag -s "v$(VERSION)" -m "Release $(VERSION)"
472
473 git-release: git-dist
474         case $(VERSION) in \
475           *[a-z]) dest=alpha;; \
476           *)      dest=ftp;; \
477         esac; \
478         $(srcdir)/lib/gnupload $(GNUPLOADFLAGS) \
479           --to $$dest.gnu.org:automake $(DIST_ARCHIVES)
480
481 git-diff:
482         thisver="v$(VERSION)"; \
483         if test -z "$$OLDVERSION"; then \
484           prevno=`echo "$(VERSION)" - 0.01 | bc | sed 's/^\./0./'`; \
485         else prevno="$$OLDVERSION"; fi; \
486         prevver=v$$prevno; \
487         git diff $$prevver..$$thisver $(PACKAGE) \
488             > $(PACKAGE)-$$prevno-$(VERSION).diff
489
490 ## Check our path lengths.
491 path-check: distdir
492         (cd $(distdir) && \
493 ## FIXME there's got to be a better way!  pathchk should take the list
494 ## of files on stdin, at least.
495           find . -print | xargs pathchk -p); \
496           estatus=$$?; \
497           find $(distdir) -type d '!' -perm -200 -exec chmod u+w {} ';'; \
498           rm -rf $(distdir); \
499           exit $$estatus
500
501 ## Program to use to fetch files.
502 WGET = wget
503 WGET_SV_CVS = $(WGET) http://savannah.gnu.org/cgi-bin/viewcvs/~checkout~/
504 WGET_SV_GIT_CF = $(WGET) 'http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;hb=HEAD;f='
505 WGET_SV_GIT_AC = $(WGET) 'http://git.savannah.gnu.org/gitweb/?p=autoconf.git;a=blob_plain;hb=HEAD;f='
506 WGET_SV_GIT_GL = $(WGET) 'http://git.savannah.gnu.org/gitweb/?p=gnulib.git;a=blob_plain;hb=HEAD;f='
507 WGET_GCC = $(WGET) 'http://gcc.gnu.org/viewcvs/*checkout*/trunk/'
508
509 ## Files that we fetch and which we compare against.
510 ## FIXME should be a lot more here
511 FETCHFILES = \
512 INSTALL \
513 config-ml.in \
514 config.guess \
515 config.sub \
516 symlink-tree \
517 texinfo.tex
518
519 ## Fetch the latest versions of files we care about.
520 fetch:
521         rm -rf Fetchdir > /dev/null 2>&1
522         mkdir Fetchdir
523 ## If a get fails then that is a problem.
524         (cd Fetchdir && \
525         $(WGET_SV_GIT_CF)config.guess -O config.guess && \
526         $(WGET_SV_GIT_CF)config.sub -O config.sub && \
527         $(WGET_SV_CVS)texinfo/texinfo/doc/texinfo.tex -O texinfo.tex && \
528         $(WGET_SV_GIT_GL)doc/INSTALL -O INSTALL && \
529         $(WGET_GCC)config-ml.in -O config-ml.in && \
530         $(WGET_GCC)symlink-tree -O symlink-tree)
531 ## Don't exit after test because we want to give as many errors as
532 ## possible.
533         @stat=0; for file in $(FETCHFILES); do \
534           if diff -u $(srcdir)/lib/$$file Fetchdir/$$file \
535                   >>Fetchdir/update.patch 2>/dev/null; then :; \
536           else \
537             stat=1; \
538             echo "Updating $(srcdir)/lib/$$file..."; \
539             cp Fetchdir/$$file $(srcdir)/lib/$$file; \
540           fi; \
541         done; \
542         test $$stat = 0 || \
543           echo "See Fetchdir/update.patch for a log of the changes."; \
544         exit $$stat
545
546 ## Generate release statistics, for the table in automake.texi.
547 ## This has to be run in an up to date build tree, but there must
548 ## be no temp files nor unused other files lying around!
549 release-stats: ps
550         @am=`wc -l < automake` && \
551         acl=`wc -l < aclocal` && \
552         pmfiles="lib/Automake/*.pm" && \
553         if test . != '$(srcdir)'; then pmfiles="$$pmfiles $(srcdir)/lib/Automake/*.pm"; \
554         else :; fi && \
555         pm=`cat $$pmfiles | wc -l` && \
556         dot_am_files=`ls -1 $(srcdir)/lib/am/*.am | grep -v Makefile.am` && \
557         amf=`echo "$$dot_am_files" | wc -l` && \
558         aml=`cat $$dot_am_files | wc -l` && \
559         m4f=`ls -1 $(srcdir)/m4/*.m4 | wc -l` && \
560         m4l=`cat $(srcdir)/m4/*.m4 | wc -l` && \
561         doc_text=`cd doc && LC_ALL=C pstops 0 automake.ps unused.ps 2>&1` && \
562         echo "$$doc_text" && \
563         rm -f doc/unused.ps && \
564         doc=`echo "$$doc_text" | sed -n 's/.*Wrote \([1-9][0-9]*\) pages.*/\1/p'` && \
565         tests="tests/*.test"; \
566         if test . != '$(srcdir)'; then tests="$$tests $(srcdir)/tests/*.test"; \
567         else :; fi && \
568         t=`ls -1 $$tests | wc -l` && \
569         tgen=`ls -1 $$tests | grep '.-p\.test' | wc -l` && \
570         today=`date +%Y-%m-%d` && \
571         echo "add this to the table in doc/automake.texi after verification:" && \
572         printf '@item %s @tab %-6s @tab %4d @tab %4d @tab %4d @tab %4d %-4s @tab %4d %-4s @tab %3d @tab %d %-4s\n' \
573                       $$today $(VERSION) $$am    $$acl    $$pm   $$aml "($$amf)" $$m4l "($$m4f)" $$doc $$t "($$tgen)"
574 .PHONY: release-stats