2006-08-17 19:58:17 +00:00
|
|
|
# Make coreutils. -*-Makefile-*-
|
|
|
|
|
|
2012-01-27 11:35:24 +01:00
|
|
|
# Copyright (C) 1990-2012 Free Software Foundation, Inc.
|
2006-08-17 19:58:17 +00:00
|
|
|
|
2007-07-23 14:35:58 +02:00
|
|
|
# This program is free software: you can redistribute it and/or modify
|
2006-08-17 19:58:17 +00:00
|
|
|
# it under the terms of the GNU General Public License as published by
|
2007-07-23 14:35:58 +02:00
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
2006-08-17 19:58:17 +00: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 14:35:58 +02:00
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2002-07-01 08:13:49 +00: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 14:48:49 +02:00
|
|
|
ALL_RECURSIVE_TARGETS =
|
|
|
|
|
|
2012-08-29 16:37:24 +02:00
|
|
|
SUBDIRS = lib src po tests gnulib-tests
|
2009-04-04 12:39:44 +02: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 12:05:27 +01:00
|
|
|
.mailmap \
|
2009-04-04 12:39:44 +02:00
|
|
|
.prev-version \
|
|
|
|
|
.version \
|
|
|
|
|
.vg-suppressions \
|
2008-11-17 12:05:27 +01:00
|
|
|
THANKS.in \
|
2009-04-04 12:39:44 +02:00
|
|
|
THANKS-to-translators \
|
|
|
|
|
THANKStt.in \
|
|
|
|
|
bootstrap \
|
|
|
|
|
bootstrap.conf \
|
|
|
|
|
cfg.mk \
|
2009-04-24 21:36:22 +02:00
|
|
|
dist-check.mk \
|
2008-11-17 12:05:27 +01:00
|
|
|
maint.mk \
|
|
|
|
|
thanks-gen
|
2002-07-01 08:13:49 +00: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 14:48:49 +02:00
|
|
|
ALL_RECURSIVE_TARGETS += install-root
|
2002-07-01 08:13:49 +00:00
|
|
|
install-root:
|
|
|
|
|
cd src && $(MAKE) $@
|
|
|
|
|
|
|
|
|
|
ACLOCAL_AMFLAGS = -I m4
|
|
|
|
|
|
|
|
|
|
# Some tests always need root privileges, others need them only sometimes.
|
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 14:48:49 +02:00
|
|
|
ALL_RECURSIVE_TARGETS += check-root
|
2002-07-01 08:13:49 +00:00
|
|
|
check-root:
|
2008-04-18 15:51:18 +02:00
|
|
|
cd tests && $(MAKE) $@ SUBDIRS=
|
2002-07-01 08:13:49 +00:00
|
|
|
|
2011-09-19 20:00:56 +02: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 08:13:49 +00: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-22 15:26:00 -08:00
|
|
|
# transform the automake-generated rule that runs 'rm -f rm'.
|
2002-07-01 08:13:49 +00: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-22 15: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 08:13:49 +00:00
|
|
|
# executable in the current directory.
|
|
|
|
|
# Similarly, adjust the clean-binPROGRAMS rule.
|
|
|
|
|
rm_subst = \
|
2007-08-30 10:47:11 +02:00
|
|
|
s!(rm -f (rm\b|\$$\(bin_PROGRAMS\)$$))!$$1 > /dev/null 2>&1 || /bin/$$1!
|
|
|
|
|
|
2008-01-29 17:19:29 +01:00
|
|
|
BUILT_SOURCES = .version
|
2008-01-28 15:16:17 +01:00
|
|
|
.version:
|
2009-08-27 10:17:55 +02:00
|
|
|
$(AM_V_GEN)echo $(VERSION) > $@-t && mv $@-t $@
|
2008-01-28 15:16:17 +01:00
|
|
|
|
2008-02-07 23:30:07 +01:00
|
|
|
# Arrange so that .tarball-version appears only in the distribution
|
|
|
|
|
# tarball, and never in a checked-out repository.
|
2007-08-30 10:47:11 +02:00
|
|
|
# The perl substitution is to change some key uses of "rm" to "/bin/rm".
|
|
|
|
|
# See the rm_subst comment for details.
|
2008-02-10 10:27:42 +01:00
|
|
|
dist-hook: gen-ChangeLog
|
2009-08-27 10:17:55 +02:00
|
|
|
$(AM_V_GEN)echo $(VERSION) > $(distdir)/.tarball-version
|
|
|
|
|
$(AM_V_at)perl -pi -e '$(rm_subst)' $(distdir)/src/Makefile.in
|
2002-08-26 12:58:30 +00:00
|
|
|
|
2008-02-10 10:27:42 +01:00
|
|
|
gen_start_date = 2008-02-08
|
|
|
|
|
.PHONY: gen-ChangeLog
|
|
|
|
|
gen-ChangeLog:
|
2009-08-27 10:17:55 +02:00
|
|
|
$(AM_V_GEN)if test -d .git; then \
|
2008-02-10 10:27:42 +01:00
|
|
|
$(top_srcdir)/build-aux/gitlog-to-changelog \
|
2008-03-31 22:39:15 +02:00
|
|
|
--amend=$(srcdir)/build-aux/git-log-fix \
|
2008-02-10 10:27:42 +01: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 14:48:49 +02:00
|
|
|
ALL_RECURSIVE_TARGETS += distcheck-hook
|
2008-02-13 14:33:02 +01:00
|
|
|
distcheck-hook: check-ls-dircolors
|
2007-08-30 10:47:11 +02:00
|
|
|
$(MAKE) my-distcheck
|
2009-08-29 10:52:33 +02:00
|
|
|
$(MAKE) taint-distcheck
|
2006-07-14 14:27:38 +00:00
|
|
|
|
2008-01-26 15:48:53 +01:00
|
|
|
DISTCLEANFILES = VERSION
|
2007-08-30 10:47:11 +02:00
|
|
|
MAINTAINERCLEANFILES = THANKS-to-translators
|
2002-08-26 12:58:30 +00:00
|
|
|
THANKS-to-translators: po/LINGUAS THANKStt.in
|
2009-08-27 10:17:55 +02:00
|
|
|
$(AM_V_GEN)( \
|
2002-08-26 12:58:30 +00:00
|
|
|
cat $(srcdir)/THANKStt.in; \
|
2008-11-09 15:35:51 +01:00
|
|
|
for lang in `cat $(srcdir)/po/LINGUAS`; do \
|
|
|
|
|
echo http://translationproject.org/team/$$lang.html; \
|
2002-08-26 12:58:30 +00:00
|
|
|
done; \
|
|
|
|
|
) > $@-tmp && mv $@-tmp $@
|
2008-02-13 14:33:02 +01: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 10:17:55 +02:00
|
|
|
$(AM_V_GEN)dc=$$(sed -n '/static.*ls_codes\[/,/};'/p \
|
2008-02-19 13:27:39 +01: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 14:33:02 +01:00
|
|
|
test "$$dc" = "$$ls"
|
2008-11-17 12:05:27 +01: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-20 21:33:48 +01:00
|
|
|
$(AM_V_GEN)rm -f $@-t $@; \
|
2008-11-17 12:05:27 +01: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-20 21:33:48 +01:00
|
|
|
} > $@-t && chmod a-w $@-t && mv $@-t $@
|
2011-11-12 22:23:09 +01: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 14:22:47 +02:00
|
|
|
|
|
|
|
|
include $(top_srcdir)/doc/local.mk
|
2012-08-29 16:37:24 +02:00
|
|
|
include $(top_srcdir)/man/local.mk
|