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