maint: tac: remove sole use of sprintf in favor of filenamecat
[coreutils.git] / Makefile.am
blob0359717bdc6a0a327ec7fc1fbd6f1e7429e2b3e9
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
22 changelog_etc =                         \
23   ChangeLog-2005                        \
24   ChangeLog-2006                        \
25   ChangeLog-2007                        \
26   ChangeLog-2008                        \
27   build-aux/ChangeLog-2007              \
28   doc/ChangeLog-2007                    \
29   lib/ChangeLog-2007                    \
30   m4/ChangeLog-2007                     \
31   old/fileutils/ChangeLog               \
32   old/fileutils/ChangeLog-1997          \
33   old/fileutils/NEWS                    \
34   old/sh-utils/ChangeLog                \
35   old/sh-utils/ChangeLog.0              \
36   old/sh-utils/NEWS                     \
37   old/textutils/ChangeLog               \
38   old/textutils/NEWS                    \
39   po/ChangeLog-2007
41 EXTRA_DIST =                            \
42   $(changelog_etc)                      \
43   .mailmap                              \
44   .prev-version                         \
45   .version                              \
46   .vg-suppressions                      \
47   THANKS.in                             \
48   THANKS-to-translators                 \
49   THANKStt.in                           \
50   bootstrap                             \
51   bootstrap.conf                        \
52   build-aux/cvsu                        \
53   cfg.mk                                \
54   dist-check.mk                         \
55   maint.mk                              \
56   thanks-gen
58 ALL_RECURSIVE_TARGETS += install-root
59 install-root:
60         cd src && $(MAKE) $@
62 ACLOCAL_AMFLAGS = -I m4
64 # Some tests always need root privileges, others need them only sometimes.
65 ALL_RECURSIVE_TARGETS += check-root
66 check-root:
67         cd tests && $(MAKE) $@ SUBDIRS=
69 # Shortcut targets to make it easier to run (very) expensive tests.
70 check-expensive:
71         $(MAKE) check RUN_EXPENSIVE_TESTS=yes
72 check-very-expensive:
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.
82 rm_subst = \
83   s!(rm -f (rm\b|\$$\(bin_PROGRAMS\)$$))!$$1 > /dev/null 2>&1 || /bin/$$1!
85 BUILT_SOURCES = .version
86 .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
98 .PHONY: gen-ChangeLog
99 gen-ChangeLog:
100         $(AM_V_GEN)if test -d .git; then                                \
101           $(top_srcdir)/build-aux/gitlog-to-changelog                   \
102             --since=$(gen_start_date) > $(distdir)/cl-t;                \
103           rm -f $(distdir)/ChangeLog;                                   \
104           mv $(distdir)/cl-t $(distdir)/ChangeLog;                      \
105         fi
107 ALL_RECURSIVE_TARGETS += distcheck-hook
108 distcheck-hook: check-ls-dircolors
109         $(MAKE) my-distcheck
110         $(MAKE) taint-distcheck
112 DISTCLEANFILES = VERSION
113 MAINTAINERCLEANFILES = THANKS-to-translators
114 THANKS-to-translators: po/LINGUAS THANKStt.in
115         $(AM_V_GEN)(                                                    \
116           cat $(srcdir)/THANKStt.in;                                    \
117           for lang in `cat $(srcdir)/po/LINGUAS`; do                    \
118             echo http://translationproject.org/team/$$lang.html;        \
119           done;                                                         \
120         ) > $@-tmp && mv $@-tmp $@
122 # Ensure that the sets of two-letter codes in ls.c and dircolors.c
123 # remain in sync.
124 .PHONY: check-ls-dircolors
125 check-ls-dircolors:
126         $(AM_V_GEN)dc=$$(sed -n '/static.*ls_codes\[/,/};'/p    \
127             $(srcdir)/src/dircolors.c                           \
128           |sed -n '/^  *"/p'|tr , '\n'|sed 's/^  *//'           \
129           |sed -n 's/^"\(..\)"/\1/p'|sort -u);                  \
130         ls=$$(sed -n '/static.*indicator_name\[/,/};'/\p        \
131             $(srcdir)/src/ls.c                                  \
132           |sed -n '/^  *"/p'|tr , '\n'|sed 's/^  *//'           \
133           |sed -n 's/^"\(..\)"/\1/p'|sort -u);                  \
134         test "$$dc" = "$$ls"
136 # Sort in traditional ASCII order, regardless of the current locale;
137 # otherwise we may get into trouble with distinct strings that the
138 # current locale considers to be equal.
139 ASSORT = LC_ALL=C sort
141 # Extract all lines up to the first one starting with "##".
142 prologue = perl -ne '/^\#\#/ and exit; print' $(srcdir)/THANKS.in
144 THANKS: THANKS.in Makefile.am .mailmap thanks-gen .version
145         $(AM_V_GEN)                                                     \
146         {                                                               \
147           $(prologue); echo;                                            \
148           { perl -ne '/^$$/.../^$$/ and print' $(srcdir)/THANKS.in      \
149               | grep -v '^$$' | perl -pe 's/  +/\0/';                   \
150             git log --pretty=format:'%aN%x00%aE'                        \
151               | $(ASSORT) -u;                                           \
152           } | $(srcdir)/thanks-gen                                      \
153             | LC_ALL=en_US.UTF-8 sort -f;                               \
154           echo;                                                         \
155           printf ';; %s\n' 'Local Variables:' 'coding: utf-8' End:;     \
156         } > $@-t && mv $@-t $@