maintainer-makefile: allow customization of NEWS entry format
[pspp] / top / maint.mk
1 # -*-Makefile-*-
2 # This Makefile fragment tries to be general-purpose enough to be
3 # used by many projects via the gnulib maintainer-makefile module.
4
5 ## Copyright (C) 2001-2009 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 # Override this in cfg.mk if you use a non-standard build-aux directory.
25 build_aux ?= $(srcdir)/build-aux
26
27 # Do not save the original name or timestamp in the .tar.gz file.
28 # Use --rsyncable if available.
29 gzip_rsyncable := \
30   $(shell gzip --help 2>/dev/null|grep rsyncable >/dev/null && echo --rsyncable)
31 GZIP_ENV = '--no-name --best $(gzip_rsyncable)'
32
33 # cfg.mk must define the gpg_key_ID used by this package.
34 GIT = git
35 VC = $(GIT)
36 VC-tag = git tag -s -m '$(VERSION)' -u '$(gpg_key_ID)'
37
38 VC_LIST = $(build_aux)/vc-list-files -C $(srcdir)
39
40 VC_LIST_EXCEPT = \
41   $(VC_LIST) | if test -f $(srcdir)/.x-$@; then grep -vEf $(srcdir)/.x-$@; \
42                else grep -Ev "$${VC_LIST_EXCEPT_DEFAULT-ChangeLog}"; fi
43
44 ifeq ($(origin prev_version_file), undefined)
45   prev_version_file = $(srcdir)/.prev-version
46 endif
47
48 PREV_VERSION := $(shell cat $(prev_version_file) 2>/dev/null)
49 VERSION_REGEXP = $(subst .,\.,$(VERSION))
50 PREV_VERSION_REGEXP = $(subst .,\.,$(PREV_VERSION))
51
52 ifeq ($(VC),$(GIT))
53 this-vc-tag = v$(VERSION)
54 this-vc-tag-regexp = v$(VERSION_REGEXP)
55 else
56 tag-package = $(shell echo "$(PACKAGE)" | tr '[:lower:]' '[:upper:]')
57 tag-this-version = $(subst .,_,$(VERSION))
58 this-vc-tag = $(tag-package)-$(tag-this-version)
59 this-vc-tag-regexp = $(this-vc-tag)
60 endif
61 my_distdir = $(PACKAGE)-$(VERSION)
62
63 # Old releases are stored here.
64 release_archive_dir ?= ../release
65
66 # Override gnu_rel_host and url_dir_list in cfg.mk if these are not right.
67 # Use alpha.gnu.org for alpha and beta releases.
68 # Use ftp.gnu.org for stable releases.
69 gnu_ftp_host-alpha = alpha.gnu.org
70 gnu_ftp_host-beta = alpha.gnu.org
71 gnu_ftp_host-stable = ftp.gnu.org
72 gnu_rel_host ?= $(gnu_ftp_host-$(RELEASE_TYPE))
73
74 ifeq ($(gnu_rel_host),ftp.gnu.org)
75 url_dir_list ?= http://ftpmirror.gnu.org/$(PACKAGE)
76 else
77 url_dir_list ?= ftp://$(gnu_rel_host)/gnu/$(PACKAGE)
78 endif
79
80 # Override this in cfg.mk if you are using a different format in your
81 # NEWS file.
82 news-date-regexp ?= '^\*.* $(VERSION_REGEXP) ('$$today')'
83
84 # Prevent programs like 'sort' from considering distinct strings to be equal.
85 # Doing it here saves us from having to set LC_ALL elsewhere in this file.
86 export LC_ALL = C
87
88 ## --------------- ##
89 ## Sanity checks.  ##
90 ## --------------- ##
91
92 _cfg_mk := $(shell test -f $(srcdir)/cfg.mk && echo '$(srcdir)/cfg.mk')
93
94 # Collect the names of rules starting with `sc_'.
95 syntax-check-rules := $(sort $(shell sed -n 's/^\(sc_[a-zA-Z0-9_-]*\):.*/\1/p' \
96                         $(srcdir)/$(ME) $(_cfg_mk)))
97 .PHONY: $(syntax-check-rules)
98
99 local-checks-available = \
100   $(syntax-check-rules)
101 .PHONY: $(local-checks-available)
102
103 # Arrange to print the name of each syntax-checking rule just before running it.
104 $(syntax-check-rules): %: %.m
105 $(patsubst %, %.m, $(syntax-check-rules)):
106         @echo $(patsubst sc_%.m, %, $@)
107
108 local-check := $(filter-out $(local-checks-to-skip), $(local-checks-available))
109
110 syntax-check: $(local-check)
111 #       @grep -nE '#  *include <(limits|std(def|arg|bool))\.h>'         \
112 #           $$(find -type f -name '*.[chly]') &&                        \
113 #         { echo '$(ME): found conditional include' 1>&2;               \
114 #           exit 1; } || :
115
116 #       grep -nE '^#  *include <(string|stdlib)\.h>'                    \
117 #           $(srcdir)/{lib,src}/*.[chy] &&                              \
118 #         { echo '$(ME): FIXME' 1>&2;                                   \
119 #           exit 1; } || :
120 # FIXME: don't allow `#include .strings\.h' anywhere
121
122 # By default, _prohibit_regexp does not ignore case.
123 export ignore_case =
124 _ignore_case = $$(test -n "$$ignore_case" && echo -i || :)
125
126 # There are many rules below that prohibit constructs in this package.
127 # If the offending construct can be matched with a grep-E-style regexp,
128 # use this macro.  The shell variables "re" and "msg" must be defined.
129 define _prohibit_regexp
130   dummy=; : so we do not need a semicolon before each use;              \
131   test "x$$re" != x || { echo '$(ME): re not defined' 1>&2; exit 1; };  \
132   test "x$$msg" != x || { echo '$(ME): msg not defined' 1>&2; exit 1; };\
133   grep $(_ignore_case) -nE "$$re" $$($(VC_LIST_EXCEPT)) &&              \
134     { echo '$(ME): '"$$msg" 1>&2; exit 1; } || :
135 endef
136
137 sc_avoid_if_before_free:
138         @$(build_aux)/useless-if-before-free                            \
139                 $(useless_free_options)                                 \
140             $$($(VC_LIST_EXCEPT) | grep -v useless-if-before-free) &&   \
141           { echo '$(ME): found useless "if" before "free" above' 1>&2;  \
142             exit 1; } || :
143
144 sc_cast_of_argument_to_free:
145         @re='\<free *\( *\(' msg='don'\''t cast free argument'          \
146           $(_prohibit_regexp)
147
148 sc_cast_of_x_alloc_return_value:
149         @re='\*\) *x(m|c|re)alloc\>'                                    \
150         msg='don'\''t cast x*alloc return value'                        \
151           $(_prohibit_regexp)
152
153 sc_cast_of_alloca_return_value:
154         @re='\*\) *alloca\>' msg='don'\''t cast alloca return value'    \
155           $(_prohibit_regexp)
156
157 sc_space_tab:
158         @re='[ ]        ' msg='found SPACE-TAB sequence; remove the SPACE' \
159           $(_prohibit_regexp)
160
161 # Don't use *scanf or the old ato* functions in `real' code.
162 # They provide no error checking mechanism.
163 # Instead, use strto* functions.
164 sc_prohibit_atoi_atof:
165         @re='\<([fs]?scanf|ato([filq]|ll)) *\('                         \
166         msg='do not use *scan''f, ato''f, ato''i, ato''l, ato''ll or ato''q' \
167           $(_prohibit_regexp)
168
169 # Use STREQ rather than comparing strcmp == 0, or != 0.
170 sc_prohibit_strcmp:
171         @grep -nE '! *str''cmp *\(|\<str''cmp *\([^)]+\) *=='           \
172             $$($(VC_LIST_EXCEPT))                                       \
173           | grep -vE ':# *define STREQ\(' &&                            \
174           { echo '$(ME): use STREQ in place of the above uses of str''cmp' \
175                 1>&2; exit 1; } || :
176
177 # Pass EXIT_*, not number, to usage, exit, and error (when exiting)
178 # Convert all uses automatically, via these two commands:
179 # git grep -l '\<exit *(1)' \
180 #  | grep -vEf .x-sc_prohibit_magic_number_exit \
181 #  | xargs --no-run-if-empty \
182 #      perl -pi -e 's/(^|[^.])\b(exit ?)\(1\)/$1$2(EXIT_FAILURE)/'
183 # git grep -l '\<exit *(0)' \
184 #  | grep -vEf .x-sc_prohibit_magic_number_exit \
185 #  | xargs --no-run-if-empty \
186 #      perl -pi -e 's/(^|[^.])\b(exit ?)\(0\)/$1$2(EXIT_SUCCESS)/'
187 sc_prohibit_magic_number_exit:
188         @re='(^|[^.])\<(usage|exit) ?\([0-9]|\<error ?\([1-9][0-9]*,'   \
189         msg='use EXIT_* values rather than magic number'                \
190           $(_prohibit_regexp)
191
192 # Using EXIT_SUCCESS as the first argument to error is misleading,
193 # since when that parameter is 0, error does not exit.  Use `0' instead.
194 sc_error_exit_success:
195         @grep -nE 'error \(EXIT_SUCCESS,'                               \
196             $$($(VC_LIST_EXCEPT) | grep -E '\.[chly]$$') &&             \
197           { echo '$(ME): found error (EXIT_SUCCESS' 1>&2; exit 1; } || :
198
199 # `FATAL:' should be fully upper-cased in error messages
200 # `WARNING:' should be fully upper-cased, or fully lower-cased
201 sc_error_message_warn_fatal:
202         @grep -nEA2 '[^rp]error \(' $$($(VC_LIST_EXCEPT))               \
203             | grep -E '"Warning|"Fatal|"fatal' &&                       \
204           { echo '$(ME): use FATAL, WARNING or warning' 1>&2;           \
205             exit 1; } || :
206
207 # Error messages should not start with a capital letter
208 sc_error_message_uppercase:
209         @grep -nEA2 '[^rp]error \(' $$($(VC_LIST_EXCEPT))               \
210             | grep -E '"[A-Z]'                                          \
211             | grep -vE '"FATAL|"WARNING|"Java|"C#|PRIuMAX' &&           \
212           { echo '$(ME): found capitalized error message' 1>&2;         \
213             exit 1; } || :
214
215 # Error messages should not end with a period
216 sc_error_message_period:
217         @grep -nEA2 '[^rp]error \(' $$($(VC_LIST_EXCEPT))               \
218             | grep -E '[^."]\."' &&                                     \
219           { echo '$(ME): found error message ending in period' 1>&2;    \
220             exit 1; } || :
221
222 sc_file_system:
223         @re=file''system ignore_case=1                                  \
224         msg='found use of "file''system"; spell it "file system"'       \
225           $(_prohibit_regexp)
226
227 # Don't use cpp tests of this symbol.  All code assumes config.h is included.
228 sc_prohibit_have_config_h:
229         @grep -n '^# *if.*HAVE''_CONFIG_H' $$($(VC_LIST_EXCEPT)) &&     \
230           { echo '$(ME): found use of HAVE''_CONFIG_H; remove'          \
231                 1>&2; exit 1; } || :
232
233 # Nearly all .c files must include <config.h>.  However, we also permit this
234 # via inclusion of a package-specific header, if cfg.mk specified one.
235 # config_h_header must be suitable for grep -E.
236 config_h_header ?= <config\.h>
237 sc_require_config_h:
238         @if $(VC_LIST_EXCEPT) | grep -l '\.c$$' > /dev/null; then       \
239           grep -EL '^# *include $(config_h_header)'                     \
240                 $$($(VC_LIST_EXCEPT) | grep '\.c$$')                    \
241               | grep . &&                                               \
242           { echo '$(ME): the above files do not include <config.h>'     \
243                 1>&2; exit 1; } || :;                                   \
244         else :;                                                         \
245         fi
246
247 # You must include <config.h> before including any other header file.
248 # This can possibly be via a package-specific header, if given by cfg.mk.
249 sc_require_config_h_first:
250         @if $(VC_LIST_EXCEPT) | grep -l '\.c$$' > /dev/null; then       \
251           fail=0;                                                       \
252           for i in $$($(VC_LIST_EXCEPT) | grep '\.c$$'); do             \
253             grep '^# *include\>' $$i | sed 1q                           \
254                 | grep -E '^# *include $(config_h_header)' > /dev/null  \
255               || { echo $$i; fail=1; };                                 \
256           done;                                                         \
257           test $$fail = 1 &&                                            \
258             { echo '$(ME): the above files include some other header'   \
259                 'before <config.h>' 1>&2; exit 1; } || :;               \
260         else :;                                                         \
261         fi
262
263 sc_prohibit_HAVE_MBRTOWC:
264         @re='\bHAVE_MBRTOWC\b' msg="do not use $$re; it is always defined" \
265           $(_prohibit_regexp)
266
267 # To use this "command" macro, you must first define two shell variables:
268 # h: the header, enclosed in <> or ""
269 # re: a regular expression that matches IFF something provided by $h is used.
270 define _header_without_use
271   dummy=; : so we do not need a semicolon before each use;              \
272   h_esc=`echo "$$h"|sed 's/\./\\\\./g'`;                                \
273   if $(VC_LIST_EXCEPT) | grep -l '\.c$$' > /dev/null; then              \
274     files=$$(grep -l '^# *include '"$$h_esc"                            \
275              $$($(VC_LIST_EXCEPT) | grep '\.c$$')) &&                   \
276     grep -LE "$$re" $$files | grep . &&                                 \
277       { echo "$(ME): the above files include $$h but don't use it"      \
278         1>&2; exit 1; } || :;                                           \
279   else :;                                                               \
280   fi
281 endef
282
283 # Prohibit the inclusion of assert.h without an actual use of assert.
284 sc_prohibit_assert_without_use:
285         @h='<assert.h>' re='\<assert *\(' $(_header_without_use)
286
287 # Prohibit the inclusion of close-stream.h without an actual use.
288 sc_prohibit_close_stream_without_use:
289         @h='"close-stream.h"' re='\<close_stream *\(' $(_header_without_use)
290
291 # Prohibit the inclusion of getopt.h without an actual use.
292 sc_prohibit_getopt_without_use:
293         @h='<getopt.h>' re='\<getopt(_long)? *\(' $(_header_without_use)
294
295 # Don't include quotearg.h unless you use one of its functions.
296 sc_prohibit_quotearg_without_use:
297         @h='"quotearg.h"' re='\<quotearg(_[^ ]+)? *\(' $(_header_without_use)
298
299 # Don't include quote.h unless you use one of its functions.
300 sc_prohibit_quote_without_use:
301         @h='"quote.h"' re='\<quote(_n)? *\(' $(_header_without_use)
302
303 # Don't include this header unless you use one of its functions.
304 sc_prohibit_long_options_without_use:
305         @h='"long-options.h"' re='\<parse_long_options *\(' \
306           $(_header_without_use)
307
308 # Don't include this header unless you use one of its functions.
309 sc_prohibit_inttostr_without_use:
310         @h='"inttostr.h"' re='\<(off|[iu]max|uint)tostr *\(' \
311           $(_header_without_use)
312
313 # Don't include this header unless you use one of its functions.
314 sc_prohibit_error_without_use:
315         @h='"error.h"' \
316         re='\<error(_at_line|_print_progname|_one_per_line|_message_count)? *\('\
317           $(_header_without_use)
318
319 # Don't include xalloc.h unless you use one of its functions.
320 # Consider these symbols:
321 # perl -lne '/^# *define (\w+)\(/ and print $1' lib/xalloc.h|grep -v '^__';
322 # perl -lne '/^(?:extern )?(?:void|char) \*?(\w+) \(/ and print $1' lib/xalloc.h
323 # Divide into two sets on case, and filter each through this:
324 # | sort | perl -MRegexp::Assemble -le \
325 #  'print Regexp::Assemble->new(file => "/dev/stdin")->as_string'|sed 's/\?://g'
326 # Note this was produced by the above:
327 # _xa1 = x(alloc_(oversized|die)|([cz]|2?re)alloc|m(alloc|emdup)|strdup)
328 # But we can do better:
329 _xa1 = x(alloc_(oversized|die)|([cmz]|2?re)alloc|(mem|str)dup)
330 _xa2 = X([CZ]|N?M)ALLOC
331 sc_prohibit_xalloc_without_use:
332         @h='"xalloc.h"' \
333         re='\<($(_xa1)|$(_xa2)) *\('\
334           $(_header_without_use)
335
336 sc_prohibit_safe_read_without_use:
337         @h='"safe-read.h"' re='(\<SAFE_READ_ERROR\>|\<safe_read *\()' \
338           $(_header_without_use)
339
340 sc_prohibit_argmatch_without_use:
341         @h='"argmatch.h"' \
342         re='(\<(ARRAY_CARDINALITY|X?ARGMATCH(|_TO_ARGUMENT|_VERIFY))\>|\<argmatch(_exit_fn|_(in)?valid) *\()' \
343           $(_header_without_use)
344
345 sc_prohibit_canonicalize_without_use:
346         @h='"canonicalize.h"' \
347         re='CAN_(EXISTING|ALL_BUT_LAST|MISSING)|canonicalize_(mode_t|filename_mode)' \
348           $(_header_without_use)
349
350 sc_prohibit_root_dev_ino_without_use:
351         @h='"root-dev-ino.h"' \
352         re='(\<ROOT_DEV_INO_(CHECK|WARN)\>|\<get_root_dev_ino *\()' \
353           $(_header_without_use)
354
355 sc_prohibit_openat_without_use:
356         @h='"openat.h"' \
357         re='\<(openat_(permissive|needs_fchdir|(save|restore)_fail)|l?(stat|ch(own|mod))at|(euid)?accessat)\>' \
358           $(_header_without_use)
359
360 # Prohibit the inclusion of c-ctype.h without an actual use.
361 ctype_re = isalnum|isalpha|isascii|isblank|iscntrl|isdigit|isgraph|islower\
362 |isprint|ispunct|isspace|isupper|isxdigit|tolower|toupper
363 sc_prohibit_c_ctype_without_use:
364         @h='[<"]c-ctype.h[">]' re='\<c_($(ctype_re)) *\(' $(_header_without_use)
365
366 _empty =
367 _sp = $(_empty) $(_empty)
368 # The following list was generated by running:
369 # man signal.h|col -b|perl -ne '/bsd_signal.*;/.../sigwaitinfo.*;/ and print' \
370 #   | perl -lne '/^\s+(?:int|void).*?(\w+).*/ and print $1' | fmt
371 _sig_functions = \
372   bsd_signal kill killpg pthread_kill pthread_sigmask raise sigaction \
373   sigaddset sigaltstack sigdelset sigemptyset sigfillset sighold sigignore \
374   siginterrupt sigismember signal sigpause sigpending sigprocmask sigqueue \
375   sigrelse sigset sigsuspend sigtimedwait sigwait sigwaitinfo
376 _sig_function_re = $(subst $(_sp),|,$(strip $(_sig_functions)))
377 # The following were extracted from "man signal.h" manually.
378 _sig_types_and_consts =                                                 \
379   MINSIGSTKSZ SA_NOCLDSTOP SA_NOCLDWAIT SA_NODEFER SA_ONSTACK           \
380   SA_RESETHAND SA_RESTART SA_SIGINFO SIGEV_NONE SIGEV_SIGNAL            \
381   SIGEV_THREAD SIGSTKSZ SIG_BLOCK SIG_SETMASK SIG_UNBLOCK SS_DISABLE    \
382   SS_ONSTACK mcontext_t pid_t sig_atomic_t sigevent siginfo_t sigset_t  \
383   sigstack sigval stack_t ucontext_t
384 # generated via this:
385 # perl -lne '/^#ifdef (SIG\w+)/ and print $1' lib/sig2str.c|sort -u|fmt -70
386 _sig_names =                                                            \
387   SIGABRT SIGALRM SIGALRM1 SIGBUS SIGCANCEL SIGCHLD SIGCLD SIGCONT      \
388   SIGDANGER SIGDIL SIGEMT SIGFPE SIGFREEZE SIGGRANT SIGHUP SIGILL       \
389   SIGINFO SIGINT SIGIO SIGIOT SIGKAP SIGKILL SIGKILLTHR SIGLOST SIGLWP  \
390   SIGMIGRATE SIGMSG SIGPHONE SIGPIPE SIGPOLL SIGPRE SIGPROF SIGPWR      \
391   SIGQUIT SIGRETRACT SIGSAK SIGSEGV SIGSOUND SIGSTKFLT SIGSTOP SIGSYS   \
392   SIGTERM SIGTHAW SIGTRAP SIGTSTP SIGTTIN SIGTTOU SIGURG SIGUSR1        \
393   SIGUSR2 SIGVIRT SIGVTALRM SIGWAITING SIGWINCH SIGWIND SIGWINDOW       \
394   SIGXCPU SIGXFSZ
395 _sig_syms_re = $(subst $(_sp),|,$(strip $(_sig_names) $(_sig_types_and_consts)))
396
397 # Prohibit the inclusion of signal.h without an actual use.
398 sc_prohibit_signal_without_use:
399         @h='<signal.h>'                                                 \
400         re='\<($(_sig_function_re)) *\(|\<($(_sig_syms_re))\>'          \
401           $(_header_without_use)
402
403 sc_obsolete_symbols:
404         @re='\<(HAVE''_FCNTL_H|O''_NDELAY)\>'                           \
405         msg='do not use HAVE''_FCNTL_H or O'_NDELAY                     \
406           $(_prohibit_regexp)
407
408 # FIXME: warn about definitions of EXIT_FAILURE, EXIT_SUCCESS, STREQ
409
410 # Each nonempty ChangeLog line must start with a year number, or a TAB.
411 sc_changelog:
412         @if $(VC_LIST_EXCEPT) | grep -l '^ChangeLog$$' >/dev/null; then \
413           grep -n '^[^12        ]'                                      \
414             $$($(VC_LIST_EXCEPT) | grep '^ChangeLog$$') &&              \
415           { echo '$(ME): found unexpected prefix in a ChangeLog' 1>&2;  \
416             exit 1; } || :;                                             \
417         fi
418
419 # Ensure that each .c file containing a "main" function also
420 # calls set_program_name.
421 sc_program_name:
422         @if $(VC_LIST_EXCEPT) | grep -l '\.c$$' > /dev/null; then       \
423           files=$$(grep -l '^main *(' $$($(VC_LIST_EXCEPT) | grep '\.c$$')); \
424           grep -LE 'set_program_name *\(m?argv\[0\]\);' $$files         \
425               | grep . &&                                               \
426           { echo '$(ME): the above files do not call set_program_name'  \
427                 1>&2; exit 1; } || :;                                   \
428         else :;                                                         \
429         fi
430
431 # Require that the final line of each test-lib.sh-using test be this one:
432 # Exit $fail
433 # Note: this test requires GNU grep's --label= option.
434 Exit_witness_file ?= tests/test-lib.sh
435 Exit_base := $(notdir $(Exit_witness_file))
436 sc_require_test_exit_idiom:
437         @if test -f $(srcdir)/$(Exit_witness_file); then                \
438           die=0;                                                        \
439           for i in $$(grep -l -F 'srcdir/$(Exit_base)'                  \
440                 $$($(VC_LIST) tests)); do                               \
441             tail -n1 $$i | grep '^Exit .' > /dev/null                   \
442               && : || { die=1; echo $$i; }                              \
443           done;                                                         \
444           test $$die = 1 &&                                             \
445             { echo 1>&2 '$(ME): the final line in each of the above is not:'; \
446               echo 1>&2 'Exit something';                               \
447               exit 1; } || :;                                           \
448         fi
449
450 sc_the_the:
451         @re='\<the ''the\>'                                             \
452         ignore_case=1 msg='found use of "the ''the";'                   \
453           $(_prohibit_regexp)
454
455 sc_trailing_blank:
456         @re='[   ]$$'                                                   \
457         msg='found trailing blank(s)'                                   \
458           $(_prohibit_regexp)
459
460 # Match lines like the following, but where there is only one space
461 # between the options and the description:
462 #   -D, --all-repeated[=delimit-method]  print all duplicate lines\n
463 longopt_re = --[a-z][0-9A-Za-z-]*(\[?=[0-9A-Za-z-]*\]?)?
464 sc_two_space_separator_in_usage:
465         @grep -nE '^   *(-[A-Za-z],)? $(longopt_re) [^ ].*\\$$'         \
466             $$($(VC_LIST_EXCEPT)) &&                                    \
467           { echo "$(ME): help2man requires at least two spaces between"; \
468             echo "$(ME): an option and its description";                \
469                 1>&2; exit 1; } || :
470
471 # Look for diagnostics that aren't marked for translation.
472 # This won't find any for which error's format string is on a separate line.
473 sc_unmarked_diagnostics:
474         @grep -nE                                                       \
475             '\<error \([^"]*"[^"]*[a-z]{3}' $$($(VC_LIST_EXCEPT))       \
476           | grep -v '_''(' &&                                           \
477           { echo '$(ME): found unmarked diagnostic(s)' 1>&2;            \
478             exit 1; } || :
479
480 # Avoid useless parentheses like those in this example:
481 # #if defined (SYMBOL) || defined (SYM2)
482 sc_useless_cpp_parens:
483         @grep -n '^# *if .*defined *(' $$($(VC_LIST_EXCEPT)) &&         \
484           { echo '$(ME): found useless parentheses in cpp directive'    \
485                 1>&2; exit 1; } || :
486
487 # Require the latest GPL.
488 sc_GPL_version:
489         @re='either ''version [^3]' msg='GPL vN, N!=3'                  \
490           $(_prohibit_regexp)
491
492 cvs_keywords = \
493   Author|Date|Header|Id|Name|Locker|Log|RCSfile|Revision|Source|State
494
495 sc_prohibit_cvs_keyword:
496         @re='\$$($(cvs_keywords))\$$'                                   \
497             msg='do not use CVS keyword expansion'                      \
498           $(_prohibit_regexp)
499
500 # Make sure we don't use st_blocks.  Use ST_NBLOCKS instead.
501 # This is a bit of a kludge, since it prevents use of the string
502 # even in comments, but for now it does the job with no false positives.
503 sc_prohibit_stat_st_blocks:
504         @re='[.>]st_blocks' msg='do not use st_blocks; use ST_NBLOCKS'  \
505           $(_prohibit_regexp)
506
507 # Make sure we don't define any S_IS* macros in src/*.c files.
508 # They're already defined via gnulib's sys/stat.h replacement.
509 sc_prohibit_S_IS_definition:
510         @re='^ *# *define  *S_IS'                                       \
511         msg='do not define S_IS* macros; include <sys/stat.h>'          \
512           $(_prohibit_regexp)
513
514 # Each program that uses proper_name_utf8 must link with
515 # one of the ICONV libraries.
516 sc_proper_name_utf8_requires_ICONV:
517         @progs=$$(grep -l 'proper_name_utf8 ''("' $$($(VC_LIST_EXCEPT)));\
518         if test "x$$progs" != x; then                                   \
519           fail=0;                                                       \
520           for p in $$progs; do                                          \
521             dir=$$(dirname "$$p");                                      \
522             base=$$(basename "$$p" .c);                                 \
523             grep "$${base}_LDADD.*ICONV)" $$dir/Makefile.am > /dev/null \
524               || { fail=1; echo 1>&2 "$(ME): $$p uses proper_name_utf8"; }; \
525           done;                                                         \
526           test $$fail = 1 &&                                            \
527             { echo 1>&2 '$(ME): the above do not link with any ICONV library'; \
528               exit 1; } || :;                                           \
529         fi
530
531 # Warn about "c0nst struct Foo const foo[]",
532 # but not about "char const *const foo" or "#define const const".
533 sc_redundant_const:
534         @re='\bconst\b[[:space:][:alnum:]]{2,}\bconst\b'                \
535         msg='redundant "const" in declarations'                         \
536           $(_prohibit_regexp)
537
538 sc_const_long_option:
539         @grep '^ *static.*struct option ' $$($(VC_LIST_EXCEPT))         \
540           | grep -Ev 'const struct option|struct option const' && {     \
541               echo 1>&2 '$(ME): add "const" to the above declarations'; \
542               exit 1; } || :
543
544 NEWS_hash =                                                             \
545   $$(sed -n '/^\*.* $(PREV_VERSION_REGEXP) ([0-9-]*)/,$$p'              \
546        $(srcdir)/NEWS                                                   \
547      | grep -v '^Copyright .*Free Software'                             \
548      | md5sum -                                                         \
549      | sed 's/ .*//')
550
551 # Ensure that we don't accidentally insert an entry into an old NEWS block.
552 sc_immutable_NEWS:
553         @if test -f $(srcdir)/NEWS; then                                \
554           test "$(NEWS_hash)" = '$(old_NEWS_hash)' && : ||              \
555             { echo '$(ME): you have modified old NEWS' 1>&2; exit 1; }; \
556         fi
557
558 # Update the hash stored above.  Do this after each release and
559 # for any corrections to old entries.
560 update-NEWS-hash: NEWS
561         perl -pi -e 's/^(old_NEWS_hash[ \t]+:?=[ \t]+).*/$${1}'"$(NEWS_hash)/" \
562           $(srcdir)/cfg.mk
563
564 # Ensure that we use only the standard $(VAR) notation,
565 # not @...@ in Makefile.am, now that we can rely on automake
566 # to emit a definition for each substituted variable.
567 # We use perl rather than "grep -nE ..." to exempt a single
568 # use of an @...@-delimited variable name in src/Makefile.am.
569 sc_makefile_check:
570         @perl -ne '/\@[A-Z_0-9]+\@/ && !/^cu_install_program =/'        \
571           -e 'and (print "$$ARGV:$$.: $$_"), $$m=1; END {exit !$$m}'    \
572             $$($(VC_LIST_EXCEPT) | grep -E '(^|/)Makefile\.am$$')       \
573           && { echo '$(ME): use $$(...), not @...@' 1>&2; exit 1; } || :
574
575 news-date-check: NEWS
576         today=`date +%Y-%m-%d`;                                         \
577         if head $(srcdir)/NEWS | grep $(news-date-regexp)               \
578             >/dev/null; then                                            \
579           :;                                                            \
580         else                                                            \
581           echo "version or today's date is not in NEWS" 1>&2;           \
582           exit 1;                                                       \
583         fi
584
585 sc_makefile_TAB_only_indentation:
586         @grep -nE '^    [ ]{8}'                                         \
587             $$($(VC_LIST_EXCEPT) | grep -E 'akefile|\.mk$$')            \
588           && { echo '$(ME): found TAB-8-space indentation' 1>&2;        \
589                exit 1; } || :
590
591 sc_m4_quote_check:
592         @grep -nE '(AC_DEFINE(_UNQUOTED)?|AC_DEFUN)\([^[]'              \
593             $$($(VC_LIST_EXCEPT) | grep -E '(^configure\.ac|\.m4)$$')   \
594           && { echo '$(ME): quote the first arg to AC_DEF*' 1>&2;       \
595                exit 1; } || :
596
597 fix_po_file_diag = \
598 'you have changed the set of files with translatable diagnostics;\n\
599 apply the above patch\n'
600
601 # Verify that all source files using _() are listed in po/POTFILES.in.
602 po_file = po/POTFILES.in
603 sc_po_check:
604         @if test -f $(po_file); then                                    \
605           grep -E -v '^(#|$$)' $(po_file)                               \
606             | grep -v '^src/false\.c$$' | sort > $@-1;                  \
607           files=;                                                       \
608           for file in $$($(VC_LIST_EXCEPT)) lib/*.[ch]; do              \
609             test -r $$file || continue;                                 \
610             case $$file in                                              \
611               *.m4|*.mk) continue ;;                                    \
612               *.?|*.??) ;;                                              \
613               *) continue;;                                             \
614             esac;                                                       \
615             case $$file in                                              \
616             *.[ch])                                                     \
617               base=`expr " $$file" : ' \(.*\)\..'`;                     \
618               { test -f $$base.l || test -f $$base.y; } && continue;;   \
619             esac;                                                       \
620             files="$$files $$file";                                     \
621           done;                                                         \
622           grep -E -l '\b(N?_|gettext *)\([^)"]*("|$$)' $$files          \
623             | sort -u > $@-2;                                           \
624           diff -u -L $(po_file) -L $(po_file) $@-1 $@-2                 \
625             || { printf '$(ME): '$(fix_po_file_diag) 1>&2; exit 1; };   \
626           rm -f $@-1 $@-2;                                              \
627         fi
628
629 # Sometimes it is useful to change the PATH environment variable
630 # in Makefiles.  When doing so, it's better not to use the Unix-centric
631 # path separator of `:', but rather the automake-provided `$(PATH_SEPARATOR)'.
632 msg = '$(ME): Do not use `:'\'' above; use $$(PATH_SEPARATOR) instead'
633 sc_makefile_path_separator_check:
634         @grep -nE 'PATH[=].*:'                                          \
635             $$($(VC_LIST_EXCEPT) | grep -E 'akefile|\.mk$$')            \
636           && { echo $(msg) 1>&2; exit 1; } || :
637
638 # Check that `make alpha' will not fail at the end of the process.
639 writable-files:
640         if test -d $(release_archive_dir); then :; else                 \
641           for file in $(distdir).tar.gz                                 \
642                       $(release_archive_dir)/$(distdir).tar.gz; do      \
643             test -e $$file || continue;                                 \
644             test -w $$file                                              \
645               || { echo ERROR: $$file is not writable; fail=1; };       \
646           done;                                                         \
647           test "$$fail" && exit 1 || : ;                                \
648         fi
649
650 v_etc_file = lib/version-etc.c
651 sample-test = tests/sample-test
652 texi = doc/$(PACKAGE).texi
653 # Make sure that the copyright date in $(v_etc_file) is up to date.
654 # Do the same for the $(sample-test) and the main doc/.texi file.
655 sc_copyright_check:
656         @if test -f $(v_etc_file); then                                 \
657           grep 'enum { COPYRIGHT_YEAR = '$$(date +%Y)' };' $(v_etc_file) \
658             >/dev/null                                                  \
659           || { echo 'out of date copyright in $(v_etc_file); update it' 1>&2; \
660                exit 1; };                                               \
661         fi
662         @if test -f $(sample-test); then                                \
663           grep '# Copyright (C) '$$(date +%Y)' Free' $(sample-test)     \
664             >/dev/null                                                  \
665           || { echo 'out of date copyright in $(sample-test); update it' 1>&2; \
666                exit 1; };                                               \
667         fi
668         @if test -f $(texi); then                                       \
669           grep 'Copyright @copyright{} .*'$$(date +%Y)' Free' $(texi)   \
670             >/dev/null                                                  \
671           || { echo 'out of date copyright in $(texi); update it' 1>&2; \
672                exit 1; };                                               \
673         fi
674
675 vc-diff-check:
676         (unset CDPATH; cd $(srcdir) && $(VC) diff) > vc-diffs || :
677         if test -s vc-diffs; then                               \
678           cat vc-diffs;                                         \
679           echo "Some files are locally modified:" 1>&2;         \
680           exit 1;                                               \
681         else                                                    \
682           rm vc-diffs;                                          \
683         fi
684
685 # Use this to make sure we don't run these programs when building
686 # from a virgin tgz file, below.
687 null_AM_MAKEFLAGS = \
688   ACLOCAL=false \
689   AUTOCONF=false \
690   AUTOMAKE=false \
691   AUTOHEADER=false \
692   MAKEINFO=false
693
694 built_programs = $$(cd src && MAKEFLAGS= $(MAKE) -s built_programs.list)
695
696 rel-files = $(DIST_ARCHIVES)
697
698 gnulib_dir ?= $(srcdir)/gnulib
699 gnulib-version = $$(cd $(gnulib_dir) && git describe)
700 bootstrap-tools ?= autoconf,automake,gnulib
701
702 announcement: NEWS ChangeLog $(rel-files)
703         @$(build_aux)/announce-gen                                      \
704             --release-type=$(RELEASE_TYPE)                              \
705             --package=$(PACKAGE)                                        \
706             --prev=$(PREV_VERSION)                                      \
707             --curr=$(VERSION)                                           \
708             --gpg-key-id=$(gpg_key_ID)                                  \
709             --news=NEWS                                                 \
710             --bootstrap-tools=$(bootstrap-tools)                        \
711             --gnulib-version=$(gnulib-version)                          \
712             --no-print-checksums                                        \
713             $(addprefix --url-dir=, $(url_dir_list))
714
715 ## ---------------- ##
716 ## Updating files.  ##
717 ## ---------------- ##
718
719 ftp-gnu = ftp://ftp.gnu.org/gnu
720 www-gnu = http://www.gnu.org
721
722 emit_upload_commands:
723         @echo =====================================
724         @echo =====================================
725         @echo "$(build_aux)/gnupload $(GNUPLOADFLAGS) \\"
726         @echo "    --to $(gnu_rel_host):$(PACKAGE) \\"
727         @echo "  $(rel-files)"
728         @echo '# send the /tmp/announcement e-mail'
729         @echo =====================================
730         @echo =====================================
731
732 noteworthy = * Noteworthy changes in release ?.? (????-??-??) [?]
733 define emit-commit-log
734   printf '%s\n' 'post-release administrivia' '' \
735     '* NEWS: Add header line for next release.' \
736     '* .prev-version: Record previous version.' \
737     '* cfg.mk (old_NEWS_hash): Auto-update.'
738 endef
739
740 .PHONY: no-submodule-changes
741 no-submodule-changes:
742         if test -d $(srcdir)/.git; then                                 \
743           diff=$$(cd $(srcdir) && git submodule -q foreach              \
744                   git diff-index --name-only HEAD)                      \
745             || exit 1;                                                  \
746           case $$diff in '') ;;                                         \
747             *) echo '$(ME): submodule files are locally modified:';     \
748                 echo "$$diff"; exit 1;; esac;                           \
749         else                                                            \
750           : ;                                                           \
751         fi
752
753 .PHONY: alpha beta stable
754 ALL_RECURSIVE_TARGETS += alpha beta stable
755 alpha beta stable: $(local-check) writable-files no-submodule-changes
756         test $@ = stable                                                \
757           && { echo $(VERSION) | grep -E '^[0-9]+(\.[0-9]+)+$$'         \
758                || { echo "invalid version string: $(VERSION)" 1>&2; exit 1;};}\
759           || :
760         $(MAKE) vc-diff-check
761         $(MAKE) news-date-check
762         $(MAKE) distcheck
763         $(MAKE) dist XZ_OPT=-9ev
764         $(MAKE) -s announcement RELEASE_TYPE=$@ > /tmp/announce-$(my_distdir)
765         if test -d $(release_archive_dir); then                 \
766           ln $(rel-files) $(release_archive_dir);               \
767           chmod a-w $(rel-files);                               \
768         fi
769         $(MAKE) -s emit_upload_commands RELEASE_TYPE=$@
770         echo $(VERSION) > $(prev_version_file)
771         $(MAKE) update-NEWS-hash
772         perl -pi -e '$$. == 3 and print "$(noteworthy)\n\n\n"' NEWS
773         $(emit-commit-log) > .ci-msg
774         $(VC) commit -F .ci-msg -a
775
776 .PHONY: web-manual
777 web-manual:
778         @test -z "$(manual_title)" \
779           && { echo define manual_title in cfg.mk 1>&2; exit 1; } || :
780         @cd '$(srcdir)/doc'; \
781           $(SHELL) ../build-aux/gendocs.sh -o '$(abs_builddir)/doc/manual' \
782              --email $(PACKAGE_BUGREPORT) $(PACKAGE) \
783             "$(PACKAGE_NAME) - $(manual_title)"
784         @echo " *** Upload the doc/manual directory to web-cvs."
785
786 # Code Coverage
787
788 init-coverage:
789         $(MAKE) $(AM_MAKEFLAGS) clean
790         lcov --directory . --zerocounters
791
792 COVERAGE_CCOPTS ?= "-g --coverage"
793 COVERAGE_OUT ?= doc/coverage
794
795 build-coverage:
796         $(MAKE) $(AM_MAKEFLAGS) CFLAGS=$(COVERAGE_CCOPTS) CXXFLAGS=$(COVERAGE_CCOPTS)
797         $(MAKE) $(AM_MAKEFLAGS) CFLAGS=$(COVERAGE_CCOPTS) CXXFLAGS=$(COVERAGE_CCOPTS) check
798         mkdir -p $(COVERAGE_OUT)
799         lcov --directory . --output-file $(COVERAGE_OUT)/$(PACKAGE).info \
800                 --capture
801
802 gen-coverage:
803         genhtml --output-directory $(COVERAGE_OUT) \
804                 $(COVERAGE_OUT)/$(PACKAGE).info \
805                 --highlight --frames --legend \
806                 --title "$(PACKAGE_NAME)"
807
808 coverage: init-coverage build-coverage gen-coverage
809
810 # Update gettext files.
811 PACKAGE ?= $(shell basename $(PWD))
812 PO_DOMAIN ?= $(PACKAGE)
813 POURL = http://translationproject.org/latest/$(PO_DOMAIN)/
814 PODIR ?= po
815 refresh-po:
816         rm -f $(PODIR)/*.po && \
817         echo "$(ME): getting translations into po (please ignore the robots.txt ERROR 404)..." && \
818         wget --no-verbose --directory-prefix $(PODIR) --no-directories --recursive --level 1 --accept .po --accept .po.1 $(POURL) && \
819         echo 'en@boldquot' > $(PODIR)/LINGUAS && \
820         echo 'en@quot' >> $(PODIR)/LINGUAS && \
821         ls $(PODIR)/*.po | sed 's/\.po//' | sed 's,$(PODIR)/,,' | sort >> $(PODIR)/LINGUAS
822
823 INDENT_SOURCES ?= $(C_SOURCES)
824 .PHONY: indent
825 indent:
826         indent $(INDENT_SOURCES)
827
828 # If you want to set UPDATE_COPYRIGHT_* environment variables,
829 # put the assignments in this variable.
830 update-copyright-env ?=
831
832 # Run this rule once per year (usually early in January)
833 # to update all FSF copyright year lists in your project.
834 # If you have an additional project-specific rule,
835 # add it in cfg.mk along with a line 'update-copyright: prereq'.
836 # By default, exclude all variants of COPYING; you can also
837 # add exemptions (such as ChangeLog..* for rotated change logs)
838 # in the file .x-update-copyright.
839 .PHONY: update-copyright
840 update-copyright:
841         grep -l -w Copyright                                             \
842           $$(export VC_LIST_EXCEPT_DEFAULT=COPYING && $(VC_LIST_EXCEPT)) \
843           | $(update-copyright-env) xargs $(build_aux)/$@