1 # Customize maint.mk -*- makefile -*-
2 # Copyright (C) 2003-2009 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 # Use alpha.gnu.org for alpha and beta releases.
18 # Use ftp.gnu.org for major releases.
19 gnu_ftp_host-alpha
= alpha.gnu.org
20 gnu_ftp_host-beta
= alpha.gnu.org
21 gnu_ftp_host-major
= ftp.gnu.org
22 gnu_rel_host
= $(gnu_ftp_host-
$(RELEASE_TYPE
))
24 # Used in maint.mk's web-manual rule
25 manual_title
= Core GNU utilities
28 ftp
://$(gnu_rel_host
)/gnu
/coreutils
30 # The GnuPG ID of the key used to sign the tarballs.
33 # Tests not to run as part of "make distcheck".
34 local-checks-to-skip
= strftime-check
36 # Tools used to bootstrap this package, used for "announcement".
37 bootstrap-tools
= autoconf
,automake
,gnulib
,bison
39 # Now that we have better tests, make this the default.
42 old_NEWS_hash
= 8ed224902e335a80ec8340cd0d594d7f
44 # Ensure that the list of O_ symbols used to compute O_FULLBLOCK is complete.
45 dd
= $(srcdir)/src
/dd.c
48 @
{ echo O_FULLBLOCK
; perl
-nle
'/^ +\| (O_\w*)$$/ and print $$1' \
49 $(dd
); } |
sort > $@
.1
50 @
{ echo O_NOFOLLOW
; perl
-nle
'/{"[a-z]+",\s*(O_\w+)},/ and print $$1' \
51 $(dd
); } |
sort > $@
.2
52 @diff
-u
$@
.1 $@
.2 || diff
=1 || diff
=; \
55 && { echo
'$(ME): $(dd) has inconsistent O_ flag lists'>&2; \
58 # Ensure that dd's definition of LONGEST_SYMBOL stays in sync
59 # with the strings from the two affected variables.
60 dd_c
= $(srcdir)/src
/dd.c
62 ifneq ($(wildcard $(dd_c
)),)
63 @len
=$$( (sed
-n
'/conversions\[\] =$$/,/^};/p' $(dd_c
);\
64 sed
-n
'/flags\[\] =$$/,/^};/p' $(dd_c
) ) \
65 |sed
-n
'/"/s/^[^"]*"\([^"]*\)".*/\1/p' \
66 | wc
--max-line-length
); \
67 max
=$$(sed
-n
'/^#define LONGEST_SYMBOL /s///p' $(dd_c
) \
68 |tr
-d
'"' | wc
--max-line-length
); \
69 if
test "$$len" = "$$max"; then
:; else \
70 echo
'dd.c: LONGEST_SYMBOL is not longest' 1>&2; \
75 # Many m4 macros names once began with `jm_'.
76 # On 2004-04-13, they were all changed to start with gl_ instead.
77 # Make sure that none are inadvertently reintroduced.
79 @grep
-nE
'jm_[A-Z]' \
80 $$($(VC_LIST
) m4 |grep
'\.m4$$'; echo
/dev
/null
) && \
81 { echo
'$(ME): do not use jm_ in m4 macro names' \
84 # Ensure that each root-requiring test is run via the "check-root" rule.
87 && grep check-root tests
/Makefile.am
>/dev
/null
2>&1; then \
88 t1
=sc-root.expected
; t2
=sc-root.actual
; \
89 grep
-nl
'^require_root_$$' \
90 $$($(VC_LIST
) tests
) |sed s
,tests
/,, |
sort > $$t1; \
91 sed
-n
'/^root_tests =[ ]*\\$$/,/[^\]$$/p' \
92 $(srcdir)/tests
/Makefile.am \
93 | sed
's/^ *//;/^root_tests =/d' \
94 | tr
-s
'\012\\' ' ' | fmt
-1 |
sort > $$t2; \
95 diff
-u
$$t1 $$t2 || diff
=1 || diff
=; \
98 && { echo
'tests/Makefile.am: missing check-root action'>&2; \
102 # Ensure that the syntax_check_exceptions file list in Makefile.am
103 # stays in sync with corresponding files in the repository.
104 sce
= syntax_check_exceptions
106 @
test "$$( ($(VC_LIST) | sed -n '/^.x-sc_/p'; \
107 sed -n '/^$(sce) =[ ]*\\$$/,/[^\]$$/p' \
108 $(srcdir)/Makefile.am \
109 | sed 's/^ *//;/^$(sce) =/d' \
110 | tr -s '\012\\' ' ' | fmt -1 \
111 ) | sort | uniq -u)" \
112 && { echo
'Makefile.am: $(sce) mismatch' >&2; exit
1; } ||
:;
114 headers_with_interesting_macro_defs
= \
125 # Create a list of regular expressions matching the names
126 # of macros that are guaranteed by parts of gnulib to be defined.
128 @
(cd
$(srcdir)/lib
; \
129 for f in
$(headers_with_interesting_macro_defs
); do \
131 sed
-n
'/^# *define \([^_ (][^ (]*\)[ (].*/s//\1/p' $$f; \
134 | grep
-Ev
'ATTRIBUTE_NORETURN|SIZE_MAX' \
135 | sed
's/^/^# *define /' \
139 # Don't define macros that we already get from gnulib header files.
140 sc_always_defined_macros
: .re-defmac
141 @if
test -f
$(srcdir)/src
/system.h
; then \
142 trap
'rc=$$?; rm -f .re-defmac; exit $$rc' 0 1 2 3 15; \
143 grep
-f .re-defmac
$$($(VC_LIST
)) \
144 && { echo
'$(ME): define the above via some gnulib .h file' \
145 1>&2; exit
1; } ||
:; \
148 # Create a list of regular expressions matching the names
149 # of files included from system.h. Exclude a couple.
151 @sed
-n
'/^# *include /s///p' $(srcdir)/src
/system.h \
152 | grep
-Ev
'sys/(param|file)\.h' \
153 | sed
's/ .*//;;s/^["<]/^# *include [<"]/;s/\.h[">]$$/\\.h[">]/' \
157 # Files in src/ should not include directly any of
158 # the headers already included via system.h.
159 sc_system_h_headers
: .re-list
160 @if
test -f
$(srcdir)/src
/system.h
; then \
161 trap
'rc=$$?; rm -f .re-list; exit $$rc' 0 1 2 3 15; \
162 grep
-nE
-f .re-list \
163 $$($(VC_LIST_EXCEPT
) | grep
'^src/') \
164 && { echo
'$(ME): the above are already included via system.h'\
165 1>&2; exit
1; } ||
:; \
170 'solaris[^[:alnum:]]*2\.(7|8|9|[1-9][0-9])|sunos[^[:alnum:]][6-9]' \
171 $$($(VC_LIST_EXCEPT
)) && \
172 { echo
'$(ME): found misuse of Sun OS version numbers' 1>&2; \
175 ALL_RECURSIVE_TARGETS
+= sc_tight_scope
179 # Perl-based tests used to exec perl from a #!/bin/sh script.
180 # Now they all start with #!/usr/bin/perl and the portability
181 # infrastructure is in tests/Makefile.am. Make sure no old-style
182 # script sneaks back in.
183 sc_no_exec_perl_coreutils
:
184 @if
test -f
$(srcdir)/tests
/Coreutils.pm
; then \
185 grep
'^exec *\$$PERL.*MCoreutils' $$($(VC_LIST
) tests
) && \
186 { echo
1>&2 '$(ME): found anachronistic Perl-based tests'; \
190 # Ensure that date's --help output stays in sync with the info
191 # documentation for GNU strftime. The only exception is %N,
192 # which date accepts but GNU strftime does not.
193 extract_char
= sed
's/^[^%][^%]*%\(.\).*/\1/'
195 @if
test -f
$(srcdir)/src
/date.c
; then \
196 grep
'^ %. ' $(srcdir)/src
/date.c |
sort \
197 |
$(extract_char
) > $@
-src
; \
199 info libc date calendar format | grep
'^ `%.'\' \
200 |
$(extract_char
); } |
sort > $@
-info; \
201 diff
-u
$@
-src
$@
-info || exit
1; \
202 rm -f
$@
-src
$@
-info; \
205 include $(srcdir)/dist-check.mk