nice.c: avoid a cast
[platform/upstream/coreutils.git] / maint.mk
1 # -*-Makefile-*-
2 # This Makefile fragment tries to be general-purpose enough to be
3 # used by at least coreutils, idutils, CPPI, Bison, and Autoconf.
4
5 ## Copyright (C) 2001-2008 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 3 of the License, or
10 ## (at your option) 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, see <http://www.gnu.org/licenses/>.
19
20 # This is reported not to work with make-3.79.1
21 # ME := $(word $(words $(MAKEFILE_LIST)),$(MAKEFILE_LIST))
22 ME := maint.mk
23
24 # Do not save the original name or timestamp in the .tar.gz file.
25 # Use --rsyncable if available.
26 gzip_rsyncable := \
27   $(shell gzip --help 2>/dev/null|grep rsyncable >/dev/null && echo --rsyncable)
28 GZIP_ENV = '--no-name --best $(gzip_rsyncable)'
29
30 GIT = git
31 VC = $(GIT)
32 VC-tag = git tag -s -m '$(VERSION)'
33
34 VC_LIST = build-aux/vc-list-files
35
36 VC_LIST_EXCEPT = \
37   $(VC_LIST) | if test -f .x-$@; then grep -vEf .x-$@; else grep -v ChangeLog; fi
38
39 ifeq ($(origin prev_version_file), undefined)
40   prev_version_file = $(srcdir)/.prev-version
41 endif
42
43 PREV_VERSION := $(shell cat $(prev_version_file))
44 VERSION_REGEXP = $(subst .,\.,$(VERSION))
45 PREV_VERSION_REGEXP = $(subst .,\.,$(PREV_VERSION))
46
47 ifeq ($(VC),$(GIT))
48 this-vc-tag = v$(VERSION)
49 this-vc-tag-regexp = v$(VERSION_REGEXP)
50 else
51 tag-package = $(shell echo "$(PACKAGE)" | tr '[:lower:]' '[:upper:]')
52 tag-this-version = $(subst .,_,$(VERSION))
53 this-vc-tag = $(tag-package)-$(tag-this-version)
54 this-vc-tag-regexp = $(this-vc-tag)
55 endif
56 my_distdir = $(PACKAGE)-$(VERSION)
57
58 # Old releases are stored here.
59 release_archive_dir ?= ../release
60
61 # Prevent programs like 'sort' from considering distinct strings to be equal.
62 # Doing it here saves us from having to set LC_ALL elsewhere in this file.
63 export LC_ALL = C
64
65
66
67 ## --------------- ##
68 ## Sanity checks.  ##
69 ## --------------- ##
70
71 # Collect the names of rules starting with `sc_'.
72 syntax-check-rules := $(shell sed -n 's/^\(sc_[a-zA-Z0-9_-]*\):.*/\1/p' \
73                         $(srcdir)/$(ME))
74 .PHONY: $(syntax-check-rules)
75
76 local-checks-available = \
77   po-check copyright-check m4-check author_mark_check \
78   patch-check strftime-check $(syntax-check-rules) \
79   makefile_path_separator_check \
80   makefile-check check-AUTHORS
81 .PHONY: $(local-checks-available)
82
83 local-check := $(filter-out $(local-checks-to-skip), $(local-checks-available))
84
85 syntax-check: $(local-check)
86 #       @grep -nE '#  *include <(limits|std(def|arg|bool))\.h>'         \
87 #           $$(find -type f -name '*.[chly]') &&                        \
88 #         { echo '$(ME): found conditional include' 1>&2;               \
89 #           exit 1; } || :
90
91 #       grep -nE '^#  *include <(string|stdlib)\.h>'                    \
92 #           $(srcdir)/{lib,src}/*.[chy] &&                              \
93 #         { echo '$(ME): FIXME' 1>&2;                                   \
94 #           exit 1; } || :
95 # FIXME: don't allow `#include .strings\.h' anywhere
96
97 sc_avoid_if_before_free:
98         @$(srcdir)/build-aux/useless-if-before-free                     \
99                 $(useless_free_options)                                 \
100             $$($(VC_LIST_EXCEPT)) &&                                    \
101           { echo '$(ME): found useless "if" before "free" above' 1>&2;  \
102             exit 1; } || :
103
104 sc_cast_of_argument_to_free:
105         @grep -nE '\<free *\( *\(' $$($(VC_LIST_EXCEPT)) &&             \
106           { echo '$(ME): don'\''t cast free argument' 1>&2;             \
107             exit 1; } || :
108
109 sc_cast_of_x_alloc_return_value:
110         @grep -nE '\*\) *x(m|c|re)alloc\>' $$($(VC_LIST_EXCEPT)) &&     \
111           { echo '$(ME): don'\''t cast x*alloc return value' 1>&2;      \
112             exit 1; } || :
113
114 sc_cast_of_alloca_return_value:
115         @grep -nE '\*\) *alloca\>' $$($(VC_LIST_EXCEPT)) &&             \
116           { echo '$(ME): don'\''t cast alloca return value' 1>&2;       \
117             exit 1; } || :
118
119 sc_space_tab:
120         @grep -n '[ ]   ' $$($(VC_LIST_EXCEPT)) &&                      \
121           { echo '$(ME): found SPACE-TAB sequence; remove the SPACE'    \
122                 1>&2; exit 1; } || :
123
124 # Don't use *scanf or the old ato* functions in `real' code.
125 # They provide no error checking mechanism.
126 # Instead, use strto* functions.
127 sc_prohibit_atoi_atof:
128         @grep -nE '\<([fs]?scanf|ato([filq]|ll))\>' $$($(VC_LIST_EXCEPT)) && \
129           { echo '$(ME): do not use *scan''f, ato''f, ato''i, ato''l, ato''ll, ato''q, or ss''canf'     \
130                 1>&2; exit 1; } || :
131
132 # Use STREQ rather than comparing strcmp == 0, or != 0.
133 sc_prohibit_strcmp:
134         @grep -nE '! *str''cmp *\(|\<str''cmp *\([^)]+\) *=='           \
135             $$($(VC_LIST_EXCEPT)) &&                                    \
136           { echo '$(ME): use STREQ in place of the above uses of str''cmp' \
137                 1>&2; exit 1; } || :
138
139 # Using EXIT_SUCCESS as the first argument to error is misleading,
140 # since when that parameter is 0, error does not exit.  Use `0' instead.
141 sc_error_exit_success:
142         @grep -nF 'error (EXIT_SUCCESS,'                                \
143             $$(find -type f -name '*.[chly]') &&                        \
144           { echo '$(ME): found error (EXIT_SUCCESS' 1>&2;               \
145             exit 1; } || :
146
147 sc_file_system:
148         @grep -ni 'file''system' $$($(VC_LIST_EXCEPT)) &&               \
149           { echo '$(ME): found use of "file''system";'                  \
150             'rewrite to use "file system"' 1>&2;                        \
151             exit 1; } || :
152
153 # Don't use cpp tests of this symbol.  All code assumes config.h is included.
154 sc_no_have_config_h:
155         @grep -n '^# *if.*HAVE''_CONFIG_H' $$($(VC_LIST_EXCEPT)) &&     \
156           { echo '$(ME): found use of HAVE''_CONFIG_H; remove'          \
157                 1>&2; exit 1; } || :
158
159 # Nearly all .c files must include <config.h>.
160 sc_require_config_h:
161         @if $(VC_LIST_EXCEPT) | grep '\.c$$' > /dev/null; then          \
162           grep -L '^# *include <config\.h>'                             \
163                 $$($(VC_LIST_EXCEPT) | grep '\.c$$')                    \
164               | grep . &&                                               \
165           { echo '$(ME): the above files do not include <config.h>'     \
166                 1>&2; exit 1; } || :;                                   \
167         else :;                                                         \
168         fi
169
170 # To use this "command" macro, you must first define two shell variables:
171 # h: the header, enclosed in <> or ""
172 # re: a regular expression that matches IFF something provided by $h is used.
173 define _header_without_use
174   h_esc=`echo "$$h"|sed 's/\./\\./'`;                                   \
175   if $(VC_LIST_EXCEPT) | grep '\.c$$' > /dev/null; then                 \
176     files=$$(grep -l '^# *include '"$$h_esc"                            \
177              $$($(VC_LIST_EXCEPT) | grep '\.c$$')) &&                   \
178     grep -LE "$$re" $$files | grep . &&                                 \
179       { echo "$(ME): the above files include $$h but don't use it"      \
180         1>&2; exit 1; } || :;                                           \
181   else :;                                                               \
182   fi
183 endef
184
185 # Prohibit the inclusion of assert.h without an actual use of assert.
186 sc_prohibit_assert_without_use:
187         @h='<assert.h>' re='\<assert *\(' $(_header_without_use)
188
189 # Prohibit the inclusion of getopt.h without an actual use.
190 sc_prohibit_getopt_without_use:
191         @h='<getopt.h>' re='\<getopt(_long)? *\(' $(_header_without_use)
192
193 # Don't include quotearg.h unless you use one of its functions.
194 sc_prohibit_quotearg_without_use:
195         @h='"quotearg.h"' re='\<quotearg(_[^ ]+)? *\(' $(_header_without_use)
196
197 # Don't include quote.h unless you use one of its functions.
198 sc_prohibit_quote_without_use:
199         @h='"quote.h"' re='\<quote(_n)? *\(' $(_header_without_use)
200
201 # Don't include this header unless you use one of its functions.
202 sc_prohibit_long_options_without_use:
203         @h='"long-options.h"' re='\<parse_long_options *\(' \
204           $(_header_without_use)
205
206 # Don't include this header unless you use one of its functions.
207 sc_prohibit_inttostr_without_use:
208         @h='"inttostr.h"' re='\<(off|[iu]max|uint)tostr *\(' \
209           $(_header_without_use)
210
211 # Don't include this header unless you use one of its functions.
212 sc_prohibit_error_without_use:
213         @h='"error.h"' \
214         re='\<error(_at_line|_print_progname|_one_per_line|_message_count)? *\('\
215           $(_header_without_use)
216
217 sc_prohibit_safe_read_without_use:
218         @h='"safe-read.h"' re='(\<SAFE_READ_ERROR\>|\<safe_read *\()' \
219           $(_header_without_use)
220
221 sc_prohibit_argmatch_without_use:
222         @h='"argmatch.h"' \
223         re='(\<(ARRAY_CARDINALITY|X?ARGMATCH(|_TO_ARGUMENT|_VERIFY))\>|\<argmatch(_exit_fn|_(in)?valid) *\()' \
224           $(_header_without_use)
225
226 sc_prohibit_root_dev_ino_without_use:
227         @h='"root-dev-ino.h"' \
228         re='(\<ROOT_DEV_INO_(CHECK|WARN)\>|\<get_root_dev_ino *\()' \
229           $(_header_without_use)
230
231 sc_obsolete_symbols:
232         @grep -nE '\<(HAVE''_FCNTL_H|O''_NDELAY)\>'                     \
233              $$($(VC_LIST_EXCEPT)) &&                                   \
234           { echo '$(ME): do not use HAVE''_FCNTL_H or O''_NDELAY'       \
235                 1>&2; exit 1; } || :
236
237 # FIXME: warn about definitions of EXIT_FAILURE, EXIT_SUCCESS, STREQ
238
239 # Each nonempty line must start with a year number, or a TAB.
240 sc_changelog:
241         @grep -n '^[^12 ]' $$(find . -maxdepth 2 -name ChangeLog) &&    \
242           { echo '$(ME): found unexpected prefix in a ChangeLog' 1>&2;  \
243             exit 1; } || :
244
245 # Ensure that dd's definition of LONGEST_SYMBOL stays in sync
246 # with the strings from the two affected variables.
247 dd_c = $(srcdir)/src/dd.c
248 sc_dd_max_sym_length:
249 ifneq ($(wildcard $(dd_c)),)
250         @len=$$( (sed -n '/conversions\[\] =$$/,/^};/p' $(dd_c);\
251                  sed -n '/flags\[\] =$$/,/^};/p' $(dd_c) )      \
252                 |sed -n '/"/s/^[^"]*"\([^"]*\)".*/\1/p'         \
253               | wc --max-line-length);                          \
254         max=$$(sed -n '/^#define LONGEST_SYMBOL /s///p' $(dd_c) \
255               |tr -d '"' | wc --max-line-length);               \
256         if test "$$len" = "$$max"; then :; else                 \
257           echo 'dd.c: LONGEST_SYMBOL is not longest' 1>&2;      \
258           exit 1;                                               \
259         fi
260 endif
261
262 # Many m4 macros names once began with `jm_'.
263 # On 2004-04-13, they were all changed to start with gl_ instead.
264 # Make sure that none are inadvertently reintroduced.
265 sc_prohibit_jm_in_m4:
266         @grep -nE 'jm_[A-Z]'                                            \
267                 $$($(VC_LIST) m4 |grep '\.m4$$'; echo /dev/null) &&     \
268             { echo '$(ME): do not use jm_ in m4 macro names'            \
269               1>&2; exit 1; } || :
270
271 # Ensure that each root-requiring test is run via the "check-root" rule.
272 sc_root_tests:
273         @if test -d tests \
274               && grep check-root tests/Makefile.am>/dev/null 2>&1; then \
275         t1=sc-root.expected; t2=sc-root.actual;                         \
276         grep -nl '^require_root_$$'                                     \
277           $$($(VC_LIST) tests) |sed s,tests/,, |sort > $$t1;            \
278         sed -n '/^root_tests =[  ]*\\$$/,/[^\]$$/p'                     \
279           $(srcdir)/tests/Makefile.am                                   \
280             | sed 's/^  *//;/^root_tests =/d'                           \
281             | tr -s '\012\\' '  ' | fmt -1 | sort > $$t2;               \
282         diff -u $$t1 $$t2 || diff=1;                                    \
283         rm -f $$t1 $$t2;                                                \
284         test "$$diff"                                                   \
285           && { echo 'tests/Makefile.am: missing check-root action'>&2;  \
286                exit 1; } || :;                                          \
287         fi
288
289 headers_with_interesting_macro_defs = \
290   exit.h        \
291   fcntl_.h      \
292   fnmatch_.h    \
293   intprops.h    \
294   inttypes_.h   \
295   lchown.h      \
296   openat.h      \
297   stat-macros.h \
298   stdint_.h
299
300 # Create a list of regular expressions matching the names
301 # of macros that are guaranteed by parts of gnulib to be defined.
302 .re-defmac:
303         @(cd $(srcdir)/lib;                                             \
304           for f in $(headers_with_interesting_macro_defs); do           \
305             test -f $$f &&                                              \
306               sed -n '/^# *define \([^_ (][^ (]*\)[ (].*/s//\1/p' $$f;  \
307            done;                                                        \
308          ) | sort -u                                                    \
309            | grep -Ev 'ATTRIBUTE_NORETURN|SIZE_MAX'                     \
310            | sed 's/^/^# *define /'                                     \
311           > $@-t
312         @mv $@-t $@
313
314 # Don't define macros that we already get from gnulib header files.
315 sc_always_defined_macros: .re-defmac
316         @if test -f $(srcdir)/src/system.h; then                        \
317           trap 'rc=$$?; rm -f .re-defmac; exit $$rc' 0 1 2 3 15;        \
318           grep -f .re-defmac $$($(VC_LIST))                             \
319             && { echo '$(ME): define the above via some gnulib .h file' \
320                   1>&2;  exit 1; } || :;                                \
321         fi
322
323 # Create a list of regular expressions matching the names
324 # of files included from system.h.  Exclude a couple.
325 .re-list:
326         @sed -n '/^# *include /s///p' $(srcdir)/src/system.h \
327           | grep -Ev 'sys/(param|file)\.h' \
328           | sed 's/ .*//;;s/^["<]/^# *include [<"]/;s/\.h[">]$$/\\.h[">]/' \
329           > $@-t
330         @mv $@-t $@
331
332 # Files in src/ should not include directly any of
333 # the headers already included via system.h.
334 sc_system_h_headers: .re-list
335         @if test -f $(srcdir)/src/system.h; then                        \
336           trap 'rc=$$?; rm -f .re-list; exit $$rc' 0 1 2 3 15;          \
337           grep -nE -f .re-list                                          \
338               $$($(VC_LIST) src |                                       \
339                  grep -Ev '((copy|system)\.h|parse-gram\.c)$$')         \
340             && { echo '$(ME): the above are already included via system.h'\
341                   1>&2;  exit 1; } || :;                                \
342         fi
343
344 # Ensure that each .c file containing a "main" function also
345 # calls set_program_name.
346 sc_program_name:
347         @if $(VC_LIST_EXCEPT) | grep '\.c$$' > /dev/null; then          \
348           files=$$(grep -l '^main *(' $$($(VC_LIST_EXCEPT) | grep '\.c$$')); \
349           grep -LE 'set_program_name *\(m?argv\[0\]\);' $$files         \
350               | grep . &&                                               \
351           { echo '$(ME): the above files do not call set_program_name'  \
352                 1>&2; exit 1; } || :;                                   \
353         else :;                                                         \
354         fi
355
356 # Require that the final line of each test-lib.sh-using test be this one:
357 # (exit $fail); exit $fail
358 # Note: this test requires GNU grep's --label= option.
359 sc_require_test_exit_idiom:
360         @if test -f $(srcdir)/tests/test-lib.sh; then                   \
361           die=0;                                                        \
362           for i in $$(grep -l -F /../test-lib.sh $$($(VC_LIST) tests)); do \
363             tail -n1 $$i | grep '^(exit \$$fail); exit \$$fail$$' > /dev/null \
364               && : || { die=1; echo $$i; }                              \
365           done;                                                         \
366           test $$die = 1 &&                                             \
367             { echo 1>&2 '$(ME): the final line in each of the above is not:'; \
368               echo 1>&2 '(exit $$fail); exit $$fail';                   \
369               exit 1; } || :;                                           \
370         fi
371
372 sc_sun_os_names:
373         @grep -nEi \
374             'solaris[^[:alnum:]]*2\.(7|8|9|[1-9][0-9])|sunos[^[:alnum:]][6-9]' \
375             $$($(VC_LIST_EXCEPT)) &&                                    \
376           { echo '$(ME): found misuse of Sun OS version numbers' 1>&2;  \
377             exit 1; } || :
378
379 sc_the_the:
380         @grep -ni '\<the ''the\>' $$($(VC_LIST_EXCEPT)) &&              \
381           { echo '$(ME): found use of "the ''the";' 1>&2;               \
382             exit 1; } || :
383
384 sc_tight_scope:
385         $(MAKE) -C src $@
386
387 sc_trailing_blank:
388         @grep -n '[      ]$$' $$($(VC_LIST_EXCEPT)) &&                  \
389           { echo '$(ME): found trailing blank(s)'                       \
390                 1>&2; exit 1; } || :
391
392 # Match lines like the following, but where there is only one space
393 # between the options and the description:
394 #   -D, --all-repeated[=delimit-method]  print all duplicate lines\n
395 longopt_re = --[a-z][0-9A-Za-z-]*(\[?=[0-9A-Za-z-]*\]?)?
396 sc_two_space_separator_in_usage:
397         @grep -nE '^   *(-[A-Za-z],)? $(longopt_re) [^ ].*\\$$'         \
398             $$($(VC_LIST_EXCEPT)) &&                                    \
399           { echo "$(ME): help2man requires at least two spaces between"; \
400             echo "$(ME): an option and its description"; \
401                 1>&2; exit 1; } || :
402
403 # Look for diagnostics that aren't marked for translation.
404 # This won't find any for which error's format string is on a separate line.
405 sc_unmarked_diagnostics:
406         @grep -nE                                                       \
407             '\<error \([^"]*"[^"]*[a-z]{3}' $$($(VC_LIST_EXCEPT))       \
408           | grep -v '_''(' &&                                           \
409           { echo '$(ME): found unmarked diagnostic(s)' 1>&2;            \
410             exit 1; } || :
411
412 # Avoid useless parentheses like those in this example:
413 # #if defined (SYMBOL) || defined (SYM2)
414 sc_useless_cpp_parens:
415         @grep -n '^# *if .*defined *(' $$($(VC_LIST_EXCEPT)) &&         \
416           { echo '$(ME): found useless parentheses in cpp directive'    \
417                 1>&2; exit 1; } || :
418
419 # Require the latest GPL.
420 sc_GPL_version:
421         @grep -n 'either ''version [^3]' $$($(VC_LIST_EXCEPT)) &&       \
422           { echo '$(ME): GPL vN, N!=3' 1>&2; exit 1; } || :
423
424 exec_perl_re = \
425   exec \$$PERL -w -I\$$top_srcdir/tests -MCoreutils \
426     -M"CuTmpdir qw(\$$me)" -- - <<\\EOF
427 # Ensure that each test invoking $PERL with -MCoreutils uses the same line.
428 sc_perl_coreutils_test:
429         @if test -f $(srcdir)/tests/Coreutils.pm; then                  \
430           die=0;                                                        \
431           for i in $$(grep -l '^exec  *\$$PERL.*MCoreutils'             \
432                 $$($(VC_LIST) tests)); do                               \
433             grep '$(exec_perl_re)' $$i > /dev/null                      \
434               && : || { die=1; echo $$i; }                              \
435           done;                                                         \
436           test $$die = 1 &&                                             \
437             { echo 1>&2 '$(ME): each of the above execs PERL differently:'; \
438               echo 1>&2 '(exit $$fail); exit $$fail';                   \
439               exit 1; } || :;                                           \
440         fi
441
442 NEWS_hash = \
443   $$(sed -n '/^\*.* $(PREV_VERSION_REGEXP) ([0-9-]*)/,$$p' \
444      $(srcdir)/NEWS | md5sum -)
445
446 # Ensure that we don't accidentally insert an entry into an old NEWS block.
447 sc_immutable_NEWS:
448         @if test -f $(srcdir)/NEWS; then                                \
449           test "$(NEWS_hash)" = '$(old_NEWS_hash)' && : ||              \
450             { echo '$(ME): you have modified old NEWS' 1>&2; exit 1; }; \
451         fi
452
453 # Update the hash stored above.  Do this after each release and
454 # for any corrections to old entries.
455 update-NEWS-hash: NEWS
456         perl -pi -e 's/^(old_NEWS_hash = ).*/$${1}'"$(NEWS_hash)/" \
457           $(srcdir)/cfg.mk
458
459 epoch_date = 1970-01-01 00:00:00.000000000 +0000
460 # Ensure that the c99-to-c89 patch applies cleanly.
461 patch-check:
462         rm -rf src-c89 $@.1 $@.2
463         cp -a src src-c89
464         (cd src-c89; patch -p1 -V never --fuzz=0) < src/c99-to-c89.diff \
465           > $@.1 2>&1
466         if test "$(REGEN_PATCH)" = yes; then \
467           diff -upr src src-c89 | sed 's,src-c89/,src/,' \
468             | grep -vE '^(Only in|File )' \
469             | perl -pe 's/^((?:\+\+\+|---) \S+\t).*/$${1}$(epoch_date)/' \
470             > new-diff || : ; fi
471         grep -v '^patching file ' $@.1 > $@.2 || :
472         msg=ok; test -s $@.2 && msg='fuzzy patch' || : ;        \
473         rm -f src-c89/*.o || msg='rm failed';                   \
474         $(MAKE) -C src-c89 CFLAGS='-Wdeclaration-after-statement -Werror' \
475           || msg='compile failure with extra options';          \
476         test "$$msg" = ok && rm -rf src-c89 $@.1 $@.2 || echo "$$msg" 1>&2; \
477         test "$$msg" = ok
478
479 # Ensure that date's --help output stays in sync with the info
480 # documentation for GNU strftime.  The only exception is %N,
481 # which date accepts but GNU strftime does not.
482 extract_char = sed 's/^[^%][^%]*%\(.\).*/\1/'
483 strftime-check:
484         if test -f $(srcdir)/src/date.c; then                           \
485           grep '^  %.  ' $(srcdir)/src/date.c | sort                    \
486             | $(extract_char) > $@-src;                                 \
487           { echo N;                                                     \
488             info libc date calendar format | grep '^    `%.'\'          \
489               | $(extract_char); } | sort > $@-info;                    \
490           diff -u $@-src $@-info || exit 1;                             \
491           rm -f $@-src $@-info;                                         \
492         fi
493
494 check-AUTHORS:
495         $(MAKE) -C src $@
496
497 # Ensure that we use only the standard $(VAR) notation,
498 # not @...@ in Makefile.am, now that we can rely on automake
499 # to emit a definition for each substituted variable.
500 makefile-check:
501         grep -nE '@[A-Z_0-9]+@' `find . -name Makefile.am` \
502           && { echo '$(ME): use $$(...), not @...@' 1>&2; exit 1; } || :
503
504 news-date-check: NEWS
505         today=`date +%Y-%m-%d`;                                         \
506         if head NEWS | grep '^\*.* $(VERSION_REGEXP) ('$$today')'       \
507             >/dev/null; then                                            \
508           :;                                                            \
509         else                                                            \
510           echo "version or today's date is not in NEWS" 1>&2;           \
511           exit 1;                                                       \
512         fi
513
514 changelog-check:
515         if head ChangeLog | grep 'Version $(VERSION_REGEXP)\.$$'        \
516             >/dev/null; then                                            \
517           :;                                                            \
518         else                                                            \
519           echo "$(VERSION) not in ChangeLog" 1>&2;                      \
520           exit 1;                                                       \
521         fi
522
523 m4-check:
524         @grep -n 'AC_DEFUN([^[]' m4/*.m4 \
525           && { echo '$(ME): quote the first arg to AC_DEFUN' 1>&2; \
526                exit 1; } || :
527
528 # Verify that all source files using _() are listed in po/POTFILES.in.
529 # FIXME: don't hard-code file names below; use a more general mechanism.
530 po-check:
531         if test -f po/POTFILES.in; then                                 \
532           grep -E -v '^(#|$$)' po/POTFILES.in                           \
533             | grep -v '^src/false\.c$$' | sort > $@-1;                  \
534           files=;                                                       \
535           for file in $$($(VC_LIST_EXCEPT)) lib/*.[ch]; do              \
536             case $$file in                                              \
537             djgpp/* | man/*) continue;;                                 \
538             */c99-to-c89.diff) continue;;                               \
539             esac;                                                       \
540             case $$file in                                              \
541             *.[ch])                                                     \
542               base=`expr " $$file" : ' \(.*\)\..'`;                     \
543               { test -f $$base.l || test -f $$base.y; } && continue;;   \
544             esac;                                                       \
545             files="$$files $$file";                                     \
546           done;                                                         \
547           grep -E -l '\b(N?_|gettext *)\([^)"]*("|$$)' $$files          \
548             | sort -u > $@-2;                                           \
549           diff -u $@-1 $@-2 || exit 1;                                  \
550           rm -f $@-1 $@-2;                                              \
551         fi
552
553 # In a definition of #define AUTHORS "... and ..." where the RHS contains
554 # the English word `and', the string must be marked with `N_ (...)' so that
555 # gettext recognizes it as a string requiring translation.
556 author_mark_check:
557         @grep -n '^# *define AUTHORS "[^"]* and ' src/*.c |grep -v ' N_ (' && \
558           { echo '$(ME): enclose the above strings in N_ (...)' 1>&2; \
559             exit 1; } || :
560
561 # Sometimes it is useful to change the PATH environment variable
562 # in Makefiles.  When doing so, it's better not to use the Unix-centric
563 # path separator of `:', but rather the automake-provided `@PATH_SEPARATOR@'.
564 # It'd be better to use `find -print0 ...|xargs -0 ...', but less portable,
565 # and there probably aren't many projects with so many Makefile.am files
566 # that we'd have to worry about limits on command line length.
567 msg = '$(ME): Do not use `:'\'' above; use @PATH_SEPARATOR@ instead'
568 makefile_path_separator_check:
569         @grep -n 'PATH=.*:' `find $(srcdir) -name Makefile.am` \
570           && { echo $(msg) 1>&2; exit 1; } || :
571
572 # Check that `make alpha' will not fail at the end of the process.
573 writable-files:
574         if test -d $(release_archive_dir); then :; else                 \
575           for file in $(distdir).tar.gz                                 \
576                       $(release_archive_dir)/$(distdir).tar.gz; do      \
577             test -e $$file || continue;                                 \
578             test -w $$file                                              \
579               || { echo ERROR: $$file is not writable; fail=1; };       \
580           done;                                                         \
581           test "$$fail" && exit 1 || : ;                                \
582         fi
583
584 v_etc_file = lib/version-etc.c
585 sample-test = tests/sample-test
586 texi = doc/$(PACKAGE).texi
587 # Make sure that the copyright date in $(v_etc_file) is up to date.
588 # Do the same for the $(sample-test) and the main doc/.texi file.
589 copyright-check:
590         @if test -f $(v_etc_file); then \
591           grep 'enum { COPYRIGHT_YEAR = '$$(date +%Y)' };' $(v_etc_file) \
592             >/dev/null \
593           || { echo 'out of date copyright in $(v_etc_file); update it' 1>&2; \
594                exit 1; }; \
595         fi
596         @if test -f $(sample-test); then \
597           grep '# Copyright (C) '$$(date +%Y)' Free' $(sample-test) \
598             >/dev/null \
599           || { echo 'out of date copyright in $(sample-test); update it' 1>&2; \
600                exit 1; }; \
601         fi
602         @if test -f $(texi); then \
603           grep 'Copyright @copyright{} .*'$$(date +%Y)' Free' $(texi) \
604             >/dev/null \
605           || { echo 'out of date copyright in $(texi); update it' 1>&2; \
606                exit 1; }; \
607         fi
608
609 vc-diff-check:
610         $(VC) diff > vc-diffs || :
611         if test -s vc-diffs; then                               \
612           cat vc-diffs;                                         \
613           echo "Some files are locally modified:" 1>&2;         \
614           exit 1;                                               \
615         else                                                    \
616           rm vc-diffs;                                          \
617         fi
618
619 cvs-check: vc-diff-check
620
621 maintainer-distcheck:
622         $(MAKE) distcheck
623         $(MAKE) my-distcheck
624
625
626 # Don't make a distribution if checks fail.
627 # Also, make sure the NEWS file is up-to-date.
628 vc-dist: $(local-check) cvs-check maintainer-distcheck
629         $(MAKE) dist
630
631 # Use this to make sure we don't run these programs when building
632 # from a virgin tgz file, below.
633 null_AM_MAKEFLAGS = \
634   ACLOCAL=false \
635   AUTOCONF=false \
636   AUTOMAKE=false \
637   AUTOHEADER=false \
638   MAKEINFO=false
639
640 built_programs = $$(cd src && MAKEFLAGS= $(MAKE) -s built_programs.list)
641
642 warn_cflags = -Dlint -O -Werror -Wall -Wformat -Wshadow -Wpointer-arith
643 bin=bin-$$$$
644
645 write_loser = printf '\#!%s\necho $$0: bad path 1>&2; exit 1\n' '$(SHELL)'
646
647 TMPDIR ?= /tmp
648 t=$(TMPDIR)/$(PACKAGE)/test
649 pfx=$(t)/i
650
651 # Verify that a twisted use of --program-transform-name=PROGRAM works.
652 define install-transform-check
653   rm -rf $(pfx);                                        \
654   $(MAKE) program_transform_name='s/.*/zyx/'            \
655       prefix=$(pfx) install                             \
656     && test "$$(echo $(pfx)/bin/*)" = "$(pfx)/bin/zyx"  \
657     && test "$$(echo $(pfx)/share/man/man1/*)" =        \
658                     "$(pfx)/share/man/man1/zyx.1"
659 endef
660
661 # Install, then verify that all binaries and man pages are in place.
662 # Note that neither the binary, ginstall, nor the ].1 man page is installed.
663 define my-instcheck
664   $(MAKE) prefix=$(pfx) install                         \
665     && test ! -f $(pfx)/bin/ginstall                    \
666     && { fail=0;                                        \
667       for i in $(built_programs); do                    \
668         test "$$i" = ginstall && i=install;             \
669         for j in "$(pfx)/bin/$$i"                       \
670                  "$(pfx)/share/man/man1/$$i.1"; do      \
671           case $$j in *'[.1') continue;; esac;          \
672           test -f "$$j" && :                            \
673             || { echo "$$j not installed"; fail=1; };   \
674         done;                                           \
675       done;                                             \
676       test $$fail = 1 && exit 1 || :;                   \
677     }
678 endef
679
680 # Use -Wformat -Werror to detect format-string/arg-list mismatches.
681 # Also, check for shadowing problems with -Wshadow, and for pointer
682 # arithmetic problems with -Wpointer-arith.
683 # These CFLAGS are pretty strict.  If you build this target, you probably
684 # have to have a recent version of gcc and glibc headers.
685 # The hard-linking for-loop below ensures that there is a bin/ directory
686 # full of all of the programs under test (except the ones that are required
687 # for basic Makefile rules), all symlinked to the just-built "false" program.
688 # This is to ensure that if ever a test neglects to make PATH include
689 # the build srcdir, these always-failing programs will run.
690 # Otherwise, it is too easy to test the wrong programs.
691 # Note that "false" itself is a symlink to true, so it too will malfunction.
692 my-distcheck: $(DIST_ARCHIVES) $(local-check) check
693         -rm -rf $(t)
694         mkdir -p $(t)
695         GZIP=$(GZIP_ENV) $(AMTAR) -C $(t) -zxf $(distdir).tar.gz
696         cd $(t)/$(distdir)                              \
697           && ./configure --disable-nls                  \
698           && $(MAKE) CFLAGS='$(warn_cflags)'            \
699               AM_MAKEFLAGS='$(null_AM_MAKEFLAGS)'       \
700           && $(MAKE) dvi                                \
701           && $(install-transform-check)                 \
702           && $(my-instcheck)                            \
703           && mkdir $(bin)                               \
704           && ($(write_loser)) > $(bin)/loser            \
705           && chmod a+x $(bin)/loser                     \
706           && for i in $(built_programs); do             \
707                case $$i in                              \
708                  rm|expr|basename|echo|sort|ls|tr);;    \
709                  cat|dirname|mv|wc);;                   \
710                  *) ln $(bin)/loser $(bin)/$$i;;        \
711                esac;                                    \
712              done                                       \
713           && ln -sf ../src/true $(bin)/false            \
714           && PATH=`pwd`/$(bin):$$PATH $(MAKE) -C tests check \
715           && { test -d gnulib-tests                     \
716                  && $(MAKE) -C gnulib-tests check       \
717                  || :; }                                \
718           && rm -rf $(bin)                              \
719           && $(MAKE) distclean
720         (cd $(t) && mv $(distdir) $(distdir).old        \
721           && $(AMTAR) -zxf - ) < $(distdir).tar.gz
722         diff -ur $(t)/$(distdir).old $(t)/$(distdir)
723         if test -f $(srcdir)/src/c99-to-c89.diff; then                  \
724           cd $(t)/$(distdir)                                            \
725             && (cd src && patch -V never --fuzz=0 <c99-to-c89.diff)     \
726             && ./configure --disable-largefile                          \
727                  CFLAGS='-Werror -ansi -Wno-long-long'                  \
728             && $(MAKE);                                                 \
729         fi
730         -rm -rf $(t)
731         @echo "========================"; \
732         echo "$(distdir).tar.gz is ready for distribution"; \
733         echo "========================"
734
735 WGET = wget
736 WGETFLAGS = -C off
737
738 rel-check:
739         tarz=/tmp/rel-check-tarz-$$$$; \
740         md5_tmp=/tmp/rel-check-md5-$$$$; \
741         set -e; \
742         trap 'status=$$?; rm -f $$tarz $$md5_tmp; exit $$status' 0 1 2 3 15; \
743         $(WGET) $(WGETFLAGS) -q --output-document=$$tarz $(url); \
744         echo "$(md5)  -" > $$md5_tmp; \
745         md5sum -c $$md5_tmp < $$tarz
746
747 rel-files = $(DIST_ARCHIVES)
748
749 gnulib-version = $$(cd $(gnulib_dir) && git describe)
750
751 announcement: NEWS ChangeLog $(rel-files)
752         @./build-aux/announce-gen                                       \
753             --release-type=$(RELEASE_TYPE)                              \
754             --package=$(PACKAGE)                                        \
755             --prev=$(PREV_VERSION)                                      \
756             --curr=$(VERSION)                                           \
757             --gpg-key-id=$(gpg_key_ID)                                  \
758             --news=NEWS                                                 \
759             --bootstrap-tools=autoconf,automake,bison,gnulib            \
760             --gnulib-version=$(gnulib-version)                          \
761             $(addprefix --url-dir=, $(url_dir_list))
762
763 ## ---------------- ##
764 ## Updating files.  ##
765 ## ---------------- ##
766
767 ftp-gnu = ftp://ftp.gnu.org/gnu
768 www-gnu = http://www.gnu.org
769
770 # Use mv, if you don't have/want move-if-change.
771 move_if_change ?= move-if-change
772
773 emit_upload_commands:
774         @echo =====================================
775         @echo =====================================
776         @echo "$(srcdir)/build-aux/gnupload $(GNUPLOADFLAGS) \\"
777         @echo "    --to $(gnu_rel_host):$(PACKAGE) \\"
778         @echo "  $(rel-files)"
779         @echo '# send the /tmp/announcement e-mail'
780         @echo =====================================
781         @echo =====================================
782
783 noteworthy = * Noteworthy changes in release ?.? (????-??-??) [?]
784 define emit-commit-log
785   printf '%s\n' 'post-release administrivia' '' \
786     '* NEWS: Add header line for next release.' \
787     '* .prev-version: Record previous version.' \
788     '* cfg.mk (old_NEWS_hash): Auto-update.'
789 endef
790
791 .PHONY: alpha beta major
792 alpha beta major: $(local-check) writable-files
793         test $@ = major                                         \
794           && { echo $(VERSION) | grep -E '^[0-9]+(\.[0-9]+)+$$' \
795                || { echo "invalid version string: $(VERSION)" 1>&2; exit 1;};}\
796           || :
797         $(MAKE) vc-dist
798         $(MAKE) news-date-check
799         $(MAKE) -s announcement RELEASE_TYPE=$@ > /tmp/announce-$(my_distdir)
800         if test -d $(release_archive_dir); then                 \
801           ln $(rel-files) $(release_archive_dir);               \
802           chmod a-w $(rel-files);                               \
803         fi
804         $(MAKE) -s emit_upload_commands RELEASE_TYPE=$@
805         echo $(VERSION) > $(prev_version_file)
806         $(MAKE) update-NEWS-hash
807         perl -pi -e '$$. == 3 and print "$(noteworthy)\n\n\n"' NEWS
808         $(emit-commit-log) > .ci-msg
809         $(VC) commit -F .ci-msg