2006-08-18 03:58:17 +08:00
|
|
|
# Make coreutils. -*-Makefile-*-
|
|
|
|
|
2012-01-27 18:35:24 +08:00
|
|
|
# Copyright (C) 1990-2012 Free Software Foundation, Inc.
|
2006-08-18 03:58:17 +08:00
|
|
|
|
2007-07-23 20:35:58 +08:00
|
|
|
# This program is free software: you can redistribute it and/or modify
|
2006-08-18 03:58:17 +08:00
|
|
|
# it under the terms of the GNU General Public License as published by
|
2007-07-23 20:35:58 +08:00
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
2006-08-18 03:58:17 +08:00
|
|
|
# (at your option) any later version.
|
|
|
|
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
|
|
|
|
# You should have received a copy of the GNU General Public License
|
2007-07-23 20:35:58 +08:00
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2002-07-01 16:13:49 +08:00
|
|
|
|
build: avoid parallel distcheck failure
* Makefile.am (ALL_RECURSIVE_TARGETS): Initialize here, too,
to please automake. Add install-root, check-root, distcheck-hook.
* cfg.mk (ALL_RECURSIVE_TARGETS): Add sc_tight_scope.
* maint.mk (ALL_RECURSIVE_TARGETS): Add patch-check,
check-AUTHORS, maintainer-distcheck, vc-dist, taint-distcheck,
my-distcheck, alpha, beta, major.
2009-04-11 20:48:49 +08:00
|
|
|
ALL_RECURSIVE_TARGETS =
|
|
|
|
|
2012-09-09 14:21:16 +08:00
|
|
|
SUBDIRS = po . gnulib-tests
|
2009-04-04 18:39:44 +08:00
|
|
|
|
|
|
|
changelog_etc = \
|
|
|
|
ChangeLog-2005 \
|
|
|
|
ChangeLog-2006 \
|
|
|
|
ChangeLog-2007 \
|
|
|
|
ChangeLog-2008 \
|
|
|
|
build-aux/ChangeLog-2007 \
|
|
|
|
doc/ChangeLog-2007 \
|
|
|
|
lib/ChangeLog-2007 \
|
|
|
|
m4/ChangeLog-2007 \
|
|
|
|
old/fileutils/ChangeLog \
|
|
|
|
old/fileutils/ChangeLog-1997 \
|
|
|
|
old/fileutils/NEWS \
|
|
|
|
old/sh-utils/ChangeLog \
|
|
|
|
old/sh-utils/ChangeLog.0 \
|
|
|
|
old/sh-utils/NEWS \
|
|
|
|
old/textutils/ChangeLog \
|
|
|
|
old/textutils/NEWS \
|
|
|
|
po/ChangeLog-2007
|
|
|
|
|
|
|
|
EXTRA_DIST = \
|
|
|
|
$(changelog_etc) \
|
2008-11-17 19:05:27 +08:00
|
|
|
.mailmap \
|
2009-04-04 18:39:44 +08:00
|
|
|
.prev-version \
|
|
|
|
.version \
|
|
|
|
.vg-suppressions \
|
2008-11-17 19:05:27 +08:00
|
|
|
THANKS.in \
|
2009-04-04 18:39:44 +08:00
|
|
|
THANKS-to-translators \
|
|
|
|
THANKStt.in \
|
|
|
|
bootstrap \
|
|
|
|
bootstrap.conf \
|
build: refactor how lists of coreutils programs are defined
This is in preparation of future changes. Still, this patch
leaves the build system in a better shape; true, with more
indirections, but also with less convoluted and brittle hacks.
Unfortunately, this commit also makes some rebuild rules
incomplete; that will son be fixed by follow-up patches.
* build-aux/gen-lists-of-programs.sh: New, generates autoconf
and automake input fragments that define "lists" of all coreutils
programs, with further distinctions about how and when these
programs should be built (by default; if the system is capable
enough; only if the user asks for them explicitly). This is
useful to avoid duplicating the definitions of these lists among
several files (at least 'configure.ac' 'src/Makefile.am'); such
duplication had proved a source of inconsistencies and bugs in
the past. And the pre-existing way to avoid such duplication,
as implemented in 'configure.ac' before this patch, was overly
complex and brittle.
* Makefile.am (EXTRA_DIST): Distribute the new script.
* bootstrap.conf (bootstrap_post_import_hook): Run the new script
to generate 'm4/cu-progs.m4' and 'src/cu-progs.mk'.
* .gitignore: Ignore those files.
* configure.ac: Include 'm4/cu-progs.m4', and decidedly simplify
most of the program lists definition and processing accordingly.
* src/Makefile.am: Similarly include 'src/cu-progs.mk', containing
definition of variables $(default__progs), $(no_install__progs)
and $(build_if_possible__progs). Accordingly ...
(no_install__progs, build_if_possible__progs): ... remove.
(EXTRA_DIST): Adjust definition.
Adjust a comment.
2012-09-01 07:46:39 +08:00
|
|
|
build-aux/gen-lists-of-programs.sh \
|
2009-04-04 18:39:44 +08:00
|
|
|
cfg.mk \
|
2009-04-25 03:36:22 +08:00
|
|
|
dist-check.mk \
|
2008-11-17 19:05:27 +08:00
|
|
|
maint.mk \
|
|
|
|
thanks-gen
|
2002-07-01 16:13:49 +08:00
|
|
|
|
2012-09-01 07:46:42 +08:00
|
|
|
gen_progs_lists = $(top_srcdir)/build-aux/gen-lists-of-programs.sh
|
|
|
|
|
|
|
|
# Keep these in sync with bootstrap.conf:bootstrap_post_import_hook().
|
|
|
|
# Use '$(top_srcdir)/m4' and '$(srcdir)/src' for the benefit of non-GNU
|
|
|
|
# makes: it is with those directories that 'cu-progs.m4' and 'cu-progs.mk'
|
|
|
|
# appear in our dependencies.
|
|
|
|
$(top_srcdir)/m4/cu-progs.m4: $(gen_progs_lists)
|
|
|
|
$(AM_V_GEN)rm -f $@ $@-t \
|
|
|
|
&& $(SHELL) $(gen_progs_lists) --autoconf >$@-t \
|
|
|
|
&& chmod a-w $@-t && mv -f $@-t $@
|
|
|
|
$(srcdir)/src/cu-progs.mk: $(gen_progs_lists)
|
|
|
|
$(AM_V_GEN)rm -f $@ $@-t \
|
|
|
|
&& $(SHELL) $(gen_progs_lists) --automake >$@-t \
|
|
|
|
&& chmod a-w $@-t && mv -f $@-t $@
|
|
|
|
|
2002-07-01 16:13:49 +08:00
|
|
|
ACLOCAL_AMFLAGS = -I m4
|
|
|
|
|
2011-09-20 02:00:56 +08:00
|
|
|
# Shortcut targets to make it easier to run (very) expensive tests.
|
|
|
|
check-expensive:
|
|
|
|
$(MAKE) check RUN_EXPENSIVE_TESTS=yes
|
|
|
|
check-very-expensive:
|
|
|
|
$(MAKE) check-expensive RUN_VERY_EXPENSIVE_TESTS=yes
|
|
|
|
|
2002-07-01 16:13:49 +08:00
|
|
|
# Just prior to distribution, ...
|
maint: quote 'like this' or "like this", not `like this'
* doc/coreutils.texi (Formatting the file names):
coreutils now quotes 'like this'.
* man/help2man:
* src/timeout.c (usage): Quote 'like this' in diagnostics.
* HACKING, Makefile.am, NEWS, README, README-hacking, TODO, cfg.mk:
* doc/Makefile.am, doc/coreutils.texi, m4/jm-macros.m4:
* man/Makefile.am, man/help2man, src/Makefile.am, src/copy.h:
* src/extract-magic, src/ls.c, src/pinky.c, src/pr.c, src/sort.c:
* src/split.c, src/timeout.c, src/who.c, tests/dd/skip-seek-past-file:
* tests/pr/pr-tests: Quote 'like this' in commentary.
* cfg.mk (old_NEWS_hash): Update due to changed old NEWS.
2012-01-23 07:26:00 +08:00
|
|
|
# transform the automake-generated rule that runs 'rm -f rm'.
|
2002-07-01 16:13:49 +08:00
|
|
|
# On some systems, that command would fail with a diagnostic like
|
maint: quote 'like this' or "like this", not `like this'
* doc/coreutils.texi (Formatting the file names):
coreutils now quotes 'like this'.
* man/help2man:
* src/timeout.c (usage): Quote 'like this' in diagnostics.
* HACKING, Makefile.am, NEWS, README, README-hacking, TODO, cfg.mk:
* doc/Makefile.am, doc/coreutils.texi, m4/jm-macros.m4:
* man/Makefile.am, man/help2man, src/Makefile.am, src/copy.h:
* src/extract-magic, src/ls.c, src/pinky.c, src/pr.c, src/sort.c:
* src/split.c, src/timeout.c, src/who.c, tests/dd/skip-seek-past-file:
* tests/pr/pr-tests: Quote 'like this' in commentary.
* cfg.mk (old_NEWS_hash): Update due to changed old NEWS.
2012-01-23 07:26:00 +08:00
|
|
|
# "rm: cannot unlink 'rm': Text file busy" when '.' appears so early
|
|
|
|
# in the shell's search path that running 'rm' would run the 'rm'
|
2002-07-01 16:13:49 +08:00
|
|
|
# executable in the current directory.
|
|
|
|
# Similarly, adjust the clean-binPROGRAMS rule.
|
|
|
|
rm_subst = \
|
2007-08-30 16:47:11 +08:00
|
|
|
s!(rm -f (rm\b|\$$\(bin_PROGRAMS\)$$))!$$1 > /dev/null 2>&1 || /bin/$$1!
|
|
|
|
|
2008-01-30 00:19:29 +08:00
|
|
|
BUILT_SOURCES = .version
|
2008-01-28 22:16:17 +08:00
|
|
|
.version:
|
2009-08-27 16:17:55 +08:00
|
|
|
$(AM_V_GEN)echo $(VERSION) > $@-t && mv $@-t $@
|
2008-01-28 22:16:17 +08:00
|
|
|
|
2012-09-10 01:27:25 +08:00
|
|
|
# In general, we run help2man to build a man page from the binary's --help
|
|
|
|
# output, but when building from a just-unpacked distribution tarball, we
|
|
|
|
# must not do that, since help2man uses perl. We don't want to depend on
|
|
|
|
# perl in that case. In general, the .1 file does indeed depend on the
|
|
|
|
# binary. I.e., for cat, we have this Makefile dependency:
|
|
|
|
# man/cat.1: src/cat
|
|
|
|
# That means that once we build src/cat, we would trigger the .x.1
|
|
|
|
# rule which runs help2man. The trick is simply to change the RHS to
|
|
|
|
# "src/cat.c" in the $(distdir) that we're about to tar and compress.
|
|
|
|
# Also handle the three exceptions corresponding to the three binaries
|
|
|
|
# for which there is no like-named .c file: dir, vdir, ginstall.
|
|
|
|
.PHONY: do-not-require-help2man
|
|
|
|
do-not-require-help2man:
|
|
|
|
perl -pi -e 's,^(man/.+?\.1:\s*src/.+?)$$,$$1.c,;' \
|
|
|
|
-e 's,^(man/.+?\.1:\s*src)/ginstall\.c$$,$$1/install.c,;' \
|
|
|
|
-e 's,^(man/.+?\.1:\s*src)/v?dir\.c$$,$$1/ls.c,;' \
|
|
|
|
$(distdir)/Makefile.in
|
|
|
|
|
2008-02-08 06:30:07 +08:00
|
|
|
# Arrange so that .tarball-version appears only in the distribution
|
|
|
|
# tarball, and never in a checked-out repository.
|
2007-08-30 16:47:11 +08:00
|
|
|
# The perl substitution is to change some key uses of "rm" to "/bin/rm".
|
|
|
|
# See the rm_subst comment for details.
|
2012-09-10 01:27:25 +08:00
|
|
|
dist-hook: gen-ChangeLog do-not-require-help2man
|
2009-08-27 16:17:55 +08:00
|
|
|
$(AM_V_GEN)echo $(VERSION) > $(distdir)/.tarball-version
|
2012-09-01 07:46:40 +08:00
|
|
|
$(AM_V_at)perl -pi -e '$(rm_subst)' $(distdir)/Makefile.in
|
2002-08-26 20:58:30 +08:00
|
|
|
|
2008-02-10 17:27:42 +08:00
|
|
|
gen_start_date = 2008-02-08
|
|
|
|
.PHONY: gen-ChangeLog
|
|
|
|
gen-ChangeLog:
|
2009-08-27 16:17:55 +08:00
|
|
|
$(AM_V_GEN)if test -d .git; then \
|
2008-02-10 17:27:42 +08:00
|
|
|
$(top_srcdir)/build-aux/gitlog-to-changelog \
|
2008-04-01 04:39:15 +08:00
|
|
|
--amend=$(srcdir)/build-aux/git-log-fix \
|
2008-02-10 17:27:42 +08:00
|
|
|
--since=$(gen_start_date) > $(distdir)/cl-t; \
|
|
|
|
rm -f $(distdir)/ChangeLog; \
|
|
|
|
mv $(distdir)/cl-t $(distdir)/ChangeLog; \
|
|
|
|
fi
|
|
|
|
|
build: avoid parallel distcheck failure
* Makefile.am (ALL_RECURSIVE_TARGETS): Initialize here, too,
to please automake. Add install-root, check-root, distcheck-hook.
* cfg.mk (ALL_RECURSIVE_TARGETS): Add sc_tight_scope.
* maint.mk (ALL_RECURSIVE_TARGETS): Add patch-check,
check-AUTHORS, maintainer-distcheck, vc-dist, taint-distcheck,
my-distcheck, alpha, beta, major.
2009-04-11 20:48:49 +08:00
|
|
|
ALL_RECURSIVE_TARGETS += distcheck-hook
|
2008-02-13 21:33:02 +08:00
|
|
|
distcheck-hook: check-ls-dircolors
|
2007-08-30 16:47:11 +08:00
|
|
|
$(MAKE) my-distcheck
|
2009-08-29 16:52:33 +08:00
|
|
|
$(MAKE) taint-distcheck
|
2006-07-14 22:27:38 +08:00
|
|
|
|
2008-01-26 22:48:53 +08:00
|
|
|
DISTCLEANFILES = VERSION
|
2007-08-30 16:47:11 +08:00
|
|
|
MAINTAINERCLEANFILES = THANKS-to-translators
|
2002-08-26 20:58:30 +08:00
|
|
|
THANKS-to-translators: po/LINGUAS THANKStt.in
|
2009-08-27 16:17:55 +08:00
|
|
|
$(AM_V_GEN)( \
|
2002-08-26 20:58:30 +08:00
|
|
|
cat $(srcdir)/THANKStt.in; \
|
2008-11-09 22:35:51 +08:00
|
|
|
for lang in `cat $(srcdir)/po/LINGUAS`; do \
|
|
|
|
echo http://translationproject.org/team/$$lang.html; \
|
2002-08-26 20:58:30 +08:00
|
|
|
done; \
|
|
|
|
) > $@-tmp && mv $@-tmp $@
|
2008-02-13 21:33:02 +08:00
|
|
|
|
|
|
|
# Ensure that the sets of two-letter codes in ls.c and dircolors.c
|
|
|
|
# remain in sync.
|
|
|
|
.PHONY: check-ls-dircolors
|
|
|
|
check-ls-dircolors:
|
2009-08-27 16:17:55 +08:00
|
|
|
$(AM_V_GEN)dc=$$(sed -n '/static.*ls_codes\[/,/};'/p \
|
2008-02-19 20:27:39 +08:00
|
|
|
$(srcdir)/src/dircolors.c \
|
|
|
|
|sed -n '/^ *"/p'|tr , '\n'|sed 's/^ *//' \
|
|
|
|
|sed -n 's/^"\(..\)"/\1/p'|sort -u); \
|
|
|
|
ls=$$(sed -n '/static.*indicator_name\[/,/};'/\p \
|
|
|
|
$(srcdir)/src/ls.c \
|
|
|
|
|sed -n '/^ *"/p'|tr , '\n'|sed 's/^ *//' \
|
|
|
|
|sed -n 's/^"\(..\)"/\1/p'|sort -u); \
|
2008-02-13 21:33:02 +08:00
|
|
|
test "$$dc" = "$$ls"
|
2008-11-17 19:05:27 +08:00
|
|
|
|
|
|
|
# Sort in traditional ASCII order, regardless of the current locale;
|
|
|
|
# otherwise we may get into trouble with distinct strings that the
|
|
|
|
# current locale considers to be equal.
|
|
|
|
ASSORT = LC_ALL=C sort
|
|
|
|
|
|
|
|
# Extract all lines up to the first one starting with "##".
|
|
|
|
prologue = perl -ne '/^\#\#/ and exit; print' $(srcdir)/THANKS.in
|
|
|
|
|
|
|
|
THANKS: THANKS.in Makefile.am .mailmap thanks-gen .version
|
2011-11-21 04:33:48 +08:00
|
|
|
$(AM_V_GEN)rm -f $@-t $@; \
|
2008-11-17 19:05:27 +08:00
|
|
|
{ \
|
|
|
|
$(prologue); echo; \
|
|
|
|
{ perl -ne '/^$$/.../^$$/ and print' $(srcdir)/THANKS.in \
|
|
|
|
| grep -v '^$$' | perl -pe 's/ +/\0/'; \
|
|
|
|
git log --pretty=format:'%aN%x00%aE' \
|
|
|
|
| $(ASSORT) -u; \
|
|
|
|
} | $(srcdir)/thanks-gen \
|
|
|
|
| LC_ALL=en_US.UTF-8 sort -f; \
|
|
|
|
echo; \
|
|
|
|
printf ';; %s\n' 'Local Variables:' 'coding: utf-8' End:; \
|
2011-11-21 04:33:48 +08:00
|
|
|
} > $@-t && chmod a-w $@-t && mv $@-t $@
|
2011-11-13 05:23:09 +08:00
|
|
|
|
|
|
|
# Some of our git hook scripts are supposed to be identical to git's samples.
|
|
|
|
# See if they are still in sync.
|
|
|
|
.PHONY: check-git-hook-script-sync
|
|
|
|
check-git-hook-script-sync:
|
|
|
|
@fail=0; \
|
|
|
|
t=$$(mktemp -d) \
|
|
|
|
&& cd $$t && git init -q && cd .git/hooks \
|
|
|
|
&& for i in pre-commit pre-applypatch applypatch-msg; do \
|
|
|
|
diff $(abs_top_srcdir)/scripts/git-hooks/$$i $$i.sample \
|
|
|
|
|| fail=1; \
|
|
|
|
done; \
|
|
|
|
rm -rf $$t; \
|
|
|
|
test $$fail = 0
|
2012-08-29 20:22:47 +08:00
|
|
|
|
2012-09-09 14:21:16 +08:00
|
|
|
noinst_LIBRARIES =
|
|
|
|
MOSTLYCLEANFILES =
|
|
|
|
CLEANFILES =
|
|
|
|
MOSTLYCLEANDIRS =
|
|
|
|
|
|
|
|
AM_CPPFLAGS = -Ilib -I$(top_srcdir)/lib -Isrc -I$(top_srcdir)/src
|
|
|
|
|
|
|
|
include $(top_srcdir)/lib/local.mk
|
2012-09-01 07:46:40 +08:00
|
|
|
include $(top_srcdir)/src/local.mk
|
2012-08-29 20:22:47 +08:00
|
|
|
include $(top_srcdir)/doc/local.mk
|
2012-08-29 22:37:24 +08:00
|
|
|
include $(top_srcdir)/man/local.mk
|
2012-09-03 03:55:12 +08:00
|
|
|
include $(top_srcdir)/tests/local.mk
|