Skip to content

Commit

Permalink
added distsign target
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.apache.org/repos/asf/incubator/couchdb/trunk@686384 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
Noah Slater committed Aug 15, 2008
1 parent a959bb0 commit abbbf5d
Showing 1 changed file with 19 additions and 13 deletions.
32 changes: 19 additions & 13 deletions Makefile.am
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -36,19 +36,25 @@ README.gz: $(top_srcdir)/README
THANKS.gz: $(top_srcdir)/THANKS THANKS.gz: $(top_srcdir)/THANKS
-gzip -9 < $< > $@ -gzip -9 < $< > $@


.PHONY: local-clean
local-clean: maintainer-clean local-clean: maintainer-clean
@echo "This command is intended for maintainers to use;" @echo "This command is intended for maintainers to use;"
@echo "it deletes files that may need special tools to rebuild." @echo "it deletes files that may need special tools to rebuild."
rm -f INSTALL -rm -f INSTALL
rm -f acinclude.m4 -rm -f acinclude.m4
rm -f aclocal.m4 -rm -f aclocal.m4
rm -fr build-aux -rm -f config.h.in
rm -f config.h.in* -rm -f configure
rm -f configure -rm -f *.tar.gz
rm -f configure~ -rm -f *.tar.gz.asc
rm -f *.tar.gz -rm -f *.tar.gz.md5
rm -f *.zip -rm -f *.tar.gz.sha
rm -fr m4 -rm -fr build-aux
find . -name Makefile.in | xargs rm -rm -fr m4

-find $(top_srcdir) -name Makefile.in | xargs rm
.PHONY: local-clean
.PHONY: distsign
distsign: distcheck
gpg --armor --detach-sig < $(distdir).tar.gz > $(distdir).tar.gz.asc
md5sum $(distdir).tar.gz > $(distdir).tar.gz.md5
sha1sum $(distdir).tar.gz > $(distdir).tar.gz.sha

0 comments on commit abbbf5d

Please sign in to comment.