1 # Make coreutils. -*-Makefile-*-
3 # Copyright (C) 1990, 1993-2011 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 # Just prior to distribution, ...
70 # transform the automake-generated rule that runs `rm -f rm'.
71 # On some systems, that command would fail with a diagnostic like
72 # `rm: cannot unlink `rm': Text file busy' when `.' appears so early
73 # in the shell's search path that running `rm' would run the `rm'
74 # executable in the current directory.
75 # Similarly, adjust the clean-binPROGRAMS rule.
77 s!(rm -f (rm\b|\$$\(bin_PROGRAMS\)$$))!$$1 > /dev/null 2>&1 || /bin/$$1!
79 BUILT_SOURCES = .version
81 $(AM_V_GEN)echo $(VERSION) > $@-t && mv $@-t $@
83 # Arrange so that .tarball-version appears only in the distribution
84 # tarball, and never in a checked-out repository.
85 # The perl substitution is to change some key uses of "rm" to "/bin/rm".
86 # See the rm_subst comment for details.
87 dist-hook: gen-ChangeLog
88 $(AM_V_GEN)echo $(VERSION) > $(distdir)/.tarball-version
89 $(AM_V_at)perl -pi -e '$(rm_subst)' $(distdir)/src/Makefile.in
91 gen_start_date = 2008-02-08
94 $(AM_V_GEN)if test -d .git; then \
95 $(top_srcdir)/build-aux/gitlog-to-changelog \
96 --since=$(gen_start_date) > $(distdir)/cl-t; \
97 rm -f $(distdir)/ChangeLog; \
98 mv $(distdir)/cl-t $(distdir)/ChangeLog; \
101 ALL_RECURSIVE_TARGETS += distcheck-hook
102 distcheck-hook: check-ls-dircolors
104 $(MAKE) taint-distcheck
106 DISTCLEANFILES = VERSION
107 MAINTAINERCLEANFILES = THANKS-to-translators
108 THANKS-to-translators: po/LINGUAS THANKStt.in
110 cat $(srcdir)/THANKStt.in; \
111 for lang in `cat $(srcdir)/po/LINGUAS`; do \
112 echo http://translationproject.org/team/$$lang.html; \
114 ) > $@-tmp && mv $@-tmp $@
116 # Ensure that the sets of two-letter codes in ls.c and dircolors.c
118 .PHONY: check-ls-dircolors
120 $(AM_V_GEN)dc=$$(sed -n '/static.*ls_codes\[/,/};'/p \
121 $(srcdir)/src/dircolors.c \
122 |sed -n '/^ *"/p'|tr , '\n'|sed 's/^ *//' \
123 |sed -n 's/^"\(..\)"/\1/p'|sort -u); \
124 ls=$$(sed -n '/static.*indicator_name\[/,/};'/\p \
126 |sed -n '/^ *"/p'|tr , '\n'|sed 's/^ *//' \
127 |sed -n 's/^"\(..\)"/\1/p'|sort -u); \
130 # Sort in traditional ASCII order, regardless of the current locale;
131 # otherwise we may get into trouble with distinct strings that the
132 # current locale considers to be equal.
133 ASSORT = LC_ALL=C sort
135 # Extract all lines up to the first one starting with "##".
136 prologue = perl -ne '/^\#\#/ and exit; print' $(srcdir)/THANKS.in
138 THANKS: THANKS.in Makefile.am .mailmap thanks-gen .version
142 { perl -ne '/^$$/.../^$$/ and print' $(srcdir)/THANKS.in \
143 | grep -v '^$$' | perl -pe 's/ +/\0/'; \
144 git log --pretty=format:'%aN%x00%aE' \
146 } | $(srcdir)/thanks-gen \
147 | LC_ALL=en_US.UTF-8 sort -f; \
149 printf ';; %s\n' 'Local Variables:' 'coding: utf-8' End:; \
150 } > $@-t && mv $@-t $@