df: add --output to select which fields to display
[coreutils.git] / cfg.mk
blob53295b4c7525b7ed38ec16276deddd0b1e7a912e
1 # Customize maint.mk -*- makefile -*-
2 # Copyright (C) 2003-2012 Free Software Foundation, Inc.
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.
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.
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/>.
17 # Used in maint.mk's web-manual rule
18 manual_title = Core GNU utilities
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)
24 # Tests not to run as part of "make distcheck".
25 local-checks-to-skip = \
26 sc_proper_name_utf8_requires_ICONV
28 # Tools used to bootstrap this package, used for "announcement".
29 bootstrap-tools = autoconf,automake,gnulib,bison
31 # Now that we have better tests, make this the default.
32 export VERBOSE = yes
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
48 old_NEWS_hash = b93e7e43dd35f32961c354e41211b86e
50 # Add an exemption for sc_makefile_at_at_check.
51 _makefile_at_at_check_exceptions = ' && !/^cu_install_program =/'
53 # Our help-version script is in a slightly different location.
54 _hv_file ?= $(srcdir)/tests/misc/help-version
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; } || :
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; \
85 endif
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; } || :
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
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"`; \
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; :
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 $@
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
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; } || :; \
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; } || :
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)
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
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 || :
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) } || :
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; } || :
229 # Ensure all man/*.[1x] files are present.
230 sc_man_file_correlation: check-x-vs-1 check-programs-vs-x
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
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)))
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
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; } || :
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)
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)
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)
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; \
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)
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; } || :
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)
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)
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)
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 :; \
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)
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)
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)
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)
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)
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; } || :
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; }
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]'
439 ###########################################################
440 _p0 = \([^"'/]\|"\([^\"]\|[\].\)*"\|'\([^\']\|[\].\)*'
441 _pre = $(_p0)\|[/][^"'/*]\|[/]"\([^\"]\|[\].\)*"\|[/]'\([^\']\|[\].\)*'\)*
442 _pre_anchored = ^\($(_pre)\)
443 _comment_and_close = [^*]\|[*][^/*]\)*[*][*]*/
444 # help font-lock mode: '
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; \
469 # Quote all single quotes.
470 _sed_rm_comments_q = $(subst ','\'',$(_sed_remove_comments))
471 # help font-lock mode: '
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 :; \
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; } || :
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; \
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; } || :
524 # Override the default Cc: used in generating an announcement.
525 announcement_Cc_ = $(translation_project_), \
526 coreutils@gnu.org, coreutils-announce@gnu.org
528 -include $(srcdir)/dist-check.mk
530 update-copyright-env = \
531 UPDATE_COPYRIGHT_FORCE=1 \
532 UPDATE_COPYRIGHT_USE_INTERVALS=2 \
533 UPDATE_COPYRIGHT_MAX_LINE_LENGTH=79
535 # List syntax-check exemptions.
536 exclude_file_name_regexp--sc_space_tab = \
537 ^(tests/pr/|tests/misc/nl\.sh$$|gl/.*\.diff$$)
538 exclude_file_name_regexp--sc_bindtextdomain = \
539 ^(gl/.*|lib/euidaccess-stat|src/make-prime-list)\.c$$
540 exclude_file_name_regexp--sc_trailing_blank = ^tests/pr/
541 exclude_file_name_regexp--sc_system_h_headers = \
542 ^src/((system|copy)\.h|libstdbuf\.c|make-prime-list\.c)$$
544 _src = (false|lbracket|ls-(dir|ls|vdir)|tac-pipe|uname-(arch|uname))
545 exclude_file_name_regexp--sc_require_config_h_first = \
546 (^lib/buffer-lcm\.c|src/$(_src)\.c)$$
547 exclude_file_name_regexp--sc_require_config_h = \
548 $(exclude_file_name_regexp--sc_require_config_h_first)
550 exclude_file_name_regexp--sc_po_check = ^gl/
551 exclude_file_name_regexp--sc_prohibit_always-defined_macros = \
552 ^src/(seq|remove)\.c$$
553 exclude_file_name_regexp--sc_prohibit_empty_lines_at_EOF = ^tests/pr/
554 exclude_file_name_regexp--sc_program_name = \
555 ^(gl/.*|lib/euidaccess-stat|src/make-prime-list)\.c$$
556 exclude_file_name_regexp--sc_file_system = \
557 NEWS|^(init\.cfg|src/df\.c|tests/df/df-P\.sh)$$
558 exclude_file_name_regexp--sc_prohibit_always_true_header_tests = \
559 ^m4/stat-prog\.m4$$
560 exclude_file_name_regexp--sc_prohibit_fail_0 = \
561 (^.*/git-hooks/commit-msg|^tests/init\.sh|Makefile\.am|\.mk|.*\.texi)$$
562 exclude_file_name_regexp--sc_prohibit_atoi_atof = ^lib/euidaccess-stat\.c$$
564 # longlong.h is maintained elsewhere.
565 _ll = ^src/longlong\.h$$
566 exclude_file_name_regexp--sc_useless_cpp_parens = $(_ll)
567 exclude_file_name_regexp--sc_long_lines = $(_ll)
568 exclude_file_name_regexp--sc_space_before_open_paren = $(_ll)
570 tbi_1 = ^tests/pr/|(^gl/lib/reg.*\.c\.diff|\.mk|^man/help2man)$$
571 tbi_2 = ^scripts/git-hooks/(pre-commit|pre-applypatch|applypatch-msg)$$
572 tbi_3 = (GNU)?[Mm]akefile(\.am)?$$|$(_ll)
573 exclude_file_name_regexp--sc_prohibit_tab_based_indentation = \
574 $(tbi_1)|$(tbi_2)|$(tbi_3)
576 exclude_file_name_regexp--sc_preprocessor_indentation = \
577 ^(gl/lib/rand-isaac\.[ch]|gl/tests/test-rand-isaac\.c)$$|$(__ll)
578 exclude_file_name_regexp--sc_prohibit_stat_st_blocks = \
579 ^(src/system\.h|tests/du/2g\.sh)$$
581 exclude_file_name_regexp--sc_prohibit_continued_string_alpha_in_column_1 = \
582 ^src/(system\.h|od\.c|printf\.c)$$
584 exclude_file_name_regexp--sc_prohibit_test_backticks = \
585 ^tests/(local\.mk|(init|misc/stdbuf|factor/create-test)\.sh)$$
587 # Exempt test.c, since it's nominally shared, and relatively static.
588 exclude_file_name_regexp--sc_prohibit_operator_at_end_of_line = \
589 ^src/(ptx|test|head)\.c$$
591 exclude_file_name_regexp--sc_error_message_uppercase = ^src/factor\.c$$
592 exclude_file_name_regexp--sc_prohibit_atoi_atof = ^src/make-prime-list\.c$$
594 # Augment AM_CFLAGS to include our per-directory options:
595 AM_CFLAGS += $($(@D)_CFLAGS)
597 src_CFLAGS = $(WARN_CFLAGS)
598 lib_CFLAGS = $(GNULIB_WARN_CFLAGS)
599 gnulib-tests_CFLAGS = $(GNULIB_TEST_WARN_CFLAGS)
601 # Configuration to make the tight-scope syntax-check rule work with
602 # non-recursive make.
603 export _gl_TS_headers = $(srcdir)/cfg.mk
604 _gl_TS_dir = .
605 _gl_TS_obj_files = src/*.$(OBJEXT)
606 _gl_TS_other_headers = src/*.h