1 # Customize maint.mk -*- makefile -*-
2 # Copyright (C) 2003-2013 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.
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
48 old_NEWS_hash
= 6ae04dc3907ea1290f12e6b1507cc42c
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
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
=; \
67 && { echo
'$(ME): $(dd) has inconsistent O_ flag lists'>&2; \
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
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; \
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.
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' \
96 # Ensure that each root-requiring test is run via the "check-root" rule.
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; \
105 # Ensure that all version-controlled test cases are listed in $(all_tests).
106 sc_tests_list_consistency
:
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
; \
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.
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[">]/' \
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"; \
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; \
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; } ||
:; \
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; \
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)$$,,' \
167 | $(ASSORT) -u`; do \
168 test "$$i" = '[' && continue
; \
170 if
test "$$i" = install; then \
172 elif
test "$$i" = test; then \
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 \
190 ||
{ echo
"$(ME): link rules for $$i do not include" \
191 '$$(LIBICONV)' 1>&2; exit
1; }; \
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; } \
204 # Ensure the alternative __attribute (keyword) form isn't used as
205 # that form is not elided where required. Also ensure that we don't
206 # directly use attributes already defined by gnulib.
207 # TODO: move the check for _GL... attributes to gnulib.
208 sc_prohibit-gl-attributes
:
209 @cd
$(srcdir) && GIT_PAGER
= git grep
-En \
210 "__attribute |__(unused|pure|const)__" src gl
/lib
/*.
[ch
] \
211 && { echo
'$(ME): Use _GL... attribute macros' 1>&2; exit
1; } \
214 # Look for lines longer than 80 characters, except omit:
215 # - program-generated long lines in diff headers,
216 # - tests involving long checksum lines, and
217 # - the 'pr' test cases.
219 FILTER_LONG_LINES
= \
220 /^
[^
:]*\.diff
:[^
:]*:@@
/ d
; \
221 \|^
[^
:]*tests
/misc
/sha
[0-9]*sum.
*\.pl
[-:]| d
; \
222 \|^
[^
:]*tests
/pr
/|
{ \|^
[^
:]*tests
/pr
/pr-tests
:|
!d
; };
224 @files
=$$($(VC_LIST_EXCEPT
)) \
225 halt
='line(s) with more than $(LINE_LEN_MAX) characters; reindent'; \
226 for file in
$$files; do \
227 expand
$$file | grep
-nE
'^.{$(LINE_LEN_MAX)}.' | \
228 sed
-e
"s|^|$$file:|" -e
'$(FILTER_LONG_LINES)'; \
229 done | grep .
&& { msg
="$$halt" $(_sc_say_and_exit
) } ||
:
231 # Option descriptions should not start with a capital letter.
232 # One could grep source directly as follows:
233 # grep -E " {2,6}-.*[^.] [A-Z][a-z]" $$($(VC_LIST_EXCEPT) | grep '\.c$$')
234 # but that would miss descriptions not on the same line as the -option.
235 sc_option_desc_uppercase
: $(ALL_MANS
)
236 @grep
'^\\fB\\-' -A1 man
/*.1 | LC_ALL
=C grep
'\.1.[A-Z][a-z]' \
237 && { echo
1>&2 '$@: found initial capitals in --help'; exit
1; } ||
:
239 # Ensure all man/*.[1x] files are present.
240 sc_man_file_correlation
: check-x-vs-1 check-programs-vs-x
242 # Ensure that for each .x file in the 'man/' subdirectory, there is a
243 # corresponding .1 file in the definition of $(EXTRA_MANS).
244 # But since that expansion usually lacks programs like arch and hostname,
245 # add them here manually.
248 @PATH
=.
/src
$(PATH_SEPARATOR
)$$PATH; export PATH
; \
250 (cd
$(srcdir)/man
&& ls
-1 *.x
) \
251 | sed
's/\.x$$//' |
$(ASSORT
) > $$t; \
252 (echo
$(patsubst man
/%,%,$(ALL_MANS
)) \
253 | tr
-s
' ' '\n' | sed
's/\.1$$//') \
254 |
$(ASSORT
) -u | diff
- $$t ||
{ rm $$t; exit
1; }; \
257 # Writing a portable rule to generate a manpage like '[.1' would be
258 # a nightmare, so filter that out.
259 all-progs-but-lbracket
= $(filter-out [,$(patsubst src
/%,%,$(all_programs
)))
261 # Ensure that for each coreutils program there is a corresponding
262 # '.x' file in the 'man/' subdirectory.
263 .PHONY
: check-programs-vs-x
266 for p in dummy
$(all-progs-but-lbracket
); do \
267 case
$$p in
*.so
) continue
;; esac
; \
268 test $$p = dummy
&& continue
; \
269 test $$p = ginstall
&& p
=install ||
: ; \
270 test -f
$(srcdir)/man
/$$p.x \
271 ||
{ echo missing
$$p.x
1>&2; status
=1; }; \
275 # Ensure that the end of each release's section is marked by two empty lines.
276 sc_NEWS_two_empty_lines
:
277 @sed
-n
4,/Noteworthy
/p
$(srcdir)/NEWS \
278 | perl
-n0e
'/(^|\n)\n\n\* Noteworthy/ or exit 1' \
279 ||
{ echo
'$(ME): use two empty lines to separate NEWS sections' \
282 # With split lines, don't leave an operator at end of line.
283 # Instead, put it on the following line, where it is more apparent.
284 # Don't bother checking for "*" at end of line, since it provokes
285 # far too many false positives, matching constructs like "TYPE *".
286 # Similarly, omit "=" (initializers).
287 binop_re_ ?
= [-/+^
!<>]|
[-/+*^
!<>=]=|
&&?|\|\|?|
<<=?|
>>=?
288 sc_prohibit_operator_at_end_of_line
:
289 @prohibit
='. ($(binop_re_))$$' \
290 in_vc_files
='\.[chly]$$' \
291 halt
='found operator at end of line' \
294 # Don't use "readlink" or "readlinkat" directly
295 sc_prohibit_readlink
:
296 @prohibit
='\<readlink(at)? \(' \
297 halt
='do not use readlink(at); use via xreadlink or areadlink*' \
300 # Don't use address of "stat" or "lstat" functions
301 sc_prohibit_stat_macro_address
:
302 @prohibit
='\<l?stat '':|&l?stat\>' \
303 halt
='stat() and lstat() may be function-like macros' \
306 # Ensure that date's --help output stays in sync with the info
307 # documentation for GNU strftime. The only exception is %N,
308 # which date accepts but GNU strftime does not.
309 extract_char
= sed
's/^[^%][^%]*%\(.\).*/\1/'
311 @if
test -f
$(srcdir)/src
/date.c
; then \
312 grep
'^ %. ' $(srcdir)/src
/date.c |
sort \
313 |
$(extract_char
) > $@
-src
; \
315 info libc date calendar format
2>/dev
/null|grep
'^ `%.'\'\
316 |
$(extract_char
); } |
sort > $@
-info; \
317 if
test $$(stat
--format
%s
$@
-info) != 2; then \
318 diff
-u
$@
-src
$@
-info || exit
1; \
320 echo
'$(ME): skipping $@: libc info not installed' 1>&2; \
322 rm -f
$@
-src
$@
-info; \
325 # Indent only with spaces.
326 sc_prohibit_tab_based_indentation
:
328 halt
='TAB in indentation; use only spaces' \
331 # The SEE ALSO section of a man page should not be terminated with
332 # a period. Check the first line after each "SEE ALSO" line in man/*.x:
333 sc_prohibit_man_see_also_period
:
334 @grep
-nB1
'\.$$' $$($(VC_LIST_EXCEPT
) | grep
'man/.*\.x$$') \
335 | grep
-A1
-e
'-\[SEE ALSO\]' | grep
'\.$$' && \
336 { echo
'$(ME): do not end "SEE ALSO" section with a period' \
339 # Don't use "indent-tabs-mode: nil" anymore. No longer needed.
340 sc_prohibit_emacs__indent_tabs_mode__setting
:
341 @prohibit
='^( *[*#] *)?indent-tabs-mode:' \
342 halt
='use of emacs indent-tabs-mode: setting' \
345 # Ensure that tests don't include a redundant fail=0.
347 @prohibit
='\<fail=0\>' \
348 halt
='fail=0 initialization' \
351 # The mode part of a setfacl -m option argument must be three bytes long.
352 # I.e., an argument of user:bin:rw or user:bin:r will make Solaris 10's
353 # setfacl reject it with: "Unrecognized character found in mode field".
354 # Use hyphens to give it a length of 3: "...:rw-" or "...:r--".
355 sc_prohibit_short_facl_mode_spec
:
356 @prohibit
='\<setfacl .*-m.*:.*:[rwx-]{1,2} ' \
357 halt
='setfacl mode string length < 3; extend with hyphen(s)' \
360 # Ensure that "stdio--.h" is used where appropriate.
361 sc_require_stdio_safer
:
362 @if
$(VC_LIST_EXCEPT
) | grep
-l
'\.[ch]$$' > /dev
/null
; then \
363 files
=$$(grep
-l
'\bfreopen \?(' $$($(VC_LIST_EXCEPT
) \
364 | grep
'\.[ch]$$')); \
365 test -n
"$$files" && grep
-LE
'include "stdio--.h"' $$files \
367 { echo
'$(ME): the above files should use "stdio--.h"' \
368 1>&2; exit
1; } ||
:; \
372 sc_prohibit_perl_hash_quotes
:
373 @prohibit
="\{'[A-Z_]+' *[=}]" \
374 halt
="in Perl code, write \$$hash{KEY}, not \$$hash{'K''EY'}" \
377 # Prefer xnanosleep over other less-precise sleep methods
379 @prohibit
='\<(nano|u)?sleep \(' \
380 halt
='prefer xnanosleep over other sleep interfaces' \
383 # Use print_ver_ (from init.cfg), not open-coded $VERBOSE check.
384 sc_prohibit_verbose_version
:
385 @prohibit
='test "\$$VERBOSE" = yes && .* --version' \
386 halt
='use the print_ver_ function instead...' \
389 # Use framework_failure_, not the old name without the trailing underscore.
390 sc_prohibit_framework_failure
:
391 @prohibit
='\<framework_''failure\>' \
392 halt
='use framework_failure_ instead' \
395 # Prohibit the use of `...` in tests/. Use $(...) instead.
396 sc_prohibit_test_backticks
:
397 @prohibit
='`' in_vc_files
='^tests/' \
398 halt
='use $$(...), not `...` in tests/' \
401 # Programs like sort, ls, expr use PROG_FAILURE in place of EXIT_FAILURE.
402 # Others, use the EXIT_CANCELED, EXIT_ENOENT, etc. macros defined in system.h.
403 # In those programs, ensure that EXIT_FAILURE is not used by mistake.
404 sc_some_programs_must_avoid_exit_failure
:
405 @grep
-nw EXIT_FAILURE \
406 $$(git grep
-El
'[^T]_FAILURE|EXIT_CANCELED' src
) \
407 | grep
-vE
'= EXIT_FAILURE|exit \(.* \?' | grep . \
408 && { echo
'$(ME): do not use EXIT_FAILURE in the above' \
411 # Ensure that tests call the require_ulimit_v_ function if using ulimit -v
412 sc_prohibit_test_ulimit_without_require_
:
413 @
(git grep
-l require_ulimit_v_ tests
; \
414 git grep
-l
'ulimit -v' tests
) \
415 |
sort | uniq
-u | grep .
&& { echo
"$(ME): the above test(s)"\
416 " should match require_ulimit_v_ with ulimit -v" 1>&2; exit
1; } ||
:
418 # Ensure that tests call the print_ver_ function for programs which are
419 # actually used in that test.
420 sc_prohibit_test_calls_print_ver_with_irrelevant_argument
:
421 @git grep
-w print_ver_ tests \
422 | sed
's#:print_ver_##' \
424 while read file name
; do \
425 for i in
$$name; do \
426 case
"$$i" in
install) i
=ginstall
;; esac
; \
427 grep
-w
"$$i" $$file|grep
-vw print_ver_|grep
-q . \
429 echo
"*** Test: $$file, offending: $$i." 1>&2; };\
432 test $$fail = 0 || exit
1; \
433 } ||
{ echo
"$(ME): the above test(s) call print_ver_ for" \
434 "program(s) they don't use" 1>&2; exit
1; }
436 # Exempt the contents of any usage function from the following.
437 _continued_string_col_1
= \
438 s
/^usage .
*?
\n}//ms
;/\\\n\w
/ and
print ("$$ARGV\n"),$$e=1;END
{$$e||
=0;exit
$$e}
439 # Ding any source file that has a continued string with an alphabetic in the
440 # first column of the following line. We prohibit them because they usually
441 # trigger false positives in tools that try to map an arbitrary line number
442 # to the enclosing function name. Of course, very many strings do precisely
443 # this, *when they are part of the usage function*. That is why we exempt
444 # the contents of any function named "usage".
445 sc_prohibit_continued_string_alpha_in_column_1
:
446 @perl
-0777 -ne
'$(_continued_string_col_1)' \
447 $$($(VC_LIST_EXCEPT
) | grep
'\.[ch]$$') \
448 ||
{ echo
'$(ME): continued string with word in first column' \
450 # Use this to list offending lines:
451 # git ls-files |grep '\.[ch]$' | xargs \
452 # perl -n -0777 -e 's/^usage.*?\n}//ms;/\\\n\w/ and print "$ARGV\n"' \
453 # | xargs grep -A1 '\\$'|grep '\.[ch][:-][_a-zA-Z]'
456 ###########################################################
457 _p0
= \
([^
"'/]\|"\
([^
\"]\|
[\
].\
)*"\|'\([^\']\|[\].\)*'
458 _pre = $(_p0)\|[/][^"'/*]\|[/]"\([^\"]\|[\].\)*"\|[/]'\
([^
\']\|
[\
].\
)*'\)*
459 _pre_anchored = ^\($(_pre)\)
460 _comment_and_close = [^*]\|[*][^/*]\)*[*][*]*/
461 # help font-lock mode: '
463 # A sed expression that removes ANSI C and ISO C99 comments.
464 # Derived from the one in GNU gettext's 'moopp' preprocessor.
465 _sed_remove_comments
= \
469 s
,$(_pre_anchored
)//.
*,\
1,; \
471 s
,$(_pre_anchored
)/[*]\
($(_comment_and_close
),\
1 ,; \
474 s
,$(_pre_anchored
)/[*].
*,\
1 ,; \
478 s
,^\
($(_comment_and_close
),,; \
486 # Quote all single quotes.
487 _sed_rm_comments_q
= $(subst ','\'',$(_sed_remove_comments))
488 # help font-lock mode: '
490 _space_before_paren_exempt
=?
\\n
\\$$
491 _space_before_paren_exempt
= \
492 (^
*\
#|\\n\\$$|%s\(to %s|(date|group|character)\(s\))
493 # Ensure that there is a space before each open parenthesis in C code.
494 sc_space_before_open_paren
:
495 @if
$(VC_LIST_EXCEPT
) | grep
-l
'\.[ch]$$' > /dev
/null
; then \
497 for c in
$$($(VC_LIST_EXCEPT
) | grep
'\.[ch]$$'); do \
498 sed
'$(_sed_rm_comments_q)' $$c 2>/dev
/null \
499 | grep
-i
'[[:alnum:]](' \
500 | grep
-vE
'$(_space_before_paren_exempt)' \
501 | grep .
&& { fail
=1; echo
"*** $$c"; }; \
504 { echo
'$(ME): the above files lack a space-before-open-paren' \
505 1>&2; exit
1; } ||
:; \
509 # Similar to the gnulib maint.mk rule for sc_prohibit_strcmp
510 # Use STREQ_LEN or STRPREFIX rather than comparing strncmp == 0, or != 0.
512 @grep
-nE
'! *str''ncmp *\(|\<str''ncmp *\(.+\) *[!=]=' \
513 $$($(VC_LIST_EXCEPT
)) \
514 | grep
-vE
':# *define STR(N?EQ_LEN|PREFIX)\(' && \
515 { echo
'$(ME): use STREQ_LEN or STRPREFIX instead of str''ncmp' \
518 # Enforce recommended preprocessor indentation style.
519 sc_preprocessor_indentation
:
520 @if cppi
--version
>/dev
/null
2>&1; then \
521 $(VC_LIST_EXCEPT
) | grep
'\.[ch]$$' | xargs cppi
-a
-c \
522 ||
{ echo
'$(ME): incorrect preprocessor indentation' 1>&2; \
525 echo
'$(ME): skipping test $@: cppi not installed' 1>&2; \
528 # THANKS.in is a list of name/email pairs for people who are mentioned in
529 # commit logs (and generated ChangeLog), but who are not also listed as an
530 # author of a commit. Name/email pairs of commit authors are automatically
531 # extracted from the repository. As a very minor factorization, when
532 # someone who was initially listed only in THANKS.in later authors a commit,
533 # this rule detects that their pair may now be removed from THANKS.in.
534 sc_THANKS_in_duplicates
:
535 @
{ git log
--pretty
=format
:%aN |
sort -u
; \
536 cut
-b-36 THANKS.in | sed
'/^$$/d;s/ *$$//'; } \
537 |
sort | uniq
-d | grep . \
538 && { echo
'$(ME): remove the above names from THANKS.in' \
541 # Look for developer diagnostics that are marked for translation.
542 # This won't find any for which devmsg's format string is on a separate line.
543 sc_marked_devdiagnostics
:
544 @prohibit
='\<devmsg *\(.*_\(' \
545 halt
='found marked developer diagnostic(s)' \
548 # Override the default Cc: used in generating an announcement.
549 announcement_Cc_
= $(translation_project_
), \
550 coreutils@gnu.org
, coreutils-announce@gnu.org
552 -include $(srcdir)/dist-check.mk
554 update-copyright-env
= \
555 UPDATE_COPYRIGHT_FORCE
=1 \
556 UPDATE_COPYRIGHT_USE_INTERVALS
=2 \
557 UPDATE_COPYRIGHT_MAX_LINE_LENGTH
=79
559 # List syntax-check exemptions.
560 exclude_file_name_regexp--sc_space_tab
= \
561 ^
(tests
/pr
/|tests
/misc
/nl\.sh
$$|gl
/.
*\.diff
$$)
562 exclude_file_name_regexp--sc_bindtextdomain
= \
563 ^
(gl
/.
*|lib
/euidaccess-stat|src
/make-prime-list
)\.c
$$
564 exclude_file_name_regexp--sc_trailing_blank
= ^tests
/pr
/
565 exclude_file_name_regexp--sc_system_h_headers
= \
566 ^src
/((system|copy
)\.h|libstdbuf\.c|make-prime-list\.c
)$$
568 _src
= (false|lbracket|ls-
(dir|ls|vdir
)|tac-pipe|uname-
(arch|uname
))
569 exclude_file_name_regexp--sc_require_config_h_first
= \
570 (^lib
/buffer-lcm\.c|src
/$(_src
)\.c
)$$
571 exclude_file_name_regexp--sc_require_config_h
= \
572 $(exclude_file_name_regexp--sc_require_config_h_first
)
574 exclude_file_name_regexp--sc_po_check
= ^gl
/
575 exclude_file_name_regexp--sc_prohibit_always-defined_macros
= \
576 ^src
/(seq|remove
)\.c
$$
577 exclude_file_name_regexp--sc_prohibit_empty_lines_at_EOF
= ^tests
/pr
/
578 exclude_file_name_regexp--sc_program_name
= \
579 ^
(gl
/.
*|lib
/euidaccess-stat|src
/make-prime-list
)\.c
$$
580 exclude_file_name_regexp--sc_file_system
= \
581 NEWS|^
(init\.cfg|src
/df\.c|tests
/df
/df-P\.sh|tests
/df
/df-output\.sh
)$$
582 exclude_file_name_regexp--sc_prohibit_always_true_header_tests
= \
584 exclude_file_name_regexp--sc_prohibit_fail_0
= \
585 (^.
*/git-hooks
/commit-msg|^tests
/init\.sh|Makefile\.am|\.mk|.
*\.texi
)$$
586 exclude_file_name_regexp--sc_prohibit_atoi_atof
= ^lib
/euidaccess-stat\.c
$$
588 # longlong.h is maintained elsewhere.
589 _ll
= ^src
/longlong\.h
$$
590 exclude_file_name_regexp--sc_useless_cpp_parens
= $(_ll
)
591 exclude_file_name_regexp--sc_long_lines
= $(_ll
)
592 exclude_file_name_regexp--sc_space_before_open_paren
= $(_ll
)
594 tbi_1
= ^tests
/pr
/|
(^gl
/lib
/reg.
*\.c\.diff|\.mk|^man
/help2man
)$$
595 tbi_2
= ^scripts
/git-hooks
/(pre-commit|pre-applypatch|applypatch-msg
)$$
596 tbi_3
= (GNU
)?
[Mm
]akefile
(\.am
)?
$$|
$(_ll
)
597 exclude_file_name_regexp--sc_prohibit_tab_based_indentation
= \
598 $(tbi_1
)|
$(tbi_2
)|
$(tbi_3
)
600 exclude_file_name_regexp--sc_preprocessor_indentation
= \
601 ^
(gl
/lib
/rand-isaac\.
[ch
]|gl
/tests
/test-rand-isaac\.c
)$$|
$(_ll
)
602 exclude_file_name_regexp--sc_prohibit_stat_st_blocks
= \
603 ^
(src
/system\.h|tests
/du
/2g\.sh
)$$
605 exclude_file_name_regexp--sc_prohibit_continued_string_alpha_in_column_1
= \
606 ^src
/(system\.h|od\.c|printf\.c|getlimits\.c
)$$
608 exclude_file_name_regexp--sc_prohibit_test_backticks
= \
609 ^tests
/(local\.mk|
(init|misc
/stdbuf|factor
/create-test
)\.sh
)$$
611 # Exempt test.c, since it's nominally shared, and relatively static.
612 exclude_file_name_regexp--sc_prohibit_operator_at_end_of_line
= \
613 ^src
/(ptx|
test|head
)\.c
$$
615 exclude_file_name_regexp--sc_error_message_uppercase
= ^src
/factor\.c
$$
616 exclude_file_name_regexp--sc_prohibit_atoi_atof
= ^src
/make-prime-list\.c
$$
618 # Augment AM_CFLAGS to include our per-directory options:
619 AM_CFLAGS
+= $($(@D
)_CFLAGS
)
621 src_CFLAGS
= $(WARN_CFLAGS
)
622 lib_CFLAGS
= $(GNULIB_WARN_CFLAGS
)
623 gnulib-tests_CFLAGS
= $(GNULIB_TEST_WARN_CFLAGS
)
625 # Configuration to make the tight-scope syntax-check rule work with
626 # non-recursive make.
627 export _gl_TS_headers
= $(srcdir)/cfg.mk
629 _gl_TS_obj_files
= src
/*.
$(OBJEXT
)
630 _gl_TS_other_headers
= src
/*.h
632 # Tell the tight_scope rule about an exceptional "extern" variable.
633 # Normally, the rule would detect its declaration, but that uses a
634 # different name, __clz_tab.
635 _gl_TS_unmarked_extern_vars
= factor_clz_tab