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