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