summaryrefslogtreecommitdiff
path: root/Makefile.maint
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2006-02-08 12:44:36 +0000
committerJim Meyering <jim@meyering.net>2006-02-08 12:44:36 +0000
commitdd8d8b4be164d7aa2cba61e6be3051f1d592800f (patch)
treea4dff3e08b8a43fd877770fb503bc316454974a3 /Makefile.maint
parentb455780a19a348df2dc265eb0910387fcb52b41b (diff)
downloadcoreutils-dd8d8b4be164d7aa2cba61e6be3051f1d592800f.tar.xz
(local-checks-available): Define in terms of
the expansion, $(syntax-check-rules), rather than the single, top-level target `syntax-check', so that it's easier to exclude individual rules (via $(local-checks-to-skip)). (tgz-md5, tgz-sha1, ...): Remove now-unused definitions.
Diffstat (limited to 'Makefile.maint')
-rw-r--r--Makefile.maint13
1 files changed, 2 insertions, 11 deletions
diff --git a/Makefile.maint b/Makefile.maint
index cd6370a82..e954a49ad 100644
--- a/Makefile.maint
+++ b/Makefile.maint
@@ -66,7 +66,8 @@ export LC_ALL = C
# new ChangeLog entries.
local-checks-available = \
po-check copyright-check writable-files m4-check author_mark_check \
- changelog-check strftime-check syntax-check makefile_path_separator_check \
+ changelog-check strftime-check $(syntax-check-rules) \
+ makefile_path_separator_check \
makefile-check
.PHONY: $(local-checks-available)
@@ -486,16 +487,6 @@ my-distcheck: $(local-check) $(release_archive_dir)/$(prev-tgz)
WGET = wget
WGETFLAGS = -C off
-tgz-md5 = $(shell md5sum < $(my_distdir).tar.gz|sed 's/ -//')
-tgz-sha1 = $(shell sha1sum < $(my_distdir).tar.gz|sed 's/ -//')
-bz2-md5 = $(shell md5sum < $(my_distdir).tar.bz2|sed 's/ -//')
-bz2-sha1 = $(shell sha1sum < $(my_distdir).tar.bz2|sed 's/ -//')
-xdelta-md5 = $(shell md5sum < $(xd-delta)|sed 's/ -//')
-xdelta-sha1 = $(shell sha1sum < $(xd-delta)|sed 's/ -//')
-tgz-size = $(shell du --human $(my_distdir).tar.gz|sed 's/\([MkK]\).*/ \1B/')
-bz2-size = $(shell du --human $(my_distdir).tar.bz2|sed 's/\([MkK]\).*/ \1B/')
-xd-size = $(shell du --human $(xd-delta)|sed 's/\([MkK]\).*/ \1B/')
-
rel-check:
tarz=/tmp/rel-check-tarz-$$$$; \
md5_tmp=/tmp/rel-check-md5-$$$$; \