(syntax-check-rules): Automatically derive this list of sc_-prefixed rule names.
[platform/upstream/coreutils.git] / Makefile.maint
1 # -*-Makefile-*-
2 # This Makefile fragment is shared between the coreutils,
3 # CPPI, Bison, and Autoconf.
4
5 ## Copyright (C) 2001-2006 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, write to the Free Software
19 ## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
20 ## 02110-1301, USA.
21
22 # This is reported not to work with make-3.79.1
23 # ME := $(word $(words $(MAKEFILE_LIST)),$(MAKEFILE_LIST))
24 ME := Makefile.maint
25
26 # Do not save the original name or timestamp in the .tar.gz file.
27 # Use --rsyncable if available.
28 gzip_rsyncable := \
29   $(shell gzip --help|grep rsyncable >/dev/null && echo --rsyncable)
30 GZIP_ENV = '--no-name --best $(gzip_rsyncable)'
31
32 CVS = cvs
33
34 # cvsu is part of the cvsutils package: http://www.red-bean.com/cvsutils/
35 CVS_LIST = sh -c ' \
36     if test -x $(srcdir)/build-aux/cvsu; then \
37       $(srcdir)/build-aux/cvsu --find --types=AFGM $$*; \
38     else \
39       awk -F/ '\''{ \
40           if (!$$1 && $$3 !~ /^-/) { \
41             f=FILENAME; \
42             sub(/CVS\/Entries/, "", f); \
43             print f $$2; \
44           }}'\'' \
45         $$(find $${*-*} -name Entries -print) /dev/null; \
46     fi \
47   ' dummy
48
49 CVS_LIST_EXCEPT = \
50   $(CVS_LIST) | if test -f .x-$@; then grep -vEf .x-$@; else grep -v ChangeLog; fi
51
52 ifeq ($(origin prev_version_file), undefined)
53   prev_version_file = .prev-version
54 endif
55
56 PREV_VERSION := $(shell cat $(prev_version_file))
57 VERSION_REGEXP = $(subst .,\.,$(VERSION))
58
59 tag-package = $(shell echo "$(PACKAGE)" | tr '[:lower:]' '[:upper:]')
60 tag-this-version = $(subst .,_,$(VERSION))
61 this-cvs-tag = $(tag-package)-$(tag-this-version)
62 my_distdir = $(PACKAGE)-$(VERSION)
63
64 # Old releases are stored here.
65 # Used for diffs and xdeltas.
66 release_archive_dir ?= ../release
67
68 # Prevent programs like 'sort' from considering distinct strings to be equal.
69 # Doing it here saves us from having to set LC_ALL elsewhere in this file.
70 export LC_ALL = C
71
72
73
74 ## --------------- ##
75 ## Sanity checks.  ##
76 ## --------------- ##
77
78 # FIXME: add a check to prohibit definition in src/*.c of symbols defined
79 # in system.h.  E.g. today I removed from tail.c a useless definition of
80 # ENOSYS.  It was useless because system.h ensures it's defined.
81
82 # Checks that don't require cvs.
83 # Run `changelog-check' last, as previous test may reveal problems requiring
84 # new ChangeLog entries.
85 local-checks-available = \
86   po-check copyright-check writable-files m4-check author_mark_check \
87   changelog-check strftime-check $(syntax-check-rules) \
88   makefile_path_separator_check \
89   makefile-check
90 .PHONY: $(local-checks-available)
91
92 local-check = $(filter-out $(local-checks-to-skip), $(local-checks-available))
93
94 .PHONY: $(syntax-check-rules)
95 syntax-check-rules := $(shell sed -n 's/^\(sc_[a-zA-Z0-9_-]*\):.*/\1/p' $(ME))
96
97 syntax-check: $(syntax-check-rules)
98 #       @grep -nE '#  *include <(limits|std(def|arg|bool))\.h>'         \
99 #           $$(find -type f -name '*.[chly]') &&                        \
100 #         { echo '$(ME): found conditional include' 1>&2;               \
101 #           exit 1; } || :
102
103 #       grep -nE '^#  *include <(string|stdlib)\.h>'                    \
104 #           $(srcdir)/{lib,src}/*.[chy] &&                              \
105 #         { echo '$(ME): FIXME' 1>&2;                                   \
106 #           exit 1; } || :
107 # FIXME: don't allow `#include .strings\.h' anywhere
108
109 sc_cast_of_argument_to_free:
110         @grep -nE '\<free \(\(' $(srcdir)/{lib,src}/*.[chly] &&         \
111           { echo '$(ME): don'\''t cast free argument' 1>&2;             \
112             exit 1; } || :
113
114 sc_cast_of_x_alloc_return_value:
115         @grep -nE --exclude=$(srcdir)/lib/regex.c                       \
116             '\*\) *x(m|c|re)alloc\>'                                    \
117             $(srcdir)/{lib,src}/*.[chy] &&                              \
118           { echo '$(ME): don'\''t cast x*alloc return value' 1>&2;      \
119             exit 1; } || :
120
121 sc_cast_of_alloca_return_value:
122         @grep -nE '\*\) *alloca\>'                                      \
123             $(srcdir)/src/*.[chy] &&                                    \
124           { echo '$(ME): don'\''t cast alloca return value' 1>&2;       \
125             exit 1; } || :
126
127 sc_space_tab:
128         @grep -n '[ ]   ' $$($(CVS_LIST_EXCEPT)) &&                     \
129           { echo '$(ME): found SPACE-TAB sequence; remove the SPACE'    \
130                 1>&2; exit 1; } || :
131
132 # Don't use the old ato* functions in `real' code.
133 # They provide no error checking mechanism.
134 # Instead, use strto* functions.
135 sc_prohibit_atoi_atof:
136         @grep -nE '\<ato([filq]|ll)\>' $$($(CVS_LIST_EXCEPT)) &&        \
137           { echo '$(ME): do not use ato''f, ato''i, ato''l, ato''ll, or ato''q' \
138                 1>&2; exit 1; } || :
139
140 # Using EXIT_SUCCESS as the first argument to error is misleading,
141 # since when that parameter is 0, error does not exit.  Use `0' instead.
142 sc_error_exit_success:
143         @grep -nF 'error (EXIT_SUCCESS,'                                        \
144             $$(find -type f -name '*.[chly]') &&                        \
145           { echo '$(ME): found error (EXIT_SUCCESS' 1>&2;               \
146             exit 1; } || :
147
148 sc_file_system:
149         @grep -ni 'file''system' $$($(CVS_LIST_EXCEPT)) &&              \
150           { echo '$(ME): found use of "file''system";'                  \
151             'rewrite to use "file system"' 1>&2;                        \
152             exit 1; } || :
153
154 sc_no_if_have_config_h:
155         @grep -n '^# *if HAVE_CONFIG_H' $$($(CVS_LIST_EXCEPT)) &&       \
156           { echo '$(ME): found use of #if HAVE_CONFIG_H; use #ifdef'    \
157                 1>&2; exit 1; } || :
158
159 # Nearly all .c files must include <config.h>.
160 sc_require_config_h:
161         @grep -L '^# *include <config\.h>'                              \
162                 $$($(CVS_LIST_EXCEPT) | grep '\.c$$')                   \
163             | grep . &&                                                 \
164           { echo '$(ME): the above files do not include <config.h>'     \
165                 1>&2; exit 1; } || :
166
167 # Prohibit the inclusion of assert.h without an actual use of assert.
168 sc_prohibit_assert_without_use:
169         @files=$$(grep -l '# *include <assert\.h>'                      \
170                     $$($(CVS_LIST_EXCEPT) | grep '\.c$$')) &&           \
171         grep -L '\<assert (' $$files                                    \
172             | grep . &&                                                 \
173           { echo "$(ME): the above files include <assert.h> but don't use it" \
174                 1>&2; exit 1; } || :
175
176 sc_obsolete_symbols:
177         @grep -nE '\<(HAVE''_FCNTL_H|O''_NDELAY)\>'                     \
178              $$($(CVS_LIST_EXCEPT)) &&                                  \
179           { echo '$(ME): do not use HAVE''_FCNTL_H or O''_NDELAY'       \
180                 1>&2; exit 1; } || :
181
182 # FIXME: warn about definitions of EXIT_FAILURE, EXIT_SUCCESS, STREQ
183
184 # Each nonempty line must start with a year number, or a TAB.
185 sc_changelog:
186         @grep -n '^[^12 ]' $$(find . -maxdepth 2 -name ChangeLog) &&    \
187           { echo '$(ME): found unexpected prefix in a ChangeLog' 1>&2;  \
188             exit 1; } || :
189
190 # Ensure that dd's definition of LONGEST_SYMBOL stays in sync
191 # with the strings from the two affected variables.
192 dd_c = $(srcdir)/src/dd.c
193 sc_dd_max_sym_length:
194 ifneq ($(wildcard $(dd_c)),)
195         @len=$$( (sed -n '/conversions\[\] =$$/,/^};/p' $(dd_c);\
196                  sed -n '/flags\[\] =$$/,/^};/p' $(dd_c) )      \
197                 |sed -n '/"/s/^[^"]*"\([^"]*\)".*/\1/p'         \
198               | wc --max-line-length);                          \
199         max=$$(sed -n '/^#define LONGEST_SYMBOL /s///p' $(dd_c) \
200               |tr -d '"' | wc --max-line-length);               \
201         if test "$$len" = "$$max"; then :; else                 \
202           echo 'dd.c: LONGEST_SYMBOL is not longest' 1>&2;      \
203           exit 1;                                               \
204         fi
205 endif
206
207 # Many m4 macros names once began with `jm_'.
208 # On 2004-04-13, they were all changed to start with gl_ instead.
209 # Make sure that none are inadvertently reintroduced.
210 sc_prohibit_jm_in_m4:
211         @grep -nE 'jm_[A-Z]'                                            \
212                 $$($(CVS_LIST) $(srcdir)/m4 |grep '\.m4$$') &&          \
213             { echo '$(ME): do not use jm_ in m4 macro names'            \
214               1>&2; exit 1; } || :
215
216 sc_root_tests:
217         @t1=sc-root.expected; t2=sc-root.actual;                        \
218         grep -nl '^PRIV_CHECK_ARG=require-root'                         \
219           $$($(CVS_LIST) tests) |sed s,tests,., |sort > $$t1;           \
220         sed -n 's,      cd \([^ ]*\) .*MAKE..check TESTS=\(.*\),./\1/\2,p' \
221           $(srcdir)/tests/Makefile.am |sort > $$t2;                     \
222         diff -u $$t1 $$t2 || diff=1;                                    \
223         rm -f $$t1 $$t2;                                                \
224         test "$$diff"                                                   \
225           && { echo 'tests/Makefile.am: missing check-root action'>&2;  \
226                exit 1; } || :
227
228 # Create a list of regular expressions matching the names
229 # of files included from system.h.  Exclude a couple.
230 .re-list:
231         @sed -n '/^# *include /s///p' $(srcdir)/src/system.h \
232           | grep -Ev 'sys/(param|file)\.h' \
233           | sed 's/ .*//;;s/^["<]/^# *include [<"]/;s/\.h[">]$$/\\.h[">]/' \
234           > $@-t
235         @mv $@-t $@
236
237 # Files in src/ should not include directly any of
238 # the headers already included via system.h.
239 sc_system_h_headers: .re-list
240         @if test -f $(srcdir)/src/system.h; then                        \
241           trap 'rc=$$?; rm -f .re-list; exit $$rc' 0 1 2 3 15;          \
242           grep -nE -f .re-list                                          \
243               $$($(CVS_LIST) src |                                      \
244                  grep -Ev '((copy|system)\.h|parse-gram\.c)$$')         \
245             && { echo '$(ME): the above are already included via system.h'\
246                   1>&2;  exit 1; } || :;                                \
247         fi
248
249 sc_sun_os_names:
250         @grep -nEi \
251             'solaris[^[:alnum:]]*2\.(7|8|9|[1-9][0-9])|sunos[^[:alnum:]][6-9]' \
252             $$($(CVS_LIST_EXCEPT)) &&                                   \
253           { echo '$(ME): found misuse of Sun OS version numbers' 1>&2;  \
254             exit 1; } || :
255
256 sc_tight_scope:
257         $(MAKE) -C src $@
258
259 sc_trailing_blank:
260         @grep -n '[      ]$$' $$($(CVS_LIST_EXCEPT)) &&                 \
261           { echo '$(ME): found trailing blank(s)'                       \
262                 1>&2; exit 1; } || :
263
264 sc_two_space_separator_in_usage:
265         @grep -n '^   *--[a-z][0-9A-Za-z-]* [^ ].*\\$$'                 \
266             $$($(CVS_LIST_EXCEPT)) &&                                   \
267           { echo "$(ME): help2man requires at least two spaces between"; \
268             echo "$(ME): an option and its description"; \
269                 1>&2; exit 1; } || :
270
271 # Look for diagnostics that aren't marked for translation.
272 # This won't find any for which error's format string is on a separate line.
273 sc_unmarked_diagnostics:
274         @grep -nE                                                       \
275             '\<error \([^"]*"[^"]*[a-z]{3}' $$($(CVS_LIST_EXCEPT))      \
276           | grep -v '_''(' &&                                           \
277           { echo '$(ME): found unmarked diagnostic(s)' 1>&2;            \
278             exit 1; } || :
279
280 # Avoid useless parentheses like those in this example:
281 # #if defined (SYMBOL) || defined (SYM2)
282 sc_useless_cpp_parens:
283         @grep -n '^# *if .*defined *(' $$($(CVS_LIST_EXCEPT)) &&        \
284           { echo '$(ME): found useless parentheses in cpp directive'    \
285                 1>&2; exit 1; } || :
286
287 # Ensure that date's --help output stays in sync with the info
288 # documentation for GNU strftime.  The only exception is %N,
289 # which date accepts but GNU strftime does not.
290 extract_char = sed 's/^[^%][^%]*%\(.\).*/\1/'
291 strftime-check:
292         if test -f $(srcdir)/src/date.c; then                           \
293           grep '^  %.  ' $(srcdir)/src/date.c | sort                    \
294             | $(extract_char) > $@-src;                                 \
295           { echo N;                                                     \
296             info libc date calendar format | grep '^    `%.'\'          \
297               | $(extract_char); } | sort > $@-info;                    \
298           diff -u $@-src $@-info || exit 1;                             \
299           rm -f $@-src $@-info;                                         \
300         fi
301
302 # Ensure that we use only the standard $(VAR) notation,
303 # not @...@ in Makefile.am, now that we can rely on automake
304 # to emit a definition for each substituted variable.
305 makefile-check:
306         grep -nE '@[A-Z_0-9]+@' `find . -name Makefile.am` \
307           && { echo 'Makefile.maint: use $$(...), not @...@' 1>&2; exit 1; } || :
308
309 news-date-check: NEWS
310         today=`date +%Y-%m-%d`; \
311         if head NEWS | grep '^\*.* $(VERSION_REGEXP) ('$$today')' \
312             >/dev/null; then \
313           :; \
314         else \
315           echo "version or today's date is not in NEWS" 1>&2; \
316           exit 1; \
317         fi
318
319 changelog-check:
320         if head ChangeLog | grep 'Version $(VERSION_REGEXP)\.$$' \
321             >/dev/null; then \
322           :; \
323         else \
324           echo "$(VERSION) not in ChangeLog" 1>&2; \
325           exit 1; \
326         fi
327
328 m4-check:
329         @grep -n 'AC_DEFUN([^[]' m4/*.m4 \
330           && { echo 'Makefile.maint: quote the first arg to AC_DEFUN' 1>&2; \
331                exit 1; } || :
332
333 # Verify that all source files using _() are listed in po/POTFILES.in.
334 # FIXME: don't hard-code file names below; use a more general mechanism.
335 po-check:
336         if test -f po/POTFILES.in; then                                 \
337           grep -E -v '^(#|$$)' po/POTFILES.in                           \
338             | grep -v '^src/false\.c$$' | sort > $@-1;                  \
339           files=;                                                       \
340           for file in $$($(CVS_LIST_EXCEPT)) lib/*.[ch]; do             \
341             case $$file in                                              \
342             djgpp/* | man/*) continue;;                                 \
343             esac;                                                       \
344             case $$file in                                              \
345             *.[ch])                                                     \
346               base=`expr " $$file" : ' \(.*\)\..'`;                     \
347               { test -f $$base.l || test -f $$base.y; } && continue;;   \
348             esac;                                                       \
349             files="$$files $$file";                                     \
350           done;                                                         \
351           grep -E -l '\bN?_\([^)"]*("|$$)' $$files | sort -u > $@-2;    \
352           diff -u $@-1 $@-2 || exit 1;                                  \
353           rm -f $@-1 $@-2;                                              \
354         fi
355
356 # In a definition of #define AUTHORS "... and ..." where the RHS contains
357 # the English word `and', the string must be marked with `N_ (...)' so that
358 # gettext recognizes it as a string requiring translation.
359 author_mark_check:
360         @grep -n '^# *define AUTHORS "[^"]* and ' src/*.c |grep -v ' N_ (' && \
361           { echo 'Makefile.maint: enclose the above strings in N_ (...)' 1>&2; \
362             exit 1; } || :
363
364 # Sometimes it is useful to change the PATH environment variable
365 # in Makefiles.  When doing so, it's better not to use the Unix-centric
366 # path separator of `:', but rather the automake-provided `@PATH_SEPARATOR@'.
367 # It'd be better to use `find -print0 ...|xargs -0 ...', but less portable,
368 # and there probably aren't many projects with so many Makefile.am files
369 # that we'd have to worry about limits on command line length.
370 msg = 'Makefile.maint: Do not use `:'\'' above; use @PATH_SEPARATOR@ instead'
371 makefile_path_separator_check:
372         @grep -n 'PATH=.*:' `find $(srcdir) -name Makefile.am` \
373           && { echo $(msg) 1>&2; exit 1; } || :
374
375 # Check that `make alpha' will not fail at the end of the process.
376 writable-files:
377         if test -d $(release_archive_dir); then :; else                 \
378           mkdir $(release_archive_dir);                                 \
379         fi
380         for file in $(distdir).tar.gz $(xd-delta)                       \
381                     $(release_archive_dir)/$(distdir).tar.gz            \
382                     $(release_archive_dir)/$(xd-delta); do              \
383           test -e $$file || continue;                                   \
384           test -w $$file                                                \
385             || { echo ERROR: $$file is not writable; fail=1; };         \
386         done;                                                           \
387         test "$$fail" && exit 1 || :
388
389 v_etc_file = lib/version-etc.c
390 # Make sure that the copyright date in $(v_etc_file) is up to date.
391 copyright-check:
392         @if test -f $(v_etc_file); then \
393           grep 'enum { COPYRIGHT_YEAR = '$$(date +%Y)' };' $(v_etc_file) \
394             >/dev/null \
395           || { echo 'out of date copyright in $(v_etc_file); update it' 1>&2; \
396                exit 1; }; \
397         fi
398
399
400 # Sanity checks with the CVS repository.
401 cvs-tag-check:
402         echo $(this-cvs-tag); \
403         if $(CVS) -n log -h README | grep -e $(this-cvs-tag): >/dev/null; then \
404           echo "$(this-cvs-tag) as already been used; not tagging" 1>&2; \
405           exit 1; \
406         else :; fi
407
408 cvs-diff-check:
409         if $(CVS) diff >cvs-diffs; then                         \
410           rm cvs-diffs;                                         \
411         else                                                    \
412           echo "Some files are locally modified:" 1>&2;         \
413           cat cvs-diffs;                                        \
414           exit 1;                                               \
415         fi
416
417 cvs-check: cvs-diff-check cvs-tag-check
418
419 maintainer-distcheck: changelog-check
420         $(MAKE) distcheck
421         $(MAKE) my-distcheck
422
423
424 # Tag before making distribution.  Also, don't make a distribution if
425 # checks fail.  Also, make sure the NEWS file is up-to-date.
426 # FIXME: use dist-hook/my-dist like distcheck-hook/my-distcheck.
427 cvs-dist: $(local-check) cvs-check maintainer-distcheck
428         $(CVS) update po
429         $(CVS) tag -c $(this-cvs-tag)
430         $(MAKE) dist
431
432 # Use this to make sure we don't run these programs when building
433 # from a virgin tgz file, below.
434 null_AM_MAKEFLAGS = \
435   ACLOCAL=false \
436   AUTOCONF=false \
437   AUTOMAKE=false \
438   AUTOHEADER=false \
439   MAKEINFO=false
440
441 # Detect format-string/arg-list mismatches that would normally be obscured
442 # by the use of _().  The --disable-nls effectively defines away that macro,
443 # and building with CFLAGS='-Wformat -Werror' causes any format warning to be
444 # treated as a failure.  Also, check for shadowing problems with -Wshadow.
445 # These CFLAGS are pretty strict.  If you build this target, you probably
446 # have to have a recent version of gcc and glibc headers.
447 TMPDIR ?= /tmp
448 t=$(TMPDIR)/$(PACKAGE)/test
449 my-distcheck: $(local-check) $(release_archive_dir)/$(prev-tgz)
450         -rm -rf $(t)
451         mkdir -p $(t)
452         GZIP=$(GZIP_ENV) $(AMTAR) -C $(t) -zxf $(distdir).tar.gz
453         cd $(t)/$(distdir)                              \
454           && ./configure --disable-nls                  \
455           && $(MAKE) CFLAGS='-Werror -Wall -Wformat -Wshadow' \
456               AM_MAKEFLAGS='$(null_AM_MAKEFLAGS)'       \
457           && $(MAKE) dvi                                \
458           && $(MAKE) check                              \
459           && $(MAKE) distclean
460         (cd $(t) && mv $(distdir) $(distdir).old        \
461           && $(AMTAR) -zxf - ) < $(distdir).tar.gz
462         diff -ur $(t)/$(distdir).old $(t)/$(distdir)
463         -rm -rf $(t)
464         @echo "========================"; \
465         echo "$(distdir).tar.gz is ready for distribution"; \
466         echo "========================"
467
468 WGET = wget
469 WGETFLAGS = -C off
470
471 rel-check:
472         tarz=/tmp/rel-check-tarz-$$$$; \
473         md5_tmp=/tmp/rel-check-md5-$$$$; \
474         set -e; \
475         trap 'status=$$?; rm -f $$tarz $$md5_tmp; exit $$status' 0 1 2 3 15; \
476         $(WGET) $(WGETFLAGS) -q --output-document=$$tarz $(url); \
477         echo "$(md5)  -" > $$md5_tmp; \
478         md5sum -c $$md5_tmp < $$tarz
479
480 prev-tgz = $(PACKAGE)-$(PREV_VERSION).tar.gz
481 xd-delta = $(PACKAGE)-$(PREV_VERSION)-$(VERSION).xdelta
482
483 rel-files = $(xd-delta) $(DIST_ARCHIVES)
484 announcement: NEWS ChangeLog $(rel-files)
485         @./announce-gen                                                 \
486             --release-type=$(RELEASE_TYPE)                              \
487             --package=$(PACKAGE)                                        \
488             --prev=$(PREV_VERSION)                                      \
489             --curr=$(VERSION)                                           \
490             --release-archive-directory=$(release_archive_dir)          \
491             --gpg-key-id=$(gpg_key_ID)                                  \
492             --news=NEWS                                                 \
493             $(addprefix --url-dir=, $(url_dir_list))                    \
494
495
496 ## ---------------- ##
497 ## Updating files.  ##
498 ## ---------------- ##
499
500 ftp-gnu = ftp://ftp.gnu.org/gnu
501 www-gnu = http://www.gnu.org
502
503 # Use mv, if you don't have/want move-if-change.
504 move_if_change ?= move-if-change
505
506
507 # --------------------- #
508 # Updating everything.  #
509 # --------------------- #
510
511 .PHONY: update
512 local_updates ?= wget-update cvs-update po-update
513 update: $(local_updates)
514
515
516 # ------------------- #
517 # Updating PO files.  #
518 # ------------------- #
519
520 po_repo = http://www.iro.umontreal.ca/contrib/po/maint/$(PACKAGE)
521 .PHONY: do-po-update po-update
522 do-po-update:
523         tmppo=/tmp/$(PACKAGE)-$(VERSION)-po &&\
524         rm -rf $$tmppo && \
525         mkdir $$tmppo && \
526         (cd $$tmppo && \
527           $(WGET) $(WGETFLAGS) -r -l1 -nd --no-parent -A '*.po' $(po_repo)) &&\
528         cp $$tmppo/*.po po
529         cd po && $(MAKE) update-po
530         $(MAKE) po-check
531
532 po-update:
533         if test -d "po"; then \
534           $(MAKE) do-po-update; \
535         fi
536
537 # -------------------------- #
538 # Updating GNU build tools.  #
539 # -------------------------- #
540
541 # The following pseudo table associates a local directory and a URL
542 # with each of the files that belongs to some other package and is
543 # regularly updated from the specified URL.
544 wget_files ?= \
545   $(srcdir)/build-aux/config.guess \
546   $(srcdir)/build-aux/config.sub \
547   $(srcdir)/build-aux/texinfo.tex \
548   $(srcdir)/src/ansi2knr.c
549
550 get-targets = $(patsubst %, get-%, $(wget_files))
551
552 config.guess-url_prefix = $(ftp-gnu)/build-aux/
553 config.sub-url_prefix = $(ftp-gnu)/build-aux/
554
555 ansi2knr.c-url_prefix = ftp://ftp.cs.wisc.edu/ghost/
556
557 texinfo.tex-url_prefix = $(ftp-gnu)/texinfo/
558
559 standards.texi-url_prefix = $(www-gnu)/prep/
560 make-stds.texi-url_prefix = $(standards.texi-url_prefix)
561
562 target = $(patsubst get-%, %, $@)
563 url = $($(notdir $(target))-url_prefix)$(notdir $(target))
564
565 .PHONY: $(get-targets)
566 $(get-targets):
567         $(WGET) $(WGETFLAGS) $(url) -O $(target).t \
568           && $(move_if_change) $(target).t $(target)
569
570 cvs_files ?= \
571   $(srcdir)/build-aux/depcomp \
572   $(srcdir)/build-aux/install-sh \
573   $(srcdir)/build-aux/missing \
574   $(srcdir)/build-aux/mkinstalldirs \
575   $(srcdir)/src/ansi2knr.c
576 automake_repo=:pserver:anoncvs:anoncvs@sources.redhat.com:/cvs/automake
577 .PHONY: wget-update
578 wget-update: $(get-targets)
579
580 .PHONY: cvs-update
581 cvs-update:
582         fail=;                                                          \
583         for f in $(cvs_files); do                                       \
584           test -f $$f || { echo "*** skipping $$f" 1>&2; continue; };   \
585           cvs diff $$f > /dev/null                                      \
586             || { echo "*** $$f is locally modified; skipping it" 1>&2;  \
587                  fail=yes; continue; };                                 \
588           file=$$(basename $$f);                                        \
589           echo checking out $$file...;                                  \
590           $(CVS) -d $(automake_repo) co -p automake/lib/$$file> $$f.t   \
591             && $(move_if_change) $$f.t $$f;                             \
592         done;                                                           \
593         test "$$fail" && exit 1
594
595 emit_upload_commands:
596         @echo =====================================
597         @echo =====================================
598         @echo "$(srcdir)/gnupload $(GNUPLOADFLAGS) \\"
599         @echo "    --to $(gnu_rel_host):coreutils \\"
600         @echo "  $(rel-files)"
601         @echo '# send the /tmp/announcement e-mail'
602         @echo =====================================
603         @echo =====================================
604
605 $(xd-delta): $(release_archive_dir)/$(prev-tgz) $(distdir).tar.gz
606         xdelta delta -9 $^ $@ || :
607
608 .PHONY: alpha beta major
609 alpha beta major: news-date-check $(local-check)
610         $(MAKE) cvs-dist
611         $(MAKE) $(xd-delta)
612         $(MAKE) -s announcement RELEASE_TYPE=$@ > /tmp/announce-$(my_distdir)
613         ln $(rel-files) $(release_archive_dir)
614         chmod a-w $(rel-files)
615         $(MAKE) -s emit_upload_commands RELEASE_TYPE=$@
616         echo $(VERSION) > $(prev_version_file)
617         $(CVS) ci -m. $(prev_version_file)