Make inter-release --version output more useful.
[platform/upstream/coreutils.git] / Makefile.am
1 # Make coreutils.                                       -*-Makefile-*-
2
3 # Copyright (C) 1990, 1993-2007 Free Software Foundation, Inc.
4
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.
9
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.
14
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/>.
17
18 SUBDIRS = lib src doc man po tests
19 EXTRA_DIST = Makefile.cfg Makefile.maint GNUmakefile \
20   .kludge-stamp .prev-version THANKS-to-translators THANKStt.in \
21   .vg-suppressions \
22   .x-po-check \
23   .x-sc_file_system .x-sc_obsolete_symbols \
24   .x-sc_prohibit_atoi_atof \
25   .x-sc_prohibit_strcmp \
26   .x-sc_require_config_h \
27   .x-sc_space_tab .x-sc_sun_os_names \
28   .x-sc_trailing_blank \
29   .x-sc_unmarked_diagnostics \
30   .x-sc_useless_cpp_parens \
31   ChangeLog-2005 \
32   bootstrap \
33   bootstrap.conf \
34   build-aux/cvsu \
35   build-aux/git-version-gen \
36   build-aux/vc-list-files \
37   gl/modules/getloadavg.diff \
38   m4/ChangeLog \
39   old/fileutils/ChangeLog \
40   old/fileutils/ChangeLog-1997 \
41   old/fileutils/NEWS \
42   old/sh-utils/ChangeLog \
43   old/sh-utils/ChangeLog.0 \
44   old/sh-utils/NEWS \
45   old/textutils/ChangeLog \
46   old/textutils/NEWS
47
48 install-root:
49         cd src && $(MAKE) $@
50
51 ACLOCAL_AMFLAGS = -I m4
52
53 # Some tests always need root privileges, others need them only sometimes.
54 check-root:
55         cd tests && $(MAKE) $@
56
57 # Arrange so that .version appears only in distribution tarballs,
58 # never in a checked-out repository.
59 dist-hook:
60         echo $(VERSION) > $(distdir)/.version
61         test -x $(srcdir)/build-aux/install-sh
62
63 distcheck-hook:
64         $(MAKE) my-distcheck
65
66 # Just prior to distribution, ...
67 # transform the automake-generated rule that runs `rm -f rm'.
68 # On some systems, that command would fail with a diagnostic like
69 # `rm: cannot unlink `rm': Text file busy' when `.' appears so early
70 # in the shell's search path that running `rm' would run the `rm'
71 # executable in the current directory.
72 # Similarly, adjust the clean-binPROGRAMS rule.
73
74 rm_subst = \
75   s!(rm -f (rm|\$$\(bin_PROGRAMS\)))$$!$$1 > /dev/null 2>&1 || /bin/$$1!
76 MAINTAINERCLEANFILES = .kludge-stamp
77 .kludge-stamp: $(srcdir)/src/Makefile.in
78         perl -pi -e '$(rm_subst)' $(srcdir)/src/Makefile.in
79         touch $@
80
81
82 MAINTAINERCLEANFILES += THANKS-to-translators
83 THANKS-to-translators: po/LINGUAS THANKStt.in
84         (                                                               \
85           cat $(srcdir)/THANKStt.in;                                    \
86           for lang in `cat $(srcdir)/po/LINGUAS`; do                            \
87             echo http://www.iro.umontreal.ca/contrib/po/HTML/team-$$lang.html; \
88           done;                                                         \
89         ) > $@-tmp && mv $@-tmp $@