1 # Make coreutils. -*-Makefile-*-
3 # Copyright (C) 1990-2012 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 \
48 THANKS-to-translators \
58 ALL_RECURSIVE_TARGETS += install-root
62 ACLOCAL_AMFLAGS = -I m4
64 # Some tests always need root privileges, others need them only sometimes.
65 ALL_RECURSIVE_TARGETS += check-root
67 cd tests && $(MAKE) $@ SUBDIRS=
69 # Shortcut targets to make it easier to run (very) expensive tests.
71 $(MAKE) check RUN_EXPENSIVE_TESTS=yes
73 $(MAKE) check-expensive RUN_VERY_EXPENSIVE_TESTS=yes
75 # Just prior to distribution, ...
76 # transform the automake-generated rule that runs 'rm -f rm'.
77 # On some systems, that command would fail with a diagnostic like
78 # "rm: cannot unlink 'rm': Text file busy" when '.' appears so early
79 # in the shell's search path that running 'rm' would run the 'rm'
80 # executable in the current directory.
81 # Similarly, adjust the clean-binPROGRAMS rule.
83 s!(rm -f (rm\b|\$$\(bin_PROGRAMS\)$$))!$$1 > /dev/null 2>&1 || /bin/$$1!
85 BUILT_SOURCES = .version
87 $(AM_V_GEN)echo $(VERSION) > $@-t && mv $@-t $@
89 # Arrange so that .tarball-version appears only in the distribution
90 # tarball, and never in a checked-out repository.
91 # The perl substitution is to change some key uses of "rm" to "/bin/rm".
92 # See the rm_subst comment for details.
93 dist-hook: gen-ChangeLog
94 $(AM_V_GEN)echo $(VERSION) > $(distdir)/.tarball-version
95 $(AM_V_at)perl -pi -e '$(rm_subst)' $(distdir)/src/Makefile.in
97 gen_start_date = 2008-02-08
100 $(AM_V_GEN)if test -d .git; then \
101 $(top_srcdir)/build-aux/gitlog-to-changelog \
102 --amend=$(srcdir)/build-aux/git-log-fix \
103 --since=$(gen_start_date) > $(distdir)/cl-t; \
104 rm -f $(distdir)/ChangeLog; \
105 mv $(distdir)/cl-t $(distdir)/ChangeLog; \
108 ALL_RECURSIVE_TARGETS += distcheck-hook
109 distcheck-hook: check-ls-dircolors
111 $(MAKE) taint-distcheck
113 DISTCLEANFILES = VERSION
114 MAINTAINERCLEANFILES = THANKS-to-translators
115 THANKS-to-translators: po/LINGUAS THANKStt.in
117 cat $(srcdir)/THANKStt.in; \
118 for lang in `cat $(srcdir)/po/LINGUAS`; do \
119 echo http://translationproject.org/team/$$lang.html; \
121 ) > $@-tmp && mv $@-tmp $@
123 # Ensure that the sets of two-letter codes in ls.c and dircolors.c
125 .PHONY: check-ls-dircolors
127 $(AM_V_GEN)dc=$$(sed -n '/static.*ls_codes\[/,/};'/p \
128 $(srcdir)/src/dircolors.c \
129 |sed -n '/^ *"/p'|tr , '\n'|sed 's/^ *//' \
130 |sed -n 's/^"\(..\)"/\1/p'|sort -u); \
131 ls=$$(sed -n '/static.*indicator_name\[/,/};'/\p \
133 |sed -n '/^ *"/p'|tr , '\n'|sed 's/^ *//' \
134 |sed -n 's/^"\(..\)"/\1/p'|sort -u); \
137 # Sort in traditional ASCII order, regardless of the current locale;
138 # otherwise we may get into trouble with distinct strings that the
139 # current locale considers to be equal.
140 ASSORT = LC_ALL=C sort
142 # Extract all lines up to the first one starting with "##".
143 prologue = perl -ne '/^\#\#/ and exit; print' $(srcdir)/THANKS.in
145 THANKS: THANKS.in Makefile.am .mailmap thanks-gen .version
146 $(AM_V_GEN)rm -f $@-t $@; \
149 { perl -ne '/^$$/.../^$$/ and print' $(srcdir)/THANKS.in \
150 | grep -v '^$$' | perl -pe 's/ +/\0/'; \
151 git log --pretty=format:'%aN%x00%aE' \
153 } | $(srcdir)/thanks-gen \
154 | LC_ALL=en_US.UTF-8 sort -f; \
156 printf ';; %s\n' 'Local Variables:' 'coding: utf-8' End:; \
157 } > $@-t && chmod a-w $@-t && mv $@-t $@
159 # Some of our git hook scripts are supposed to be identical to git's samples.
160 # See if they are still in sync.
161 .PHONY: check-git-hook-script-sync
162 check-git-hook-script-sync:
165 && cd $$t && git init -q && cd .git/hooks \
166 && for i in pre-commit pre-applypatch applypatch-msg; do \
167 diff $(abs_top_srcdir)/scripts/git-hooks/$$i $$i.sample \