1 # Make coreutils. -*-Makefile-*-
3 # Copyright (C) 1990, 1993-2009 Free Software Foundation, Inc.
5 # This program is free software: you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation, either version 3 of the License, or
8 # (at your option) any later version.
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License
16 # along with this program. If not, see <http://www.gnu.org/licenses/>.
18 ALL_RECURSIVE_TARGETS =
20 SUBDIRS = lib src doc man po tests gnulib-tests
27 build-aux/ChangeLog-2007 \
31 old/fileutils/ChangeLog \
32 old/fileutils/ChangeLog-1997 \
34 old/sh-utils/ChangeLog \
35 old/sh-utils/ChangeLog.0 \
37 old/textutils/ChangeLog \
41 syntax_check_exceptions = \
43 .x-sc_error_message_uppercase \
45 .x-sc_obsolete_symbols \
48 .x-sc_prohibit_atoi_atof \
49 .x-sc_prohibit_stat_st_blocks \
50 .x-sc_prohibit_strcmp \
51 .x-sc_require_config_h \
52 .x-sc_require_config_h_first \
55 .x-sc_system_h_headers \
56 .x-sc_trailing_blank \
57 .x-sc_unmarked_diagnostics \
58 .x-sc_useless_cpp_parens
62 $(syntax_check_exceptions) \
66 THANKS-to-translators \
73 gl/modules/getloadavg.diff \
76 ALL_RECURSIVE_TARGETS += install-root
80 ACLOCAL_AMFLAGS = -I m4
82 # Some tests always need root privileges, others need them only sometimes.
83 ALL_RECURSIVE_TARGETS += check-root
85 cd tests && $(MAKE) $@ SUBDIRS=
87 # Just prior to distribution, ...
88 # transform the automake-generated rule that runs `rm -f rm'.
89 # On some systems, that command would fail with a diagnostic like
90 # `rm: cannot unlink `rm': Text file busy' when `.' appears so early
91 # in the shell's search path that running `rm' would run the `rm'
92 # executable in the current directory.
93 # Similarly, adjust the clean-binPROGRAMS rule.
95 s!(rm -f (rm\b|\$$\(bin_PROGRAMS\)$$))!$$1 > /dev/null 2>&1 || /bin/$$1!
97 BUILT_SOURCES = .version
99 echo $(VERSION) > $@-t && mv $@-t $@
101 # Arrange so that .tarball-version appears only in the distribution
102 # tarball, and never in a checked-out repository.
103 # The perl substitution is to change some key uses of "rm" to "/bin/rm".
104 # See the rm_subst comment for details.
105 dist-hook: gen-ChangeLog
106 echo $(VERSION) > $(distdir)/.tarball-version
107 perl -pi -e '$(rm_subst)' $(distdir)/src/Makefile.in
109 gen_start_date = 2008-02-08
110 .PHONY: gen-ChangeLog
112 if test -d .git; then \
113 $(top_srcdir)/build-aux/gitlog-to-changelog \
114 --since=$(gen_start_date) > $(distdir)/cl-t; \
115 rm -f $(distdir)/ChangeLog; \
116 mv $(distdir)/cl-t $(distdir)/ChangeLog; \
119 ALL_RECURSIVE_TARGETS += distcheck-hook
120 distcheck-hook: check-ls-dircolors
123 DISTCLEANFILES = VERSION
124 MAINTAINERCLEANFILES = THANKS-to-translators
125 THANKS-to-translators: po/LINGUAS THANKStt.in
127 cat $(srcdir)/THANKStt.in; \
128 for lang in `cat $(srcdir)/po/LINGUAS`; do \
129 echo http://translationproject.org/team/$$lang.html; \
131 ) > $@-tmp && mv $@-tmp $@
133 # Ensure that the sets of two-letter codes in ls.c and dircolors.c
135 .PHONY: check-ls-dircolors
137 dc=$$(sed -n '/static.*ls_codes\[/,/};'/p \
138 $(srcdir)/src/dircolors.c \
139 |sed -n '/^ *"/p'|tr , '\n'|sed 's/^ *//' \
140 |sed -n 's/^"\(..\)"/\1/p'|sort -u); \
141 ls=$$(sed -n '/static.*indicator_name\[/,/};'/\p \
143 |sed -n '/^ *"/p'|tr , '\n'|sed 's/^ *//' \
144 |sed -n 's/^"\(..\)"/\1/p'|sort -u); \