diff options
author | Alexey Neyman <stilor@att.net> | 2018-09-29 10:24:18 -0700 |
---|---|---|
committer | Alexey Neyman <stilor@att.net> | 2018-09-29 10:24:18 -0700 |
commit | 2d6ecbda6bb7a891eb29a57a0d92ecbf653eba86 (patch) | |
tree | 98ee0732d45c533c0ee12d2fcb53e3d240ebde3f /Makefile.am | |
parent | c3ea42f08ccfcd1768d5b86e6867d45036183a14 (diff) | |
download | crosstool-ng-2d6ecbda6bb7a891eb29a57a0d92ecbf653eba86.tar.gz crosstool-ng-2d6ecbda6bb7a891eb29a57a0d92ecbf653eba86.tar.bz2 crosstool-ng-2d6ecbda6bb7a891eb29a57a0d92ecbf653eba86.zip |
Move the last bits of release creation into Makefile.am
Fixes #938.
Signed-off-by: Alexey Neyman <stilor@att.net>
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index 5fdee307..92b8af50 100644 --- a/Makefile.am +++ b/Makefile.am @@ -83,3 +83,16 @@ fetch-docs: maintainer/download-docs.sh .PHONY: gen-tarball-version gen-tarball-version: echo $(VERSION) > $(distdir)/.tarball-version + +DIGESTS = md5 sha1 sha512 +USE_GPG = yes + +dist-create-release: distcheck + for a in $(DIST_ARCHIVES); do \ + for d in $(DIGESTS); do \ + $${d}sum $${a} > $${a}.$${d}; \ + done; \ + if [ "$(USE_GPG)" = "yes" ]; then \ + gpg --detach-sign $${a}; \ + fi; \ + done |