* Makefile.am (EXTRA_DIST): Remove these files here, too:
[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 2>/dev/null|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 check-AUTHORS
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_have_config_h:
144         @grep -n 'HAVE''_CONFIG_H' $$($(CVS_LIST_EXCEPT)) &&            \
145           { echo '$(ME): found use of HAVE''_CONFIG_H; remove'          \
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 patch-check:
287         rm -rf src-c89 $@.1 $@.2
288         cp -a src src-c89
289         (cd src-c89; patch -V never --fuzz=0) < src/c99-to-c89.diff \
290           > $@.1 2>&1
291         grep -v '^patching file ' $@.1 > $@.2 || :
292         fail=0; test -s $@.2 && fail=1 || : ; \
293         rm -rf src-c89 $@.1 $@.2; \
294         test $$fail = 0
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 check-AUTHORS:
312         $(MAKE) -C src $@
313
314 # Ensure that we use only the standard $(VAR) notation,
315 # not @...@ in Makefile.am, now that we can rely on automake
316 # to emit a definition for each substituted variable.
317 makefile-check:
318         grep -nE '@[A-Z_0-9]+@' `find . -name Makefile.am` \
319           && { echo 'Makefile.maint: use $$(...), not @...@' 1>&2; exit 1; } || :
320
321 news-date-check: NEWS
322         today=`date +%Y-%m-%d`; \
323         if head NEWS | grep '^\*.* $(VERSION_REGEXP) ('$$today')' \
324             >/dev/null; then \
325           :; \
326         else \
327           echo "version or today's date is not in NEWS" 1>&2; \
328           exit 1; \
329         fi
330
331 changelog-check:
332         if head ChangeLog | grep 'Version $(VERSION_REGEXP)\.$$' \
333             >/dev/null; then \
334           :; \
335         else \
336           echo "$(VERSION) not in ChangeLog" 1>&2; \
337           exit 1; \
338         fi
339
340 m4-check:
341         @grep -n 'AC_DEFUN([^[]' m4/*.m4 \
342           && { echo 'Makefile.maint: quote the first arg to AC_DEFUN' 1>&2; \
343                exit 1; } || :
344
345 # Verify that all source files using _() are listed in po/POTFILES.in.
346 # FIXME: don't hard-code file names below; use a more general mechanism.
347 po-check:
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_EXCEPT)) lib/*.[ch]; do             \
353             case $$file in                                              \
354             djgpp/* | man/*) continue;;                                 \
355             esac;                                                       \
356             case $$file in                                              \
357             *.[ch])                                                     \
358               base=`expr " $$file" : ' \(.*\)\..'`;                     \
359               { test -f $$base.l || test -f $$base.y; } && continue;;   \
360             esac;                                                       \
361             files="$$files $$file";                                     \
362           done;                                                         \
363           grep -E -l '\bN?_\([^)"]*("|$$)' $$files | sort -u > $@-2;    \
364           diff -u $@-1 $@-2 || exit 1;                                  \
365           rm -f $@-1 $@-2;                                              \
366         fi
367
368 # In a definition of #define AUTHORS "... and ..." where the RHS contains
369 # the English word `and', the string must be marked with `N_ (...)' so that
370 # gettext recognizes it as a string requiring translation.
371 author_mark_check:
372         @grep -n '^# *define AUTHORS "[^"]* and ' src/*.c |grep -v ' N_ (' && \
373           { echo 'Makefile.maint: enclose the above strings in N_ (...)' 1>&2; \
374             exit 1; } || :
375
376 # Sometimes it is useful to change the PATH environment variable
377 # in Makefiles.  When doing so, it's better not to use the Unix-centric
378 # path separator of `:', but rather the automake-provided `@PATH_SEPARATOR@'.
379 # It'd be better to use `find -print0 ...|xargs -0 ...', but less portable,
380 # and there probably aren't many projects with so many Makefile.am files
381 # that we'd have to worry about limits on command line length.
382 msg = 'Makefile.maint: Do not use `:'\'' above; use @PATH_SEPARATOR@ instead'
383 makefile_path_separator_check:
384         @grep -n 'PATH=.*:' `find $(srcdir) -name Makefile.am` \
385           && { echo $(msg) 1>&2; exit 1; } || :
386
387 # Check that `make alpha' will not fail at the end of the process.
388 writable-files:
389         if test -d $(release_archive_dir); then :; else                 \
390           mkdir $(release_archive_dir);                                 \
391         fi
392         for file in $(distdir).tar.gz $(xd-delta)                       \
393                     $(release_archive_dir)/$(distdir).tar.gz            \
394                     $(release_archive_dir)/$(xd-delta); do              \
395           test -e $$file || continue;                                   \
396           test -w $$file                                                \
397             || { echo ERROR: $$file is not writable; fail=1; };         \
398         done;                                                           \
399         test "$$fail" && exit 1 || :
400
401 v_etc_file = lib/version-etc.c
402 # Make sure that the copyright date in $(v_etc_file) is up to date.
403 copyright-check:
404         @if test -f $(v_etc_file); then \
405           grep 'enum { COPYRIGHT_YEAR = '$$(date +%Y)' };' $(v_etc_file) \
406             >/dev/null \
407           || { echo 'out of date copyright in $(v_etc_file); update it' 1>&2; \
408                exit 1; }; \
409         fi
410
411
412 # Sanity checks with the CVS repository.
413 cvs-tag-check:
414         echo $(this-cvs-tag); \
415         if $(CVS) -n log -h README | grep -e $(this-cvs-tag): >/dev/null; then \
416           echo "$(this-cvs-tag) as already been used; not tagging" 1>&2; \
417           exit 1; \
418         else :; fi
419
420 cvs-diff-check:
421         if $(CVS) diff >cvs-diffs; then                         \
422           rm cvs-diffs;                                         \
423         else                                                    \
424           echo "Some files are locally modified:" 1>&2;         \
425           cat cvs-diffs;                                        \
426           exit 1;                                               \
427         fi
428
429 cvs-check: cvs-diff-check cvs-tag-check
430
431 maintainer-distcheck:
432         $(MAKE) distcheck
433         $(MAKE) my-distcheck
434
435
436 # Tag before making distribution.  Also, don't make a distribution if
437 # checks fail.  Also, make sure the NEWS file is up-to-date.
438 # FIXME: use dist-hook/my-dist like distcheck-hook/my-distcheck.
439 cvs-dist: $(local-check) cvs-check maintainer-distcheck
440         $(CVS) update po
441         $(CVS) tag -c $(this-cvs-tag)
442         $(MAKE) dist
443
444 # Use this to make sure we don't run these programs when building
445 # from a virgin tgz file, below.
446 null_AM_MAKEFLAGS = \
447   ACLOCAL=false \
448   AUTOCONF=false \
449   AUTOMAKE=false \
450   AUTOHEADER=false \
451   MAKEINFO=false
452
453 # Detect format-string/arg-list mismatches that would normally be obscured
454 # by the use of _().  The --disable-nls effectively defines away that macro,
455 # and building with CFLAGS='-Wformat -Werror' causes any format warning to be
456 # treated as a failure.  Also, check for shadowing problems with -Wshadow,
457 # and for pointer arithmetic problems with -Wpointer-arith.
458 # These CFLAGS are pretty strict.  If you build this target, you probably
459 # have to have a recent version of gcc and glibc headers.
460 TMPDIR ?= /tmp
461 t=$(TMPDIR)/$(PACKAGE)/test
462 my-distcheck: $(local-check) $(release_archive_dir)/$(prev-tgz)
463         -rm -rf $(t)
464         mkdir -p $(t)
465         GZIP=$(GZIP_ENV) $(AMTAR) -C $(t) -zxf $(distdir).tar.gz
466         cd $(t)/$(distdir)                              \
467           && ./configure --disable-nls                  \
468           && $(MAKE) CFLAGS='-Werror -Wall -Wformat -Wshadow -Wpointer-arith' \
469               AM_MAKEFLAGS='$(null_AM_MAKEFLAGS)'       \
470           && $(MAKE) dvi                                \
471           && $(MAKE) check                              \
472           && $(MAKE) distclean
473         (cd $(t) && mv $(distdir) $(distdir).old        \
474           && $(AMTAR) -zxf - ) < $(distdir).tar.gz
475         diff -ur $(t)/$(distdir).old $(t)/$(distdir)
476         -rm -rf $(t)
477         @echo "========================"; \
478         echo "$(distdir).tar.gz is ready for distribution"; \
479         echo "========================"
480
481 WGET = wget
482 WGETFLAGS = -C off
483
484 rel-check:
485         tarz=/tmp/rel-check-tarz-$$$$; \
486         md5_tmp=/tmp/rel-check-md5-$$$$; \
487         set -e; \
488         trap 'status=$$?; rm -f $$tarz $$md5_tmp; exit $$status' 0 1 2 3 15; \
489         $(WGET) $(WGETFLAGS) -q --output-document=$$tarz $(url); \
490         echo "$(md5)  -" > $$md5_tmp; \
491         md5sum -c $$md5_tmp < $$tarz
492
493 prev-tgz = $(PACKAGE)-$(PREV_VERSION).tar.gz
494 xd-delta = $(PACKAGE)-$(PREV_VERSION)-$(VERSION).xdelta
495
496 rel-files = $(xd-delta) $(DIST_ARCHIVES)
497 announcement: NEWS ChangeLog $(rel-files)
498         @./announce-gen                                                 \
499             --release-type=$(RELEASE_TYPE)                              \
500             --package=$(PACKAGE)                                        \
501             --prev=$(PREV_VERSION)                                      \
502             --curr=$(VERSION)                                           \
503             --release-archive-directory=$(release_archive_dir)          \
504             --gpg-key-id=$(gpg_key_ID)                                  \
505             --news=NEWS                                                 \
506             $(addprefix --url-dir=, $(url_dir_list))                    \
507
508
509 ## ---------------- ##
510 ## Updating files.  ##
511 ## ---------------- ##
512
513 ftp-gnu = ftp://ftp.gnu.org/gnu
514 www-gnu = http://www.gnu.org
515
516 # Use mv, if you don't have/want move-if-change.
517 move_if_change ?= move-if-change
518
519
520 # --------------------- #
521 # Updating everything.  #
522 # --------------------- #
523
524 .PHONY: update
525 local_updates ?= wget-update cvs-update
526 update: $(local_updates)
527
528
529 # -------------------------- #
530 # Updating GNU build tools.  #
531 # -------------------------- #
532
533 # The following pseudo table associates a local directory and a URL
534 # with each of the files that belongs to some other package and is
535 # regularly updated from the specified URL.
536 wget_files ?= \
537   $(srcdir)/build-aux/config.guess \
538   $(srcdir)/build-aux/config.sub \
539   $(srcdir)/build-aux/texinfo.tex \
540   $(srcdir)/src/ansi2knr.c
541
542 get-targets = $(patsubst %, get-%, $(wget_files))
543
544 config.guess-url_prefix = $(ftp-gnu)/build-aux/
545 config.sub-url_prefix = $(ftp-gnu)/build-aux/
546
547 ansi2knr.c-url_prefix = ftp://ftp.cs.wisc.edu/ghost/
548
549 texinfo.tex-url_prefix = $(ftp-gnu)/texinfo/
550
551 standards.texi-url_prefix = $(www-gnu)/prep/
552 make-stds.texi-url_prefix = $(standards.texi-url_prefix)
553
554 target = $(patsubst get-%, %, $@)
555 url = $($(notdir $(target))-url_prefix)$(notdir $(target))
556
557 .PHONY: $(get-targets)
558 $(get-targets):
559         $(WGET) $(WGETFLAGS) $(url) -O $(target).t \
560           && $(move_if_change) $(target).t $(target)
561
562 cvs_files ?= \
563   $(srcdir)/build-aux/depcomp \
564   $(srcdir)/build-aux/install-sh \
565   $(srcdir)/build-aux/missing \
566   $(srcdir)/build-aux/mkinstalldirs \
567   $(srcdir)/src/ansi2knr.c
568 automake_repo=:pserver:anoncvs:anoncvs@sources.redhat.com:/cvs/automake
569 .PHONY: wget-update
570 wget-update: $(get-targets)
571
572 .PHONY: cvs-update
573 cvs-update:
574         fail=;                                                          \
575         for f in $(cvs_files); do                                       \
576           test -f $$f || { echo "*** skipping $$f" 1>&2; continue; };   \
577           cvs diff $$f > /dev/null                                      \
578             || { echo "*** $$f is locally modified; skipping it" 1>&2;  \
579                  fail=yes; continue; };                                 \
580           file=$$(basename $$f);                                        \
581           echo checking out $$file...;                                  \
582           $(CVS) -d $(automake_repo) co -p automake/lib/$$file> $$f.t   \
583             && $(move_if_change) $$f.t $$f;                             \
584         done;                                                           \
585         test "$$fail" && exit 1
586
587 emit_upload_commands:
588         @echo =====================================
589         @echo =====================================
590         @echo "$(srcdir)/build-aux/gnupload $(GNUPLOADFLAGS) \\"
591         @echo "    --to $(gnu_rel_host):coreutils \\"
592         @echo "  $(rel-files)"
593         @echo '# send the /tmp/announcement e-mail'
594         @echo =====================================
595         @echo =====================================
596
597 $(xd-delta): $(release_archive_dir)/$(prev-tgz) $(distdir).tar.gz
598         xdelta delta -9 $^ $@ || :
599
600 .PHONY: alpha beta major
601 alpha beta major: news-date-check changelog-check $(local-check)
602         test $@ = major                                         \
603           && { echo $(VERSION) | grep -E '^[0-9]+(\.[0-9]+)+$$' \
604                || { echo "invalid version string: $(VERSION)" 1>&2; exit 1;};}\
605           || :
606         $(MAKE) cvs-dist
607         $(MAKE) $(xd-delta)
608         $(MAKE) -s announcement RELEASE_TYPE=$@ > /tmp/announce-$(my_distdir)
609         ln $(rel-files) $(release_archive_dir)
610         chmod a-w $(rel-files)
611         $(MAKE) -s emit_upload_commands RELEASE_TYPE=$@
612         echo $(VERSION) > $(prev_version_file)
613         $(CVS) ci -m. $(prev_version_file)