build: ensure make-prime-list doesn't access out of bounds memory
[platform/upstream/coreutils.git] / cfg.mk
1 # Customize maint.mk                           -*- makefile -*-
2 # Copyright (C) 2003-2013 Free Software Foundation, Inc.
3
4 # This program is free software: you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation, either version 3 of the License, or
7 # (at your option) any later version.
8
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 # GNU General Public License for more details.
13
14 # You should have received a copy of the GNU General Public License
15 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
16
17 # Used in maint.mk's web-manual rule
18 manual_title = Core GNU utilities
19
20 # Use the direct link.  This is guaranteed to work immediately, while
21 # it can take a while for the faster mirror links to become usable.
22 url_dir_list = http://ftp.gnu.org/gnu/$(PACKAGE)
23
24 # Tests not to run as part of "make distcheck".
25 local-checks-to-skip = \
26   sc_proper_name_utf8_requires_ICONV
27
28 # Tools used to bootstrap this package, used for "announcement".
29 bootstrap-tools = autoconf,automake,gnulib,bison
30
31 # Now that we have better tests, make this the default.
32 export VERBOSE = yes
33
34 # Comparing tarball sizes compressed using different xz presets, we see that
35 # an -8e-compressed tarball is only 9KiB larger than the -9e-compressed one.
36 # Using -8e is preferred, since that lets the decompression process use half
37 # the memory (32MiB rather than 64MiB).
38 # $ for i in {7,8,9}{e,}; do \
39 #     (n=$(xz -$i < coreutils-8.15*.tar|wc -c);echo $n $i) & done |sort -nr
40 # 5129388 7
41 # 5036524 7e
42 # 5017476 8
43 # 5010604 9
44 # 4923016 8e
45 # 4914152 9e
46 export XZ_OPT = -8e
47
48 old_NEWS_hash = b93e7e43dd35f32961c354e41211b86e
49
50 # Add an exemption for sc_makefile_at_at_check.
51 _makefile_at_at_check_exceptions = ' && !/^cu_install_program =/'
52
53 # Our help-version script is in a slightly different location.
54 _hv_file ?= $(srcdir)/tests/misc/help-version
55
56 # Ensure that the list of O_ symbols used to compute O_FULLBLOCK is complete.
57 dd = $(srcdir)/src/dd.c
58 sc_dd_O_FLAGS:
59         @rm -f $@.1 $@.2
60         @{ echo O_FULLBLOCK; echo O_NOCACHE;                            \
61           perl -nle '/^ +\| (O_\w*)$$/ and print $$1' $(dd); } | sort > $@.1
62         @{ echo O_NOFOLLOW; perl -nle '/{"[a-z]+",\s*(O_\w+)},/ and print $$1' \
63           $(dd); } | sort > $@.2
64         @diff -u $@.1 $@.2 || diff=1 || diff=;                          \
65         rm -f $@.1 $@.2;                                                \
66         test "$$diff"                                                   \
67           && { echo '$(ME): $(dd) has inconsistent O_ flag lists'>&2;   \
68                exit 1; } || :
69
70 # Ensure that dd's definition of LONGEST_SYMBOL stays in sync
71 # with the strings from the two affected variables.
72 dd_c = $(srcdir)/src/dd.c
73 sc_dd_max_sym_length:
74 ifneq ($(wildcard $(dd_c)),)
75         @len=$$( (sed -n '/conversions\[\] =$$/,/^};/p' $(dd_c);\
76                  sed -n '/flags\[\] =$$/,/^};/p' $(dd_c) )      \
77                 |sed -n '/"/s/^[^"]*"\([^"]*\)".*/\1/p'         \
78               | wc --max-line-length);                          \
79         max=$$(sed -n '/^#define LONGEST_SYMBOL /s///p' $(dd_c) \
80               |tr -d '"' | wc --max-line-length);               \
81         if test "$$len" = "$$max"; then :; else                 \
82           echo 'dd.c: LONGEST_SYMBOL is not longest' 1>&2;      \
83           exit 1;                                               \
84         fi
85 endif
86
87 # Many m4 macros names once began with 'jm_'.
88 # On 2004-04-13, they were all changed to start with gl_ instead.
89 # Make sure that none are inadvertently reintroduced.
90 sc_prohibit_jm_in_m4:
91         @grep -nE 'jm_[A-Z]'                                            \
92                 $$($(VC_LIST) m4 |grep '\.m4$$'; echo /dev/null) &&     \
93             { echo '$(ME): do not use jm_ in m4 macro names'            \
94               1>&2; exit 1; } || :
95
96 # Ensure that each root-requiring test is run via the "check-root" rule.
97 sc_root_tests:
98         @t1=sc-root.expected; t2=sc-root.actual;                        \
99         grep -nl '^ *require_root_$$' `$(VC_LIST) tests` | sort > $$t1; \
100         for t in $(all_root_tests); do echo $$t; done | sort > $$t2;    \
101         st=0; diff -u $$t1 $$t2 || st=1;                                \
102         rm -f $$t1 $$t2;                                                \
103         exit $$st
104
105 # Ensure that all version-controlled test cases are listed in $(all_tests).
106 sc_tests_list_consistency:
107         @bs="\\";                                                       \
108         test_extensions_rx=`echo $(TEST_EXTENSIONS)                     \
109           | sed -e "s/ /|/g" -e "s/$$bs./$$bs$$bs./g"`;                 \
110         {                                                               \
111           for t in $(all_tests); do echo $$t; done;                     \
112           cd $(top_srcdir);                                             \
113           $(SHELL) build-aux/vc-list-files tests                        \
114             | grep -Ev '^tests/(factor/(run|create-test)|init)\.sh$$'   \
115             | $(EGREP) "$$test_extensions_rx\$$";                       \
116         } | sort | uniq -u | grep . && exit 1; :
117
118 # Create a list of regular expressions matching the names
119 # of files included from system.h.  Exclude a couple.
120 .re-list:
121         @sed -n '/^# *include /s///p' $(srcdir)/src/system.h \
122           | grep -Ev 'sys/(param|file)\.h' \
123           | sed 's/ .*//;;s/^["<]/^# *include [<"]/;s/\.h[">]$$/\\.h[">]/' \
124           > $@-t
125         @mv $@-t $@
126
127 define gl_trap_
128   Exit () { set +e; (exit $$1); exit $$1; };                            \
129   for sig in 1 2 3 13 15; do                                            \
130     eval "trap 'Exit $$(expr $$sig + 128)' $$sig";                      \
131   done
132 endef
133
134 # Files in src/ should not include directly any of
135 # the headers already included via system.h.
136 sc_system_h_headers: .re-list
137         @if test -f $(srcdir)/src/system.h; then                        \
138           trap 'rc=$$?; rm -f .re-list; exit $$rc' 0;                   \
139           $(gl_trap_);                                                  \
140           grep -nE -f .re-list                                          \
141               $$($(VC_LIST_EXCEPT) | grep '^\($(srcdir)/\)\?src/')      \
142             && { echo '$(ME): the above are already included via system.h'\
143                   1>&2;  exit 1; } || :;                                \
144         fi
145
146 sc_sun_os_names:
147         @grep -nEi \
148             'solaris[^[:alnum:]]*2\.(7|8|9|[1-9][0-9])|sunos[^[:alnum:]][6-9]' \
149             $$($(VC_LIST_EXCEPT)) &&                                    \
150           { echo '$(ME): found misuse of Sun OS version numbers' 1>&2;  \
151             exit 1; } || :
152
153 # Ensure that the list of programs and author names is accurate.
154 # We need a UTF8 locale.  If a lack of locale support or a missing
155 # translation inhibits printing of UTF-8 names, just skip this test.
156 au_dotdot = authors-dotdot
157 au_actual = authors-actual
158 sc_check-AUTHORS: $(all_programs)
159         @locale=en_US.UTF-8;                            \
160         LC_ALL=$$locale ./src/cat --version             \
161             | grep ' Torbjorn ' > /dev/null             \
162           && { echo "$@: skipping this check"; exit 0; }; \
163         rm -f $(au_actual) $(au_dotdot);                \
164         for i in `ls $(all_programs)                    \
165             | sed -e 's,^src/,,' -e 's,$(EXEEXT)$$,,'   \
166             | sed /libstdbuf/d                          \
167             | $(ASSORT) -u`; do                         \
168           test "$$i" = '[' && continue;                 \
169           exe=$$i;                                      \
170           if test "$$i" = install; then                 \
171             exe=ginstall;                               \
172           elif test "$$i" = test; then                  \
173             exe='[';                                    \
174           fi;                                           \
175           LC_ALL=$$locale ./src/$$exe --version         \
176             | perl -0 -pi -e 's/,\n/, /gm'              \
177             | sed -n -e '/Written by /{ s//'"$$i"': /;' \
178                   -e 's/,* and /, /; s/\.$$//; p; }';   \
179         done > $(au_actual) &&                          \
180         sed -n '/^[^ ][^ ]*:/p' $(srcdir)/AUTHORS > $(au_dotdot) \
181           && diff $(au_actual) $(au_dotdot) \
182           && rm -f $(au_actual) $(au_dotdot)
183
184 # Each program with a non-ASCII author name must link with LIBICONV.
185 sc_check-I18N-AUTHORS:
186         @cd $(srcdir)/src &&                                            \
187           for i in $$(git grep -l -w proper_name_utf8 *.c|sed 's/\.c//'); do \
188             grep -E "^src_$${i}_LDADD"' .?= .*\$$\(LIBICONV\)' local.mk \
189                 > /dev/null                                             \
190               || { echo "$(ME): link rules for $$i do not include"      \
191                     '$$(LIBICONV)' 1>&2; exit 1; };                     \
192           done
193
194 # Ensure %j is not used for intmax_t as it's not universally supported.
195 # There are issues on HPUX for example.  But note that %ju was used between
196 # coreutils 8.13 (2011-10) and 8.20 (2012-10) without any reported issue,
197 # and the particular issue this check is associated with was for %*jx.
198 # So we may be able to relax this restriction soon.
199 sc_prohibit-j-printf-format:
200         @cd $(srcdir)/src && GIT_PAGER= git grep -n '%[0*]*j[udx]' *.c  \
201           && { echo '$(ME): Use PRI*MAX instead of %j' 1>&2; exit 1; }  \
202           || :
203
204 # Look for lines longer than 80 characters, except omit:
205 # - program-generated long lines in diff headers,
206 # - tests involving long checksum lines, and
207 # - the 'pr' test cases.
208 LINE_LEN_MAX = 80
209 FILTER_LONG_LINES =                                             \
210   /^[^:]*\.diff:[^:]*:@@ / d;                                   \
211   \|^[^:]*tests/misc/sha[0-9]*sum.*\.pl[-:]| d;                 \
212   \|^[^:]*tests/pr/|{ \|^[^:]*tests/pr/pr-tests:| !d; };
213 sc_long_lines:
214         @files=$$($(VC_LIST_EXCEPT))                                    \
215         halt='line(s) with more than $(LINE_LEN_MAX) characters; reindent'; \
216         for file in $$files; do                                         \
217           expand $$file | grep -nE '^.{$(LINE_LEN_MAX)}.' |             \
218           sed -e "s|^|$$file:|" -e '$(FILTER_LONG_LINES)';              \
219         done | grep . && { msg="$$halt" $(_sc_say_and_exit) } || :
220
221 # Option descriptions should not start with a capital letter.
222 # One could grep source directly as follows:
223 # grep -E " {2,6}-.*[^.]  [A-Z][a-z]" $$($(VC_LIST_EXCEPT) | grep '\.c$$')
224 # but that would miss descriptions not on the same line as the -option.
225 sc_option_desc_uppercase: $(ALL_MANS)
226         @grep '^\\fB\\-' -A1 man/*.1 | LC_ALL=C grep '\.1.[A-Z][a-z]'   \
227           && { echo 1>&2 '$@: found initial capitals in --help'; exit 1; } || :
228
229 # Ensure all man/*.[1x] files are present.
230 sc_man_file_correlation: check-x-vs-1 check-programs-vs-x
231
232 # Ensure that for each .x file in the 'man/' subdirectory, there is a
233 # corresponding .1 file in the definition of $(EXTRA_MANS).
234 # But since that expansion usually lacks programs like arch and hostname,
235 # add them here manually.
236 .PHONY: check-x-vs-1
237 check-x-vs-1:
238         @PATH=./src$(PATH_SEPARATOR)$$PATH; export PATH;                \
239         t=$@-t;                                                         \
240         (cd $(srcdir)/man && ls -1 *.x)                                 \
241           | sed 's/\.x$$//' | $(ASSORT) > $$t;                          \
242         (echo $(patsubst man/%,%,$(ALL_MANS))                           \
243           | tr -s ' ' '\n' | sed 's/\.1$$//')                           \
244           | $(ASSORT) -u | diff - $$t || { rm $$t; exit 1; };           \
245         rm $$t
246
247 # Writing a portable rule to generate a manpage like '[.1' would be
248 # a nightmare, so filter that out.
249 all-progs-but-lbracket = $(filter-out [,$(patsubst src/%,%,$(all_programs)))
250
251 # Ensure that for each coreutils program there is a corresponding
252 # '.x' file in the 'man/' subdirectory.
253 .PHONY: check-programs-vs-x
254 check-programs-vs-x:
255         @status=0;                                      \
256         for p in dummy $(all-progs-but-lbracket); do    \
257           case $$p in *.so) continue;; esac;            \
258           test $$p = dummy && continue;                 \
259           test $$p = ginstall && p=install || : ;       \
260           test -f $(srcdir)/man/$$p.x                   \
261             || { echo missing $$p.x 1>&2; status=1; };  \
262         done;                                           \
263         exit $$status
264
265 # Ensure that the end of each release's section is marked by two empty lines.
266 sc_NEWS_two_empty_lines:
267         @sed -n 4,/Noteworthy/p $(srcdir)/NEWS                          \
268             | perl -n0e '/(^|\n)\n\n\* Noteworthy/ or exit 1'           \
269           || { echo '$(ME): use two empty lines to separate NEWS sections' \
270                  1>&2; exit 1; } || :
271
272 # With split lines, don't leave an operator at end of line.
273 # Instead, put it on the following line, where it is more apparent.
274 # Don't bother checking for "*" at end of line, since it provokes
275 # far too many false positives, matching constructs like "TYPE *".
276 # Similarly, omit "=" (initializers).
277 binop_re_ ?= [-/+^!<>]|[-/+*^!<>=]=|&&?|\|\|?|<<=?|>>=?
278 sc_prohibit_operator_at_end_of_line:
279         @prohibit='. ($(binop_re_))$$'                                  \
280         in_vc_files='\.[chly]$$'                                        \
281         halt='found operator at end of line'                            \
282           $(_sc_search_regexp)
283
284 # Don't use "readlink" or "readlinkat" directly
285 sc_prohibit_readlink:
286         @prohibit='\<readlink(at)? \('                                  \
287         halt='do not use readlink(at); use via xreadlink or areadlink*' \
288           $(_sc_search_regexp)
289
290 # Don't use address of "stat" or "lstat" functions
291 sc_prohibit_stat_macro_address:
292         @prohibit='\<l?stat '':|&l?stat\>'                              \
293         halt='stat() and lstat() may be function-like macros'           \
294           $(_sc_search_regexp)
295
296 # Ensure that date's --help output stays in sync with the info
297 # documentation for GNU strftime.  The only exception is %N,
298 # which date accepts but GNU strftime does not.
299 extract_char = sed 's/^[^%][^%]*%\(.\).*/\1/'
300 sc_strftime_check:
301         @if test -f $(srcdir)/src/date.c; then                          \
302           grep '^  %.  ' $(srcdir)/src/date.c | sort                    \
303             | $(extract_char) > $@-src;                                 \
304           { echo N;                                                     \
305             info libc date calendar format 2>/dev/null|grep '^    `%.'\'\
306               | $(extract_char); } | sort > $@-info;                    \
307           if test $$(stat --format %s $@-info) != 2; then               \
308             diff -u $@-src $@-info || exit 1;                           \
309           else                                                          \
310             echo '$(ME): skipping $@: libc info not installed' 1>&2;    \
311           fi;                                                           \
312           rm -f $@-src $@-info;                                         \
313         fi
314
315 # Indent only with spaces.
316 sc_prohibit_tab_based_indentation:
317         @prohibit='^ *  '                                               \
318         halt='TAB in indentation; use only spaces'                      \
319           $(_sc_search_regexp)
320
321 # The SEE ALSO section of a man page should not be terminated with
322 # a period.  Check the first line after each "SEE ALSO" line in man/*.x:
323 sc_prohibit_man_see_also_period:
324         @grep -nB1 '\.$$' $$($(VC_LIST_EXCEPT) | grep 'man/.*\.x$$')    \
325             | grep -A1 -e '-\[SEE ALSO\]' | grep '\.$$' &&              \
326           { echo '$(ME): do not end "SEE ALSO" section with a period'   \
327               1>&2; exit 1; } || :
328
329 # Don't use "indent-tabs-mode: nil" anymore.  No longer needed.
330 sc_prohibit_emacs__indent_tabs_mode__setting:
331         @prohibit='^( *[*#] *)?indent-tabs-mode:'                       \
332         halt='use of emacs indent-tabs-mode: setting'                   \
333           $(_sc_search_regexp)
334
335 # Ensure that tests don't include a redundant fail=0.
336 sc_prohibit_fail_0:
337         @prohibit='\<fail=0\>'                                          \
338         halt='fail=0 initialization'                                    \
339           $(_sc_search_regexp)
340
341 # The mode part of a setfacl -m option argument must be three bytes long.
342 # I.e., an argument of user:bin:rw or user:bin:r will make Solaris 10's
343 # setfacl reject it with: "Unrecognized character found in mode field".
344 # Use hyphens to give it a length of 3: "...:rw-" or "...:r--".
345 sc_prohibit_short_facl_mode_spec:
346         @prohibit='\<setfacl .*-m.*:.*:[rwx-]{1,2} '                    \
347         halt='setfacl mode string length < 3; extend with hyphen(s)'    \
348           $(_sc_search_regexp)
349
350 # Ensure that "stdio--.h" is used where appropriate.
351 sc_require_stdio_safer:
352         @if $(VC_LIST_EXCEPT) | grep -l '\.[ch]$$' > /dev/null; then    \
353           files=$$(grep -l '\bfreopen \?(' $$($(VC_LIST_EXCEPT)         \
354               | grep '\.[ch]$$'));                                      \
355           test -n "$$files" && grep -LE 'include "stdio--.h"' $$files   \
356               | grep . &&                                               \
357           { echo '$(ME): the above files should use "stdio--.h"'        \
358                 1>&2; exit 1; } || :;                                   \
359         else :;                                                         \
360         fi
361
362 sc_prohibit_perl_hash_quotes:
363         @prohibit="\{'[A-Z_]+' *[=}]"                                   \
364         halt="in Perl code, write \$$hash{KEY}, not \$$hash{'K''EY'}"   \
365           $(_sc_search_regexp)
366
367 # Prefer xnanosleep over other less-precise sleep methods
368 sc_prohibit_sleep:
369         @prohibit='\<(nano|u)?sleep \('                                 \
370         halt='prefer xnanosleep over other sleep interfaces'            \
371           $(_sc_search_regexp)
372
373 # Use print_ver_ (from init.cfg), not open-coded $VERBOSE check.
374 sc_prohibit_verbose_version:
375         @prohibit='test "\$$VERBOSE" = yes && .* --version'             \
376         halt='use the print_ver_ function instead...'                   \
377           $(_sc_search_regexp)
378
379 # Use framework_failure_, not the old name without the trailing underscore.
380 sc_prohibit_framework_failure:
381         @prohibit='\<framework_''failure\>'                             \
382         halt='use framework_failure_ instead'                           \
383           $(_sc_search_regexp)
384
385 # Prohibit the use of `...` in tests/.  Use $(...) instead.
386 sc_prohibit_test_backticks:
387         @prohibit='`' in_vc_files='^tests/'                             \
388         halt='use $$(...), not `...` in tests/'                         \
389           $(_sc_search_regexp)
390
391 # Programs like sort, ls, expr use PROG_FAILURE in place of EXIT_FAILURE.
392 # Others, use the EXIT_CANCELED, EXIT_ENOENT, etc. macros defined in system.h.
393 # In those programs, ensure that EXIT_FAILURE is not used by mistake.
394 sc_some_programs_must_avoid_exit_failure:
395         @grep -nw EXIT_FAILURE                                          \
396             $$(git grep -El '[^T]_FAILURE|EXIT_CANCELED' src)           \
397           | grep -vE '= EXIT_FAILURE|exit \(.* \?' | grep .             \
398             && { echo '$(ME): do not use EXIT_FAILURE in the above'     \
399                   1>&2; exit 1; } || :
400
401 # Ensure that tests call the print_ver_ function for programs which are
402 # actually used in that test.
403 sc_prohibit_test_calls_print_ver_with_irrelevant_argument:
404         @git grep -w print_ver_ tests                                   \
405           | sed 's#:print_ver_##'                                       \
406           | { fail=0;                                                   \
407               while read file name; do                                  \
408                 for i in $$name; do                                     \
409                   case "$$i" in install) i=ginstall;; esac;             \
410                   grep -w "$$i" $$file|grep -vw print_ver_|grep -q .    \
411                     || { fail=1;                                        \
412                          echo "*** Test: $$file, offending: $$i." 1>&2; };\
413                 done;                                                   \
414               done;                                                     \
415               test $$fail = 0 || exit 1;                                \
416             } || { echo "$(ME): the above test(s) call print_ver_ for"  \
417                     "program(s) they don't use" 1>&2; exit 1; }
418
419 # Exempt the contents of any usage function from the following.
420 _continued_string_col_1 = \
421 s/^usage .*?\n}//ms;/\\\n\w/ and print ("$$ARGV\n"),$$e=1;END{$$e||=0;exit $$e}
422 # Ding any source file that has a continued string with an alphabetic in the
423 # first column of the following line.  We prohibit them because they usually
424 # trigger false positives in tools that try to map an arbitrary line number
425 # to the enclosing function name.  Of course, very many strings do precisely
426 # this, *when they are part of the usage function*.  That is why we exempt
427 # the contents of any function named "usage".
428 sc_prohibit_continued_string_alpha_in_column_1:
429         @perl -0777 -ne '$(_continued_string_col_1)' \
430             $$($(VC_LIST_EXCEPT) | grep '\.[ch]$$') \
431           || { echo '$(ME): continued string with word in first column' \
432                 1>&2; exit 1; } || :
433 # Use this to list offending lines:
434 # git ls-files |grep '\.[ch]$' | xargs \
435 #   perl -n -0777 -e 's/^usage.*?\n}//ms;/\\\n\w/ and print "$ARGV\n"' \
436 #     | xargs grep -A1 '\\$'|grep '\.[ch][:-][_a-zA-Z]'
437
438
439 ###########################################################
440 _p0 = \([^"'/]\|"\([^\"]\|[\].\)*"\|'\([^\']\|[\].\)*'
441 _pre = $(_p0)\|[/][^"'/*]\|[/]"\([^\"]\|[\].\)*"\|[/]'\([^\']\|[\].\)*'\)*
442 _pre_anchored = ^\($(_pre)\)
443 _comment_and_close = [^*]\|[*][^/*]\)*[*][*]*/
444 # help font-lock mode: '
445
446 # A sed expression that removes ANSI C and ISO C99 comments.
447 # Derived from the one in GNU gettext's 'moopp' preprocessor.
448 _sed_remove_comments =                                  \
449 /[/][/*]/{                                              \
450   ta;                                                   \
451   :a;                                                   \
452   s,$(_pre_anchored)//.*,\1,;                           \
453   te;                                                   \
454   s,$(_pre_anchored)/[*]\($(_comment_and_close),\1 ,;   \
455   ta;                                                   \
456   /^$(_pre)[/][*]/{                                     \
457     s,$(_pre_anchored)/[*].*,\1 ,;                      \
458     tu;                                                 \
459     :u;                                                 \
460     n;                                                  \
461     s,^\($(_comment_and_close),,;                       \
462     tv;                                                 \
463     s,^.*$$,,;                                          \
464     bu;                                                 \
465     :v;                                                 \
466   };                                                    \
467   :e;                                                   \
468 }
469 # Quote all single quotes.
470 _sed_rm_comments_q = $(subst ','\'',$(_sed_remove_comments))
471 # help font-lock mode: '
472
473 _space_before_paren_exempt =? \\n\\$$
474 _space_before_paren_exempt = \
475   (^ *\#|\\n\\$$|%s\(to %s|(date|group|character)\(s\))
476 # Ensure that there is a space before each open parenthesis in C code.
477 sc_space_before_open_paren:
478         @if $(VC_LIST_EXCEPT) | grep -l '\.[ch]$$' > /dev/null; then    \
479           fail=0;                                                       \
480           for c in $$($(VC_LIST_EXCEPT) | grep '\.[ch]$$'); do          \
481             sed '$(_sed_rm_comments_q)' $$c 2>/dev/null                 \
482               | grep -i '[[:alnum:]]('                                  \
483               | grep -vE '$(_space_before_paren_exempt)'                \
484               | grep . && { fail=1; echo "*** $$c"; };                  \
485           done;                                                         \
486           test $$fail = 1 &&                                            \
487             { echo '$(ME): the above files lack a space-before-open-paren' \
488                 1>&2; exit 1; } || :;                                   \
489         else :;                                                         \
490         fi
491
492 # Similar to the gnulib maint.mk rule for sc_prohibit_strcmp
493 # Use STREQ_LEN or STRPREFIX rather than comparing strncmp == 0, or != 0.
494 sc_prohibit_strncmp:
495         @grep -nE '! *str''ncmp *\(|\<str''ncmp *\(.+\) *[!=]='         \
496             $$($(VC_LIST_EXCEPT))                                       \
497           | grep -vE ':# *define STR(N?EQ_LEN|PREFIX)\(' &&             \
498           { echo '$(ME): use STREQ_LEN or STRPREFIX instead of str''ncmp' \
499                 1>&2; exit 1; } || :
500
501 # Enforce recommended preprocessor indentation style.
502 sc_preprocessor_indentation:
503         @if cppi --version >/dev/null 2>&1; then                        \
504           $(VC_LIST_EXCEPT) | grep '\.[ch]$$' | xargs cppi -a -c        \
505             || { echo '$(ME): incorrect preprocessor indentation' 1>&2; \
506                 exit 1; };                                              \
507         else                                                            \
508           echo '$(ME): skipping test $@: cppi not installed' 1>&2;      \
509         fi
510
511 # THANKS.in is a list of name/email pairs for people who are mentioned in
512 # commit logs (and generated ChangeLog), but who are not also listed as an
513 # author of a commit.  Name/email pairs of commit authors are automatically
514 # extracted from the repository.  As a very minor factorization, when
515 # someone who was initially listed only in THANKS.in later authors a commit,
516 # this rule detects that their pair may now be removed from THANKS.in.
517 sc_THANKS_in_duplicates:
518         @{ git log --pretty=format:%aN | sort -u;                       \
519             cut -b-36 THANKS.in | sed '/^$$/d;s/  *$$//'; }             \
520           | sort | uniq -d | grep .                                     \
521             && { echo '$(ME): remove the above names from THANKS.in'    \
522                   1>&2; exit 1; } || :
523
524 # Look for developer diagnostics that are marked for translation.
525 # This won't find any for which devmsg's format string is on a separate line.
526 sc_marked_devdiagnostics:
527         @prohibit='\<devmsg *\(.*_\('                                   \
528         halt='found marked developer diagnostic(s)'                     \
529           $(_sc_search_regexp)
530
531 # Override the default Cc: used in generating an announcement.
532 announcement_Cc_ = $(translation_project_), \
533   coreutils@gnu.org, coreutils-announce@gnu.org
534
535 -include $(srcdir)/dist-check.mk
536
537 update-copyright-env = \
538   UPDATE_COPYRIGHT_FORCE=1 \
539   UPDATE_COPYRIGHT_USE_INTERVALS=2 \
540   UPDATE_COPYRIGHT_MAX_LINE_LENGTH=79
541
542 # List syntax-check exemptions.
543 exclude_file_name_regexp--sc_space_tab = \
544   ^(tests/pr/|tests/misc/nl\.sh$$|gl/.*\.diff$$)
545 exclude_file_name_regexp--sc_bindtextdomain = \
546   ^(gl/.*|lib/euidaccess-stat|src/make-prime-list)\.c$$
547 exclude_file_name_regexp--sc_trailing_blank = ^tests/pr/
548 exclude_file_name_regexp--sc_system_h_headers = \
549   ^src/((system|copy)\.h|libstdbuf\.c|make-prime-list\.c)$$
550
551 _src = (false|lbracket|ls-(dir|ls|vdir)|tac-pipe|uname-(arch|uname))
552 exclude_file_name_regexp--sc_require_config_h_first = \
553   (^lib/buffer-lcm\.c|src/$(_src)\.c)$$
554 exclude_file_name_regexp--sc_require_config_h = \
555   $(exclude_file_name_regexp--sc_require_config_h_first)
556
557 exclude_file_name_regexp--sc_po_check = ^gl/
558 exclude_file_name_regexp--sc_prohibit_always-defined_macros = \
559   ^src/(seq|remove)\.c$$
560 exclude_file_name_regexp--sc_prohibit_empty_lines_at_EOF = ^tests/pr/
561 exclude_file_name_regexp--sc_program_name = \
562   ^(gl/.*|lib/euidaccess-stat|src/make-prime-list)\.c$$
563 exclude_file_name_regexp--sc_file_system = \
564   NEWS|^(init\.cfg|src/df\.c|tests/df/df-P\.sh|tests/df/df-output\.sh)$$
565 exclude_file_name_regexp--sc_prohibit_always_true_header_tests = \
566   ^m4/stat-prog\.m4$$
567 exclude_file_name_regexp--sc_prohibit_fail_0 = \
568   (^.*/git-hooks/commit-msg|^tests/init\.sh|Makefile\.am|\.mk|.*\.texi)$$
569 exclude_file_name_regexp--sc_prohibit_atoi_atof = ^lib/euidaccess-stat\.c$$
570
571 # longlong.h is maintained elsewhere.
572 _ll = ^src/longlong\.h$$
573 exclude_file_name_regexp--sc_useless_cpp_parens = $(_ll)
574 exclude_file_name_regexp--sc_long_lines = $(_ll)
575 exclude_file_name_regexp--sc_space_before_open_paren = $(_ll)
576
577 tbi_1 = ^tests/pr/|(^gl/lib/reg.*\.c\.diff|\.mk|^man/help2man)$$
578 tbi_2 = ^scripts/git-hooks/(pre-commit|pre-applypatch|applypatch-msg)$$
579 tbi_3 = (GNU)?[Mm]akefile(\.am)?$$|$(_ll)
580 exclude_file_name_regexp--sc_prohibit_tab_based_indentation = \
581   $(tbi_1)|$(tbi_2)|$(tbi_3)
582
583 exclude_file_name_regexp--sc_preprocessor_indentation = \
584   ^(gl/lib/rand-isaac\.[ch]|gl/tests/test-rand-isaac\.c)$$|$(_ll)
585 exclude_file_name_regexp--sc_prohibit_stat_st_blocks = \
586   ^(src/system\.h|tests/du/2g\.sh)$$
587
588 exclude_file_name_regexp--sc_prohibit_continued_string_alpha_in_column_1 = \
589   ^src/(system\.h|od\.c|printf\.c)$$
590
591 exclude_file_name_regexp--sc_prohibit_test_backticks = \
592   ^tests/(local\.mk|(init|misc/stdbuf|factor/create-test)\.sh)$$
593
594 # Exempt test.c, since it's nominally shared, and relatively static.
595 exclude_file_name_regexp--sc_prohibit_operator_at_end_of_line = \
596   ^src/(ptx|test|head)\.c$$
597
598 exclude_file_name_regexp--sc_error_message_uppercase = ^src/factor\.c$$
599 exclude_file_name_regexp--sc_prohibit_atoi_atof = ^src/make-prime-list\.c$$
600
601 # Augment AM_CFLAGS to include our per-directory options:
602 AM_CFLAGS += $($(@D)_CFLAGS)
603
604 src_CFLAGS = $(WARN_CFLAGS)
605 lib_CFLAGS = $(GNULIB_WARN_CFLAGS)
606 gnulib-tests_CFLAGS = $(GNULIB_TEST_WARN_CFLAGS)
607
608 # Configuration to make the tight-scope syntax-check rule work with
609 # non-recursive make.
610 export _gl_TS_headers = $(srcdir)/cfg.mk
611 _gl_TS_dir = .
612 _gl_TS_obj_files = src/*.$(OBJEXT)
613 _gl_TS_other_headers = src/*.h
614
615 # Tell the tight_scope rule about an exceptional "extern" variable.
616 # Normally, the rule would detect its declaration, but that uses a
617 # different name, __clz_tab.
618 _gl_TS_unmarked_extern_vars = factor_clz_tab