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