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