doc: reference 'dircolors invocation' from ls --color info
[coreutils.git] / Makefile.am
blob3fd546599594be955f36a6992efd218f3649ee7a
1 # Make coreutils.                                       -*-Makefile-*-
3 # Copyright (C) 1990-2024 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 <https://www.gnu.org/licenses/>.
18 ALL_RECURSIVE_TARGETS =
20 SUBDIRS = po . gnulib-tests
22 EXTRA_DIST =                            \
23   .mailmap                              \
24   .prev-version                         \
25   .version                              \
26   .vg-suppressions                      \
27   README-install                        \
28   THANKS.in                             \
29   THANKS-to-translators                 \
30   THANKStt.in                           \
31   bootstrap                             \
32   bootstrap.conf                        \
33   build-aux/gen-lists-of-programs.sh    \
34   build-aux/gen-single-binary.sh        \
35   cfg.mk                                \
36   dist-check.mk                         \
37   maint.mk                              \
38   tests/GNUmakefile                     \
39   thanks-gen
41 gen_progs_lists = $(top_srcdir)/build-aux/gen-lists-of-programs.sh
42 gen_single_binary = $(top_srcdir)/build-aux/gen-single-binary.sh
44 # Keep these in sync with bootstrap.conf:bootstrap_post_import_hook().
45 # Use '$(top_srcdir)/m4' and '$(srcdir)/src' for the benefit of non-GNU
46 # makes: it is with those directories that 'cu-progs.m4' and 'cu-progs.mk'
47 # appear in our dependencies.
48 $(top_srcdir)/m4/cu-progs.m4: $(gen_progs_lists)
49         $(AM_V_GEN)rm -f $@ $@-t \
50           && $(SHELL) $(gen_progs_lists) --autoconf >$@-t \
51           && chmod a-w $@-t && mv -f $@-t $@
52 $(srcdir)/src/cu-progs.mk: $(gen_progs_lists)
53         $(AM_V_GEN)rm -f $@ $@-t \
54           && $(SHELL) $(gen_progs_lists) --automake >$@-t \
55           && chmod a-w $@-t && mv -f $@-t $@
56 $(srcdir)/src/single-binary.mk: $(gen_single_binary) $(srcdir)/src/local.mk
57         $(AM_V_GEN)rm -f $@ $@-t \
58           && $(SHELL) $(gen_single_binary) $(srcdir)/src/local.mk >$@-t \
59           && chmod a-w $@-t && mv -f $@-t $@
61 ACLOCAL_AMFLAGS = -I m4
63 # Shortcut targets to make it easier to run (very) expensive tests.
64 check-expensive:
65         $(MAKE) check RUN_EXPENSIVE_TESTS=yes
66 check-very-expensive:
67         $(MAKE) check-expensive RUN_VERY_EXPENSIVE_TESTS=yes
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.
76 rm_subst = \
77   s!(rm -f (rm\b|\$$\(bin_PROGRAMS\)$$))!$$1 > /dev/null 2>&1 || /bin/$$1!
79 BUILT_SOURCES = .version
80 .version:
81         $(AM_V_GEN)echo $(VERSION) > $@-t && mv $@-t $@
83 # Have no read-only files in the tarball to allow easy removal.
84 # Have .tarball-version based versions only in tarball builds.
85 # The perl substitution is to change some key uses of "rm" to "/bin/rm".
86 # See the rm_subst comment for details.
87 # The touch avoids a subtle, spurious "make distcheck" failure.
88 dist-hook: gen-ChangeLog
89         $(AM_V_GEN)chmod -R +rw $(distdir)
90         $(AM_V_GEN)echo $(VERSION) > $(distdir)/.tarball-version
91         $(AM_V_at)perl -pi -e '$(rm_subst)' $(distdir)/Makefile.in
92         $(AM_V_at)touch $(distdir)/doc/constants.texi \
93           $(distdir)/doc/coreutils.info
95 gen_start_ver = 8.31
96 .PHONY: gen-ChangeLog
97 gen-ChangeLog:
98         $(AM_V_GEN)if test -d .git; then                                \
99           log_fix="$(srcdir)/build-aux/git-log-fix";                    \
100           test -e "$$log_fix"                                           \
101             && amend_git_log="--amend=$$log_fix"                        \
102             || amend_git_log=;                                          \
103           $(top_srcdir)/build-aux/gitlog-to-changelog $$amend_git_log   \
104             -- v$(gen_start_ver)~.. > $(distdir)/cl-t &&                \
105             { printf '\n\nSee the source repo for older entries\n'      \
106               >> $(distdir)/cl-t &&                                     \
107               rm -f $(distdir)/ChangeLog &&                             \
108               mv $(distdir)/cl-t $(distdir)/ChangeLog; }                \
109         fi
111 ALL_RECURSIVE_TARGETS += distcheck-hook
112 distcheck-hook: check-ls-dircolors
113         $(MAKE) my-distcheck
114         $(MAKE) taint-distcheck
116 DISTCLEANFILES = VERSION
117 MAINTAINERCLEANFILES = THANKS-to-translators
118 THANKS-to-translators: po/LINGUAS THANKStt.in
119         $(AM_V_GEN)(                                                    \
120           cat $(srcdir)/THANKStt.in;                                    \
121           for lang in `cat $(srcdir)/po/LINGUAS`; do                    \
122             echo https://translationproject.org/team/$$lang.html;       \
123           done;                                                         \
124         ) > $@-tmp && mv $@-tmp $@
126 # Ensure that the sets of two-letter codes in ls.c and dircolors.c
127 # remain in sync.
128 .PHONY: check-ls-dircolors
129 check-ls-dircolors:
130         $(AM_V_GEN)dc=$$(sed -n '/static.*ls_codes\[/,/};'/p    \
131             $(srcdir)/src/dircolors.c                           \
132           |sed -n '/^  *"/p'|tr , '\n'|sed 's/^  *//'           \
133           |sed -n 's/^"\(..\)"/\1/p'|sort -u);                  \
134         ls=$$(sed -n '/static.*indicator_name\[/,/};'/\p        \
135             $(srcdir)/src/ls.c                                  \
136           |sed -n '/^  *"/p'|tr , '\n'|sed 's/^  *//'           \
137           |sed -n 's/^"\(..\)"/\1/p'|sort -u);                  \
138         test "$$dc" = "$$ls"
140 # Sort in traditional ASCII order, regardless of the current locale;
141 # otherwise we may get into trouble with distinct strings that the
142 # current locale considers to be equal.
143 ASSORT = LC_ALL=C sort
145 # Extract all lines up to the first one starting with "##".
146 prologue = perl -ne '/^\#\#/ and exit; print' $(srcdir)/THANKS.in
148 # FIXME: avoid dependency to build our own 'sort' for 'make dist' ...
149 # when common platforms have a functional case-folding implementation:
150 #   $ test 'abácad' = "$(printf '%s\n' 'ab' 'ác' 'ad' \
151 #                          | LC_ALL=en_US.UTF-8 sort -f \
152 #                          | tr -d '\n')" && echo GOOD || echo BAD
153 # Note we don't enable case folding (-f) in the sort below, due to bugs
154 # in the I18N patch used in many distros (as of 2015).  Also using our
155 # own src/sort here would induce awkward dependencies for `make dist`.
156 THANKS: THANKS.in Makefile.am .mailmap thanks-gen .version
157         $(AM_V_GEN)rm -f $@-t $@;                                       \
158         {                                                               \
159           $(prologue); echo;                                            \
160           { perl -ne '/^$$/.../^$$/ and !/^$$/ and s/  +/\0/ and print' \
161               $(srcdir)/THANKS.in;                                      \
162             git log --pretty=format:'%aN%x00%aE'                        \
163               | $(ASSORT) -u;                                           \
164           } | $(srcdir)/thanks-gen                                      \
165             | LC_ALL=en_US.UTF-8 sort -k1,1;                            \
166           echo;                                                         \
167           printf ';; %s\n' 'Local Variables:' 'coding: utf-8' End:;     \
168         } > $@-t && chmod a-w $@-t && mv $@-t $@
170 # Some of our git hook scripts are supposed to be identical to git's samples.
171 # See if they are still in sync.
172 .PHONY: check-git-hook-script-sync
173 check-git-hook-script-sync:
174         @fail=0;                                                        \
175         t=$$(mktemp -d)                                                 \
176           && cd $$t && git init -q && cd .git/hooks                     \
177           && for i in pre-commit pre-applypatch applypatch-msg; do      \
178                diff $(abs_top_srcdir)/scripts/git-hooks/$$i $$i.sample  \
179                  || fail=1;                                             \
180              done;                                                      \
181         rm -rf $$t;                                                     \
182         test $$fail = 0
184 # If we are building a single-binary, create symlinks or shebangs for
185 # the selected tools when installing.
186 install-exec-hook:
187         $(AM_V_at)ctrans=$$(printf coreutils | sed -e "$(transform)");  \
188         for p in x $(single_binary_progs); do                           \
189           test $$p = x && continue;                                     \
190           ptrans=$$(printf '%s' "$$p" | sed -e "$(transform)");         \
191           rm -f $(DESTDIR)$(bindir)/$$ptrans$(EXEEXT) || exit $$?;      \
192           if test "x$(single_binary_install_type)" = xshebangs; then    \
193             printf '#!%s --coreutils-prog-shebang=%s\n'                 \
194               $(bindir)/$$ctrans$(EXEEXT) $$p                           \
195               >$(DESTDIR)$(bindir)/$$ptrans$(EXEEXT) || exit $$?;       \
196             chmod a+x,a-w $(DESTDIR)$(bindir)/$$ptrans$(EXEEXT) || exit $$?;\
197           else                                                          \
198             $(LN_S) -s $$ctrans$(EXEEXT)                                \
199               $(DESTDIR)$(bindir)/$$ptrans$(EXEEXT) || exit $$?;        \
200           fi                                                            \
201         done
203 noinst_LIBRARIES =
204 MOSTLYCLEANFILES =
205 CLEANFILES =
206 MOSTLYCLEANDIRS =
208 AM_CPPFLAGS = -Ilib -I$(top_srcdir)/lib -Isrc -I$(top_srcdir)/src
210 include $(top_srcdir)/lib/local.mk
211 include $(top_srcdir)/src/local.mk
212 include $(top_srcdir)/doc/local.mk
213 include $(top_srcdir)/man/local.mk
214 include $(top_srcdir)/tests/local.mk