(patch-check): Correct reversed sense of `test -s' test.
[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 = sh -c ' \
36     if test -x $(srcdir)/build-aux/cvsu; then \
37       $(srcdir)/build-aux/cvsu --find --types=AFGM $$*; \
38     else \
39       awk -F/ '\''{ \
40           if (!$$1 && $$3 !~ /^-/) { \
41             f=FILENAME; \
42             sub(/CVS\/Entries/, "", f); \
43             print f $$2; \
44           }}'\'' \
45         $$(find $${*-*} -name Entries -print) /dev/null; \
46     fi \
47   ' dummy
48
49 CVS_LIST_EXCEPT = \
50   $(CVS_LIST) | if test -f .x-$@; then grep -vEf .x-$@; else grep -v ChangeLog; fi
51
52 ifeq ($(origin prev_version_file), undefined)
53   prev_version_file = .prev-version
54 endif
55
56 PREV_VERSION := $(shell cat $(prev_version_file))
57 VERSION_REGEXP = $(subst .,\.,$(VERSION))
58
59 tag-package = $(shell echo "$(PACKAGE)" | tr '[:lower:]' '[:upper:]')
60 tag-this-version = $(subst .,_,$(VERSION))
61 this-cvs-tag = $(tag-package)-$(tag-this-version)
62 my_distdir = $(PACKAGE)-$(VERSION)
63
64 # Old releases are stored here.
65 # Used for diffs and xdeltas.
66 release_archive_dir ?= ../release
67
68 # Prevent programs like 'sort' from considering distinct strings to be equal.
69 # Doing it here saves us from having to set LC_ALL elsewhere in this file.
70 export LC_ALL = C
71
72
73
74 ## --------------- ##
75 ## Sanity checks.  ##
76 ## --------------- ##
77
78 # FIXME: add a check to prohibit definition in src/*.c of symbols defined
79 # in system.h.  E.g. today I removed from tail.c a useless definition of
80 # ENOSYS.  It was useless because system.h ensures it's defined.
81
82 # Checks that don't require cvs.
83 # Run `changelog-check' last, as previous test may reveal problems requiring
84 # new ChangeLog entries.
85 local-checks-available = \
86   po-check copyright-check writable-files m4-check author_mark_check \
87   changelog-check patch-check strftime-check $(syntax-check-rules) \
88   makefile_path_separator_check \
89   makefile-check
90 .PHONY: $(local-checks-available)
91
92 local-check = $(filter-out $(local-checks-to-skip), $(local-checks-available))
93
94 # Collect the names of rules starting with `sc_'.
95 syntax-check-rules := $(shell sed -n 's/^\(sc_[a-zA-Z0-9_-]*\):.*/\1/p' $(ME))
96 .PHONY: $(syntax-check-rules)
97
98 syntax-check: $(syntax-check-rules)
99 #       @grep -nE '#  *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 -nE '^#  *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 -nE '\<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 -nE --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 -nE '\*\) *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         @grep -n '[ ]   ' $$($(CVS_LIST_EXCEPT)) &&                     \
130           { echo '$(ME): found SPACE-TAB sequence; remove the SPACE'    \
131                 1>&2; exit 1; } || :
132
133 # Don't use the old ato* functions in `real' code.
134 # They provide no error checking mechanism.
135 # Instead, use strto* functions.
136 sc_prohibit_atoi_atof:
137         @grep -nE '\<ato([filq]|ll)\>' $$($(CVS_LIST_EXCEPT)) &&        \
138           { echo '$(ME): do not use ato''f, ato''i, ato''l, ato''ll, or ato''q' \
139                 1>&2; exit 1; } || :
140
141 # Using EXIT_SUCCESS as the first argument to error is misleading,
142 # since when that parameter is 0, error does not exit.  Use `0' instead.
143 sc_error_exit_success:
144         @grep -nF 'error (EXIT_SUCCESS,'                                        \
145             $$(find -type f -name '*.[chly]') &&                        \
146           { echo '$(ME): found error (EXIT_SUCCESS' 1>&2;               \
147             exit 1; } || :
148
149 sc_file_system:
150         @grep -ni 'file''system' $$($(CVS_LIST_EXCEPT)) &&              \
151           { echo '$(ME): found use of "file''system";'                  \
152             'rewrite to use "file system"' 1>&2;                        \
153             exit 1; } || :
154
155 sc_no_if_have_config_h:
156         @grep -n '^# *if HAVE_CONFIG_H' $$($(CVS_LIST_EXCEPT)) &&       \
157           { echo '$(ME): found use of #if HAVE_CONFIG_H; use #ifdef'    \
158                 1>&2; exit 1; } || :
159
160 # Nearly all .c files must include <config.h>.
161 sc_require_config_h:
162         @grep -L '^# *include <config\.h>'                              \
163                 $$($(CVS_LIST_EXCEPT) | grep '\.c$$')                   \
164             | grep . &&                                                 \
165           { echo '$(ME): the above files do not include <config.h>'     \
166                 1>&2; exit 1; } || :
167
168 # Prohibit the inclusion of assert.h without an actual use of assert.
169 sc_prohibit_assert_without_use:
170         @files=$$(grep -l '# *include <assert\.h>'                      \
171                     $$($(CVS_LIST_EXCEPT) | grep '\.c$$')) &&           \
172         grep -L '\<assert (' $$files                                    \
173             | grep . &&                                                 \
174           { echo "$(ME): the above files include <assert.h> but don't use it" \
175                 1>&2; exit 1; } || :
176
177 sc_obsolete_symbols:
178         @grep -nE '\<(HAVE''_FCNTL_H|O''_NDELAY)\>'                     \
179              $$($(CVS_LIST_EXCEPT)) &&                                  \
180           { echo '$(ME): do not use HAVE''_FCNTL_H or O''_NDELAY'       \
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 -n '^[^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 ifneq ($(wildcard $(dd_c)),)
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 endif
207
208 # Many m4 macros names once began with `jm_'.
209 # On 2004-04-13, they were all changed to start with gl_ instead.
210 # Make sure that none are inadvertently reintroduced.
211 sc_prohibit_jm_in_m4:
212         @grep -nE '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 -nl '^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           trap 'rc=$$?; rm -f .re-list; exit $$rc' 0 1 2 3 15;          \
243           grep -nE -f .re-list                                          \
244               $$($(CVS_LIST) src |                                      \
245                  grep -Ev '((copy|system)\.h|parse-gram\.c)$$')         \
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         @grep -nEi \
252             'solaris[^[:alnum:]]*2\.(7|8|9|[1-9][0-9])|sunos[^[:alnum:]][6-9]' \
253             $$($(CVS_LIST_EXCEPT)) &&                                   \
254           { echo '$(ME): found misuse of Sun OS version numbers' 1>&2;  \
255             exit 1; } || :
256
257 sc_tight_scope:
258         $(MAKE) -C src $@
259
260 sc_trailing_blank:
261         @grep -n '[      ]$$' $$($(CVS_LIST_EXCEPT)) &&                 \
262           { echo '$(ME): found trailing blank(s)'                       \
263                 1>&2; exit 1; } || :
264
265 # Match lines like the following, but where there is only one space
266 # between the options and the description:
267 #   -D, --all-repeated[=delimit-method]  print all duplicate lines\n
268 longopt_re = --[a-z][0-9A-Za-z-]*(\[=[0-9A-Za-z-]*\])?
269 sc_two_space_separator_in_usage:
270         @grep -nE '^   *(-[A-Za-z],)? $(longopt_re) [^ ].*\\$$'         \
271             $$($(CVS_LIST_EXCEPT)) &&                                   \
272           { echo "$(ME): help2man requires at least two spaces between"; \
273             echo "$(ME): an option and its description"; \
274                 1>&2; exit 1; } || :
275
276 # Look for diagnostics that aren't marked for translation.
277 # This won't find any for which error's format string is on a separate line.
278 sc_unmarked_diagnostics:
279         @grep -nE                                                       \
280             '\<error \([^"]*"[^"]*[a-z]{3}' $$($(CVS_LIST_EXCEPT))      \
281           | grep -v '_''(' &&                                           \
282           { echo '$(ME): found unmarked diagnostic(s)' 1>&2;            \
283             exit 1; } || :
284
285 # Avoid useless parentheses like those in this example:
286 # #if defined (SYMBOL) || defined (SYM2)
287 sc_useless_cpp_parens:
288         @grep -n '^# *if .*defined *(' $$($(CVS_LIST_EXCEPT)) &&        \
289           { echo '$(ME): found useless parentheses in cpp directive'    \
290                 1>&2; exit 1; } || :
291
292 # Ensure that the c99-to-c89 patch applies cleanly.
293 # For now, it affects only remove.c.  Eventually, we'll probably
294 # have to copy all of src/ before running patch.
295 patch-check:
296         cp src/remove.c tmp-remove.c
297         patch -V never --fuzz=0 tmp-remove.c src/c99-to-c89.diff \
298           > $@.1 2>&1
299         sed -n '2p' $@.1 > $@.2
300         test -s $@.2 && exit 1 || :
301         rm -f tmp-remove.c $@.1 $@.2
302
303 # Ensure that date's --help output stays in sync with the info
304 # documentation for GNU strftime.  The only exception is %N,
305 # which date accepts but GNU strftime does not.
306 extract_char = sed 's/^[^%][^%]*%\(.\).*/\1/'
307 strftime-check:
308         if test -f $(srcdir)/src/date.c; then                           \
309           grep '^  %.  ' $(srcdir)/src/date.c | sort                    \
310             | $(extract_char) > $@-src;                                 \
311           { echo N;                                                     \
312             info libc date calendar format | grep '^    `%.'\'          \
313               | $(extract_char); } | sort > $@-info;                    \
314           diff -u $@-src $@-info || exit 1;                             \
315           rm -f $@-src $@-info;                                         \
316         fi
317
318 # Ensure that we use only the standard $(VAR) notation,
319 # not @...@ in Makefile.am, now that we can rely on automake
320 # to emit a definition for each substituted variable.
321 makefile-check:
322         grep -nE '@[A-Z_0-9]+@' `find . -name Makefile.am` \
323           && { echo 'Makefile.maint: use $$(...), not @...@' 1>&2; exit 1; } || :
324
325 news-date-check: NEWS
326         today=`date +%Y-%m-%d`; \
327         if head NEWS | grep '^\*.* $(VERSION_REGEXP) ('$$today')' \
328             >/dev/null; then \
329           :; \
330         else \
331           echo "version or today's date is not in NEWS" 1>&2; \
332           exit 1; \
333         fi
334
335 changelog-check:
336         if head ChangeLog | grep 'Version $(VERSION_REGEXP)\.$$' \
337             >/dev/null; then \
338           :; \
339         else \
340           echo "$(VERSION) not in ChangeLog" 1>&2; \
341           exit 1; \
342         fi
343
344 m4-check:
345         @grep -n 'AC_DEFUN([^[]' m4/*.m4 \
346           && { echo 'Makefile.maint: quote the first arg to AC_DEFUN' 1>&2; \
347                exit 1; } || :
348
349 # Verify that all source files using _() are listed in po/POTFILES.in.
350 # FIXME: don't hard-code file names below; use a more general mechanism.
351 po-check:
352         if test -f po/POTFILES.in; then                                 \
353           grep -E -v '^(#|$$)' po/POTFILES.in                           \
354             | grep -v '^src/false\.c$$' | sort > $@-1;                  \
355           files=;                                                       \
356           for file in $$($(CVS_LIST_EXCEPT)) lib/*.[ch]; do             \
357             case $$file in                                              \
358             djgpp/* | man/*) continue;;                                 \
359             esac;                                                       \
360             case $$file in                                              \
361             *.[ch])                                                     \
362               base=`expr " $$file" : ' \(.*\)\..'`;                     \
363               { test -f $$base.l || test -f $$base.y; } && continue;;   \
364             esac;                                                       \
365             files="$$files $$file";                                     \
366           done;                                                         \
367           grep -E -l '\bN?_\([^)"]*("|$$)' $$files | sort -u > $@-2;    \
368           diff -u $@-1 $@-2 || exit 1;                                  \
369           rm -f $@-1 $@-2;                                              \
370         fi
371
372 # In a definition of #define AUTHORS "... and ..." where the RHS contains
373 # the English word `and', the string must be marked with `N_ (...)' so that
374 # gettext recognizes it as a string requiring translation.
375 author_mark_check:
376         @grep -n '^# *define AUTHORS "[^"]* and ' src/*.c |grep -v ' N_ (' && \
377           { echo 'Makefile.maint: enclose the above strings in N_ (...)' 1>&2; \
378             exit 1; } || :
379
380 # Sometimes it is useful to change the PATH environment variable
381 # in Makefiles.  When doing so, it's better not to use the Unix-centric
382 # path separator of `:', but rather the automake-provided `@PATH_SEPARATOR@'.
383 # It'd be better to use `find -print0 ...|xargs -0 ...', but less portable,
384 # and there probably aren't many projects with so many Makefile.am files
385 # that we'd have to worry about limits on command line length.
386 msg = 'Makefile.maint: Do not use `:'\'' above; use @PATH_SEPARATOR@ instead'
387 makefile_path_separator_check:
388         @grep -n 'PATH=.*:' `find $(srcdir) -name Makefile.am` \
389           && { echo $(msg) 1>&2; exit 1; } || :
390
391 # Check that `make alpha' will not fail at the end of the process.
392 writable-files:
393         if test -d $(release_archive_dir); then :; else                 \
394           mkdir $(release_archive_dir);                                 \
395         fi
396         for file in $(distdir).tar.gz $(xd-delta)                       \
397                     $(release_archive_dir)/$(distdir).tar.gz            \
398                     $(release_archive_dir)/$(xd-delta); do              \
399           test -e $$file || continue;                                   \
400           test -w $$file                                                \
401             || { echo ERROR: $$file is not writable; fail=1; };         \
402         done;                                                           \
403         test "$$fail" && exit 1 || :
404
405 v_etc_file = lib/version-etc.c
406 # Make sure that the copyright date in $(v_etc_file) is up to date.
407 copyright-check:
408         @if test -f $(v_etc_file); then \
409           grep 'enum { COPYRIGHT_YEAR = '$$(date +%Y)' };' $(v_etc_file) \
410             >/dev/null \
411           || { echo 'out of date copyright in $(v_etc_file); update it' 1>&2; \
412                exit 1; }; \
413         fi
414
415
416 # Sanity checks with the CVS repository.
417 cvs-tag-check:
418         echo $(this-cvs-tag); \
419         if $(CVS) -n log -h README | grep -e $(this-cvs-tag): >/dev/null; then \
420           echo "$(this-cvs-tag) as already been used; not tagging" 1>&2; \
421           exit 1; \
422         else :; fi
423
424 cvs-diff-check:
425         if $(CVS) diff >cvs-diffs; then                         \
426           rm cvs-diffs;                                         \
427         else                                                    \
428           echo "Some files are locally modified:" 1>&2;         \
429           cat cvs-diffs;                                        \
430           exit 1;                                               \
431         fi
432
433 cvs-check: cvs-diff-check cvs-tag-check
434
435 maintainer-distcheck: changelog-check
436         $(MAKE) distcheck
437         $(MAKE) my-distcheck
438
439
440 # Tag before making distribution.  Also, don't make a distribution if
441 # checks fail.  Also, make sure the NEWS file is up-to-date.
442 # FIXME: use dist-hook/my-dist like distcheck-hook/my-distcheck.
443 cvs-dist: $(local-check) cvs-check maintainer-distcheck
444         $(CVS) update po
445         $(CVS) tag -c $(this-cvs-tag)
446         $(MAKE) dist
447
448 # Use this to make sure we don't run these programs when building
449 # from a virgin tgz file, below.
450 null_AM_MAKEFLAGS = \
451   ACLOCAL=false \
452   AUTOCONF=false \
453   AUTOMAKE=false \
454   AUTOHEADER=false \
455   MAKEINFO=false
456
457 # Detect format-string/arg-list mismatches that would normally be obscured
458 # by the use of _().  The --disable-nls effectively defines away that macro,
459 # and building with CFLAGS='-Wformat -Werror' causes any format warning to be
460 # treated as a failure.  Also, check for shadowing problems with -Wshadow.
461 # These CFLAGS are pretty strict.  If you build this target, you probably
462 # have to have a recent version of gcc and glibc headers.
463 TMPDIR ?= /tmp
464 t=$(TMPDIR)/$(PACKAGE)/test
465 my-distcheck: $(local-check) $(release_archive_dir)/$(prev-tgz)
466         -rm -rf $(t)
467         mkdir -p $(t)
468         GZIP=$(GZIP_ENV) $(AMTAR) -C $(t) -zxf $(distdir).tar.gz
469         cd $(t)/$(distdir)                              \
470           && ./configure --disable-nls                  \
471           && $(MAKE) CFLAGS='-Werror -Wall -Wformat -Wshadow' \
472               AM_MAKEFLAGS='$(null_AM_MAKEFLAGS)'       \
473           && $(MAKE) dvi                                \
474           && $(MAKE) check                              \
475           && $(MAKE) distclean
476         (cd $(t) && mv $(distdir) $(distdir).old        \
477           && $(AMTAR) -zxf - ) < $(distdir).tar.gz
478         diff -ur $(t)/$(distdir).old $(t)/$(distdir)
479         -rm -rf $(t)
480         @echo "========================"; \
481         echo "$(distdir).tar.gz is ready for distribution"; \
482         echo "========================"
483
484 WGET = wget
485 WGETFLAGS = -C off
486
487 rel-check:
488         tarz=/tmp/rel-check-tarz-$$$$; \
489         md5_tmp=/tmp/rel-check-md5-$$$$; \
490         set -e; \
491         trap 'status=$$?; rm -f $$tarz $$md5_tmp; exit $$status' 0 1 2 3 15; \
492         $(WGET) $(WGETFLAGS) -q --output-document=$$tarz $(url); \
493         echo "$(md5)  -" > $$md5_tmp; \
494         md5sum -c $$md5_tmp < $$tarz
495
496 prev-tgz = $(PACKAGE)-$(PREV_VERSION).tar.gz
497 xd-delta = $(PACKAGE)-$(PREV_VERSION)-$(VERSION).xdelta
498
499 rel-files = $(xd-delta) $(DIST_ARCHIVES)
500 announcement: NEWS ChangeLog $(rel-files)
501         @./announce-gen                                                 \
502             --release-type=$(RELEASE_TYPE)                              \
503             --package=$(PACKAGE)                                        \
504             --prev=$(PREV_VERSION)                                      \
505             --curr=$(VERSION)                                           \
506             --release-archive-directory=$(release_archive_dir)          \
507             --gpg-key-id=$(gpg_key_ID)                                  \
508             --news=NEWS                                                 \
509             $(addprefix --url-dir=, $(url_dir_list))                    \
510
511
512 ## ---------------- ##
513 ## Updating files.  ##
514 ## ---------------- ##
515
516 ftp-gnu = ftp://ftp.gnu.org/gnu
517 www-gnu = http://www.gnu.org
518
519 # Use mv, if you don't have/want move-if-change.
520 move_if_change ?= move-if-change
521
522
523 # --------------------- #
524 # Updating everything.  #
525 # --------------------- #
526
527 .PHONY: update
528 local_updates ?= wget-update cvs-update po-update
529 update: $(local_updates)
530
531
532 # ------------------- #
533 # Updating PO files.  #
534 # ------------------- #
535
536 po_repo = http://www.iro.umontreal.ca/contrib/po/maint/$(PACKAGE)
537 .PHONY: do-po-update po-update
538 do-po-update:
539         tmppo=/tmp/$(PACKAGE)-$(VERSION)-po &&\
540         rm -rf $$tmppo && \
541         mkdir $$tmppo && \
542         (cd $$tmppo && \
543           $(WGET) $(WGETFLAGS) -r -l1 -nd --no-parent -A '*.po' $(po_repo)) &&\
544         cp $$tmppo/*.po po
545         cd po && $(MAKE) update-po
546         $(MAKE) po-check
547
548 po-update:
549         if test -d "po"; then \
550           $(MAKE) do-po-update; \
551         fi
552
553 # -------------------------- #
554 # Updating GNU build tools.  #
555 # -------------------------- #
556
557 # The following pseudo table associates a local directory and a URL
558 # with each of the files that belongs to some other package and is
559 # regularly updated from the specified URL.
560 wget_files ?= \
561   $(srcdir)/build-aux/config.guess \
562   $(srcdir)/build-aux/config.sub \
563   $(srcdir)/build-aux/texinfo.tex \
564   $(srcdir)/src/ansi2knr.c
565
566 get-targets = $(patsubst %, get-%, $(wget_files))
567
568 config.guess-url_prefix = $(ftp-gnu)/build-aux/
569 config.sub-url_prefix = $(ftp-gnu)/build-aux/
570
571 ansi2knr.c-url_prefix = ftp://ftp.cs.wisc.edu/ghost/
572
573 texinfo.tex-url_prefix = $(ftp-gnu)/texinfo/
574
575 standards.texi-url_prefix = $(www-gnu)/prep/
576 make-stds.texi-url_prefix = $(standards.texi-url_prefix)
577
578 target = $(patsubst get-%, %, $@)
579 url = $($(notdir $(target))-url_prefix)$(notdir $(target))
580
581 .PHONY: $(get-targets)
582 $(get-targets):
583         $(WGET) $(WGETFLAGS) $(url) -O $(target).t \
584           && $(move_if_change) $(target).t $(target)
585
586 cvs_files ?= \
587   $(srcdir)/build-aux/depcomp \
588   $(srcdir)/build-aux/install-sh \
589   $(srcdir)/build-aux/missing \
590   $(srcdir)/build-aux/mkinstalldirs \
591   $(srcdir)/src/ansi2knr.c
592 automake_repo=:pserver:anoncvs:anoncvs@sources.redhat.com:/cvs/automake
593 .PHONY: wget-update
594 wget-update: $(get-targets)
595
596 .PHONY: cvs-update
597 cvs-update:
598         fail=;                                                          \
599         for f in $(cvs_files); do                                       \
600           test -f $$f || { echo "*** skipping $$f" 1>&2; continue; };   \
601           cvs diff $$f > /dev/null                                      \
602             || { echo "*** $$f is locally modified; skipping it" 1>&2;  \
603                  fail=yes; continue; };                                 \
604           file=$$(basename $$f);                                        \
605           echo checking out $$file...;                                  \
606           $(CVS) -d $(automake_repo) co -p automake/lib/$$file> $$f.t   \
607             && $(move_if_change) $$f.t $$f;                             \
608         done;                                                           \
609         test "$$fail" && exit 1
610
611 emit_upload_commands:
612         @echo =====================================
613         @echo =====================================
614         @echo "$(srcdir)/gnupload $(GNUPLOADFLAGS) \\"
615         @echo "    --to $(gnu_rel_host):coreutils \\"
616         @echo "  $(rel-files)"
617         @echo '# send the /tmp/announcement e-mail'
618         @echo =====================================
619         @echo =====================================
620
621 $(xd-delta): $(release_archive_dir)/$(prev-tgz) $(distdir).tar.gz
622         xdelta delta -9 $^ $@ || :
623
624 .PHONY: alpha beta major
625 alpha beta major: news-date-check $(local-check)
626         test $@ = major                                         \
627           && { echo $(VERSION) | grep -E '^[0-9]+(\.[0-9]+)+$$' \
628                || { echo "invalid version string: $(VERSION)" 1>&2; exit 1; }}\
629           || :
630         $(MAKE) cvs-dist
631         $(MAKE) $(xd-delta)
632         $(MAKE) -s announcement RELEASE_TYPE=$@ > /tmp/announce-$(my_distdir)
633         ln $(rel-files) $(release_archive_dir)
634         chmod a-w $(rel-files)
635         $(MAKE) -s emit_upload_commands RELEASE_TYPE=$@
636         echo $(VERSION) > $(prev_version_file)
637         $(CVS) ci -m. $(prev_version_file)