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