maint: Add a syntax-check to ensure all .x-sc_ files are distributed
[platform/upstream/coreutils.git] / Makefile.am
1 # Make coreutils.                                       -*-Makefile-*-
2
3 # Copyright (C) 1990, 1993-2009 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 ALL_RECURSIVE_TARGETS =
19
20 SUBDIRS = lib src doc man po tests gnulib-tests
21
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
40
41 syntax_check_exceptions =               \
42   .x-sc_GPL_version                     \
43   .x-sc_error_message_uppercase         \
44   .x-sc_file_system                     \
45   .x-sc_obsolete_symbols                \
46   .x-sc_po_check                        \
47   .x-sc_program_name                    \
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          \
53   .x-sc_space_tab                       \
54   .x-sc_sun_os_names                    \
55   .x-sc_trailing_blank                  \
56   .x-sc_unmarked_diagnostics            \
57   .x-sc_useless_cpp_parens
58
59 EXTRA_DIST =                            \
60   $(changelog_etc)                      \
61   $(syntax_check_exceptions)            \
62   .prev-version                         \
63   .version                              \
64   .vg-suppressions                      \
65   THANKS-to-translators                 \
66   THANKStt.in                           \
67   bootstrap                             \
68   bootstrap.conf                        \
69   build-aux/cvsu                        \
70   cfg.mk                                \
71   dist-check.mk                         \
72   gl/modules/getloadavg.diff            \
73   maint.mk
74
75 ALL_RECURSIVE_TARGETS += install-root
76 install-root:
77         cd src && $(MAKE) $@
78
79 ACLOCAL_AMFLAGS = -I m4
80
81 # Some tests always need root privileges, others need them only sometimes.
82 ALL_RECURSIVE_TARGETS += check-root
83 check-root:
84         cd tests && $(MAKE) $@ SUBDIRS=
85
86 # Just prior to distribution, ...
87 # transform the automake-generated rule that runs `rm -f rm'.
88 # On some systems, that command would fail with a diagnostic like
89 # `rm: cannot unlink `rm': Text file busy' when `.' appears so early
90 # in the shell's search path that running `rm' would run the `rm'
91 # executable in the current directory.
92 # Similarly, adjust the clean-binPROGRAMS rule.
93 rm_subst = \
94   s!(rm -f (rm\b|\$$\(bin_PROGRAMS\)$$))!$$1 > /dev/null 2>&1 || /bin/$$1!
95
96 BUILT_SOURCES = .version
97 .version:
98         echo $(VERSION) > $@-t && mv $@-t $@
99
100 # Arrange so that .tarball-version appears only in the distribution
101 # tarball, and never in a checked-out repository.
102 # The perl substitution is to change some key uses of "rm" to "/bin/rm".
103 # See the rm_subst comment for details.
104 dist-hook: gen-ChangeLog
105         echo $(VERSION) > $(distdir)/.tarball-version
106         perl -pi -e '$(rm_subst)' $(distdir)/src/Makefile.in
107
108 gen_start_date = 2008-02-08
109 .PHONY: gen-ChangeLog
110 gen-ChangeLog:
111         if test -d .git; then                                           \
112           $(top_srcdir)/build-aux/gitlog-to-changelog                   \
113             --since=$(gen_start_date) > $(distdir)/cl-t;                \
114           rm -f $(distdir)/ChangeLog;                                   \
115           mv $(distdir)/cl-t $(distdir)/ChangeLog;                      \
116         fi
117
118 ALL_RECURSIVE_TARGETS += distcheck-hook
119 distcheck-hook: check-ls-dircolors
120         $(MAKE) my-distcheck
121
122 DISTCLEANFILES = VERSION
123 MAINTAINERCLEANFILES = THANKS-to-translators
124 THANKS-to-translators: po/LINGUAS THANKStt.in
125         (                                                               \
126           cat $(srcdir)/THANKStt.in;                                    \
127           for lang in `cat $(srcdir)/po/LINGUAS`; do                    \
128             echo http://translationproject.org/team/$$lang.html;        \
129           done;                                                         \
130         ) > $@-tmp && mv $@-tmp $@
131
132 # Ensure that the sets of two-letter codes in ls.c and dircolors.c
133 # remain in sync.
134 .PHONY: check-ls-dircolors
135 check-ls-dircolors:
136         dc=$$(sed -n '/static.*ls_codes\[/,/};'/p               \
137             $(srcdir)/src/dircolors.c                           \
138           |sed -n '/^  *"/p'|tr , '\n'|sed 's/^  *//'           \
139           |sed -n 's/^"\(..\)"/\1/p'|sort -u);                  \
140         ls=$$(sed -n '/static.*indicator_name\[/,/};'/\p        \
141             $(srcdir)/src/ls.c                                  \
142           |sed -n '/^  *"/p'|tr , '\n'|sed 's/^  *//'           \
143           |sed -n 's/^"\(..\)"/\1/p'|sort -u);                  \
144         test "$$dc" = "$$ls"