* src/dircolors.hin: Mention that ORPHAN refers not just to dangling symlinks.
[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 # Use --rsyncable if available.
28 gzip_rsyncable := \
29   $(shell gzip --help|grep rsyncable >/dev/null && echo --rsyncable)
30 GZIP_ENV = '--no-name --best $(gzip_rsyncable)'
31
32 CVS = cvs
33
34 # cvsu is part of the cvsutils package: http://www.red-bean.com/cvsutils/
35 CVS_LIST = build-aux/vc-list-files
36
37 CVS_LIST_EXCEPT = \
38   $(CVS_LIST) | if test -f .x-$@; then grep -vEf .x-$@; else grep -v ChangeLog; fi
39
40 ifeq ($(origin prev_version_file), undefined)
41   prev_version_file = .prev-version
42 endif
43
44 PREV_VERSION := $(shell cat $(prev_version_file))
45 VERSION_REGEXP = $(subst .,\.,$(VERSION))
46
47 tag-package = $(shell echo "$(PACKAGE)" | tr '[:lower:]' '[:upper:]')
48 tag-this-version = $(subst .,_,$(VERSION))
49 this-cvs-tag = $(tag-package)-$(tag-this-version)
50 my_distdir = $(PACKAGE)-$(VERSION)
51
52 # Old releases are stored here.
53 # Used for diffs and xdeltas.
54 release_archive_dir ?= ../release
55
56 # Prevent programs like 'sort' from considering distinct strings to be equal.
57 # Doing it here saves us from having to set LC_ALL elsewhere in this file.
58 export LC_ALL = C
59
60
61
62 ## --------------- ##
63 ## Sanity checks.  ##
64 ## --------------- ##
65
66 # FIXME: add a check to prohibit definition in src/*.c of symbols defined
67 # in system.h.  E.g. today I removed from tail.c a useless definition of
68 # ENOSYS.  It was useless because system.h ensures it's defined.
69
70 # Checks that don't require cvs.
71 # Run `changelog-check' last, as previous test may reveal problems requiring
72 # new ChangeLog entries.
73 local-checks-available = \
74   po-check copyright-check writable-files m4-check author_mark_check \
75   changelog-check patch-check strftime-check $(syntax-check-rules) \
76   makefile_path_separator_check \
77   makefile-check
78 .PHONY: $(local-checks-available)
79
80 local-check = $(filter-out $(local-checks-to-skip), $(local-checks-available))
81
82 # Collect the names of rules starting with `sc_'.
83 syntax-check-rules := $(shell sed -n 's/^\(sc_[a-zA-Z0-9_-]*\):.*/\1/p' $(ME))
84 .PHONY: $(syntax-check-rules)
85
86 syntax-check: $(syntax-check-rules)
87 #       @grep -nE '#  *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 -nE '^#  *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 -nE '\<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 -nE --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 -nE '\*\) *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         @grep -n '[ ]   ' $$($(CVS_LIST_EXCEPT)) &&                     \
118           { echo '$(ME): found SPACE-TAB sequence; remove the SPACE'    \
119                 1>&2; exit 1; } || :
120
121 # Don't use the old ato* functions in `real' code.
122 # They provide no error checking mechanism.
123 # Instead, use strto* functions.
124 sc_prohibit_atoi_atof:
125         @grep -nE '\<ato([filq]|ll)\>' $$($(CVS_LIST_EXCEPT)) &&        \
126           { echo '$(ME): do not use ato''f, ato''i, ato''l, ato''ll, or ato''q' \
127                 1>&2; exit 1; } || :
128
129 # Using EXIT_SUCCESS as the first argument to error is misleading,
130 # since when that parameter is 0, error does not exit.  Use `0' instead.
131 sc_error_exit_success:
132         @grep -nF 'error (EXIT_SUCCESS,'                                        \
133             $$(find -type f -name '*.[chly]') &&                        \
134           { echo '$(ME): found error (EXIT_SUCCESS' 1>&2;               \
135             exit 1; } || :
136
137 sc_file_system:
138         @grep -ni 'file''system' $$($(CVS_LIST_EXCEPT)) &&              \
139           { echo '$(ME): found use of "file''system";'                  \
140             'rewrite to use "file system"' 1>&2;                        \
141             exit 1; } || :
142
143 sc_no_if_have_config_h:
144         @grep -n '^# *if HAVE_CONFIG_H' $$($(CVS_LIST_EXCEPT)) &&       \
145           { echo '$(ME): found use of #if HAVE_CONFIG_H; use #ifdef'    \
146                 1>&2; exit 1; } || :
147
148 # Nearly all .c files must include <config.h>.
149 sc_require_config_h:
150         @grep -L '^# *include <config\.h>'                              \
151                 $$($(CVS_LIST_EXCEPT) | grep '\.c$$')                   \
152             | grep . &&                                                 \
153           { echo '$(ME): the above files do not include <config.h>'     \
154                 1>&2; exit 1; } || :
155
156 # Prohibit the inclusion of assert.h without an actual use of assert.
157 sc_prohibit_assert_without_use:
158         @files=$$(grep -l '# *include <assert\.h>'                      \
159                     $$($(CVS_LIST_EXCEPT) | grep '\.c$$')) &&           \
160         grep -L '\<assert (' $$files                                    \
161             | grep . &&                                                 \
162           { echo "$(ME): the above files include <assert.h> but don't use it" \
163                 1>&2; exit 1; } || :
164
165 sc_obsolete_symbols:
166         @grep -nE '\<(HAVE''_FCNTL_H|O''_NDELAY)\>'                     \
167              $$($(CVS_LIST_EXCEPT)) &&                                  \
168           { echo '$(ME): do not use HAVE''_FCNTL_H or O''_NDELAY'       \
169                 1>&2; exit 1; } || :
170
171 # FIXME: warn about definitions of EXIT_FAILURE, EXIT_SUCCESS, STREQ
172
173 # Each nonempty line must start with a year number, or a TAB.
174 sc_changelog:
175         @grep -n '^[^12 ]' $$(find . -maxdepth 2 -name ChangeLog) &&    \
176           { echo '$(ME): found unexpected prefix in a ChangeLog' 1>&2;  \
177             exit 1; } || :
178
179 # Ensure that dd's definition of LONGEST_SYMBOL stays in sync
180 # with the strings from the two affected variables.
181 dd_c = $(srcdir)/src/dd.c
182 sc_dd_max_sym_length:
183 ifneq ($(wildcard $(dd_c)),)
184         @len=$$( (sed -n '/conversions\[\] =$$/,/^};/p' $(dd_c);\
185                  sed -n '/flags\[\] =$$/,/^};/p' $(dd_c) )      \
186                 |sed -n '/"/s/^[^"]*"\([^"]*\)".*/\1/p'         \
187               | wc --max-line-length);                          \
188         max=$$(sed -n '/^#define LONGEST_SYMBOL /s///p' $(dd_c) \
189               |tr -d '"' | wc --max-line-length);               \
190         if test "$$len" = "$$max"; then :; else                 \
191           echo 'dd.c: LONGEST_SYMBOL is not longest' 1>&2;      \
192           exit 1;                                               \
193         fi
194 endif
195
196 # Many m4 macros names once began with `jm_'.
197 # On 2004-04-13, they were all changed to start with gl_ instead.
198 # Make sure that none are inadvertently reintroduced.
199 sc_prohibit_jm_in_m4:
200         @grep -nE 'jm_[A-Z]'                                    \
201                 $$($(CVS_LIST) m4 |grep '\.m4$$') &&            \
202             { echo '$(ME): do not use jm_ in m4 macro names'    \
203               1>&2; exit 1; } || :
204
205 sc_root_tests:
206         @t1=sc-root.expected; t2=sc-root.actual;                        \
207         grep -nl '^PRIV_CHECK_ARG=require-root'                         \
208           $$($(CVS_LIST) tests) |sed s,tests,., |sort > $$t1;           \
209         sed -n 's,      cd \([^ ]*\) .*MAKE..check TESTS=\(.*\),./\1/\2,p' \
210           $(srcdir)/tests/Makefile.am |sort > $$t2;                     \
211         diff -u $$t1 $$t2 || diff=1;                                    \
212         rm -f $$t1 $$t2;                                                \
213         test "$$diff"                                                   \
214           && { echo 'tests/Makefile.am: missing check-root action'>&2;  \
215                exit 1; } || :
216
217 # Create a list of regular expressions matching the names
218 # of files included from system.h.  Exclude a couple.
219 .re-list:
220         @sed -n '/^# *include /s///p' $(srcdir)/src/system.h \
221           | grep -Ev 'sys/(param|file)\.h' \
222           | sed 's/ .*//;;s/^["<]/^# *include [<"]/;s/\.h[">]$$/\\.h[">]/' \
223           > $@-t
224         @mv $@-t $@
225
226 # Files in src/ should not include directly any of
227 # the headers already included via system.h.
228 sc_system_h_headers: .re-list
229         @if test -f $(srcdir)/src/system.h; then                        \
230           trap 'rc=$$?; rm -f .re-list; exit $$rc' 0 1 2 3 15;          \
231           grep -nE -f .re-list                                          \
232               $$($(CVS_LIST) src |                                      \
233                  grep -Ev '((copy|system)\.h|parse-gram\.c)$$')         \
234             && { echo '$(ME): the above are already included via system.h'\
235                   1>&2;  exit 1; } || :;                                \
236         fi
237
238 sc_sun_os_names:
239         @grep -nEi \
240             'solaris[^[:alnum:]]*2\.(7|8|9|[1-9][0-9])|sunos[^[:alnum:]][6-9]' \
241             $$($(CVS_LIST_EXCEPT)) &&                                   \
242           { echo '$(ME): found misuse of Sun OS version numbers' 1>&2;  \
243             exit 1; } || :
244
245 sc_the_the:
246         @grep -ni '\<the ''the\>' $$($(CVS_LIST_EXCEPT)) &&             \
247           { echo '$(ME): found use of "the ''the";' 1>&2;               \
248             exit 1; } || :
249
250 sc_tight_scope:
251         $(MAKE) -C src $@
252
253 sc_trailing_blank:
254         @grep -n '[      ]$$' $$($(CVS_LIST_EXCEPT)) &&                 \
255           { echo '$(ME): found trailing blank(s)'                       \
256                 1>&2; exit 1; } || :
257
258 # Match lines like the following, but where there is only one space
259 # between the options and the description:
260 #   -D, --all-repeated[=delimit-method]  print all duplicate lines\n
261 longopt_re = --[a-z][0-9A-Za-z-]*(\[=[0-9A-Za-z-]*\])?
262 sc_two_space_separator_in_usage:
263         @grep -nE '^   *(-[A-Za-z],)? $(longopt_re) [^ ].*\\$$'         \
264             $$($(CVS_LIST_EXCEPT)) &&                                   \
265           { echo "$(ME): help2man requires at least two spaces between"; \
266             echo "$(ME): an option and its description"; \
267                 1>&2; exit 1; } || :
268
269 # Look for diagnostics that aren't marked for translation.
270 # This won't find any for which error's format string is on a separate line.
271 sc_unmarked_diagnostics:
272         @grep -nE                                                       \
273             '\<error \([^"]*"[^"]*[a-z]{3}' $$($(CVS_LIST_EXCEPT))      \
274           | grep -v '_''(' &&                                           \
275           { echo '$(ME): found unmarked diagnostic(s)' 1>&2;            \
276             exit 1; } || :
277
278 # Avoid useless parentheses like those in this example:
279 # #if defined (SYMBOL) || defined (SYM2)
280 sc_useless_cpp_parens:
281         @grep -n '^# *if .*defined *(' $$($(CVS_LIST_EXCEPT)) &&        \
282           { echo '$(ME): found useless parentheses in cpp directive'    \
283                 1>&2; exit 1; } || :
284
285 # Ensure that the c99-to-c89 patch applies cleanly.
286 # For now, it affects only remove.c.  Eventually, we'll probably
287 # have to copy all of src/ before running patch.
288 patch-check:
289         cp src/remove.c tmp-remove.c
290         patch -V never --fuzz=0 tmp-remove.c src/c99-to-c89.diff \
291           > $@.1 2>&1
292         sed -n '2p' $@.1 > $@.2
293         test -s $@.2 && exit 1 || :
294         rm -f tmp-remove.c $@.1 $@.2
295
296 # Ensure that date's --help output stays in sync with the info
297 # documentation for GNU strftime.  The only exception is %N,
298 # which date accepts but GNU strftime does not.
299 extract_char = sed 's/^[^%][^%]*%\(.\).*/\1/'
300 strftime-check:
301         if test -f $(srcdir)/src/date.c; then                           \
302           grep '^  %.  ' $(srcdir)/src/date.c | sort                    \
303             | $(extract_char) > $@-src;                                 \
304           { echo N;                                                     \
305             info libc date calendar format | grep '^    `%.'\'          \
306               | $(extract_char); } | sort > $@-info;                    \
307           diff -u $@-src $@-info || exit 1;                             \
308           rm -f $@-src $@-info;                                         \
309         fi
310
311 # Ensure that we use only the standard $(VAR) notation,
312 # not @...@ in Makefile.am, now that we can rely on automake
313 # to emit a definition for each substituted variable.
314 makefile-check:
315         grep -nE '@[A-Z_0-9]+@' `find . -name Makefile.am` \
316           && { echo 'Makefile.maint: use $$(...), not @...@' 1>&2; exit 1; } || :
317
318 news-date-check: NEWS
319         today=`date +%Y-%m-%d`; \
320         if head NEWS | grep '^\*.* $(VERSION_REGEXP) ('$$today')' \
321             >/dev/null; then \
322           :; \
323         else \
324           echo "version or today's date is not in NEWS" 1>&2; \
325           exit 1; \
326         fi
327
328 changelog-check:
329         if head ChangeLog | grep 'Version $(VERSION_REGEXP)\.$$' \
330             >/dev/null; then \
331           :; \
332         else \
333           echo "$(VERSION) not in ChangeLog" 1>&2; \
334           exit 1; \
335         fi
336
337 m4-check:
338         @grep -n 'AC_DEFUN([^[]' m4/*.m4 \
339           && { echo 'Makefile.maint: quote the first arg to AC_DEFUN' 1>&2; \
340                exit 1; } || :
341
342 # Verify that all source files using _() are listed in po/POTFILES.in.
343 # FIXME: don't hard-code file names below; use a more general mechanism.
344 po-check:
345         if test -f po/POTFILES.in; then                                 \
346           grep -E -v '^(#|$$)' po/POTFILES.in                           \
347             | grep -v '^src/false\.c$$' | sort > $@-1;                  \
348           files=;                                                       \
349           for file in $$($(CVS_LIST_EXCEPT)) lib/*.[ch]; do             \
350             case $$file in                                              \
351             djgpp/* | man/*) continue;;                                 \
352             esac;                                                       \
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 -u > $@-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 -n '^# *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 -n '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 = '$$(date +%Y)' };' $(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:
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 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 changelog-check $(local-check)
619         test $@ = major                                         \
620           && { echo $(VERSION) | grep -E '^[0-9]+(\.[0-9]+)+$$' \
621                || { echo "invalid version string: $(VERSION)" 1>&2; exit 1; }}\
622           || :
623         $(MAKE) cvs-dist
624         $(MAKE) $(xd-delta)
625         $(MAKE) -s announcement RELEASE_TYPE=$@ > /tmp/announce-$(my_distdir)
626         ln $(rel-files) $(release_archive_dir)
627         chmod a-w $(rel-files)
628         $(MAKE) -s emit_upload_commands RELEASE_TYPE=$@
629         echo $(VERSION) > $(prev_version_file)
630         $(CVS) ci -m. $(prev_version_file)