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