Commit d8b237dd authored by Jean-Paul Saman's avatar Jean-Paul Saman

Makefile.am: add dist-checksum target.

parent ddc4ae82
...@@ -25,3 +25,9 @@ changelog: ...@@ -25,3 +25,9 @@ changelog:
sed -e 's/^[^0-9]/ /' -e 's/^ *$$//' -e 's/^ \* / /g' | \ sed -e 's/^[^0-9]/ /' -e 's/^ *$$//' -e 's/^ \* / /g' | \
grep -v '^ \*$$' | uniq >| ChangeLog grep -v '^ \*$$' | uniq >| ChangeLog
dist-checksum: $(DIST_TARGETS)
rm -f *.md5 *.sha256
for sum in '$(DIST_ARCHIVES)'; do \
md5sum $$sum > $$sum.md5 && \
sha256sum $$sum > $$sum.sha256; \
done
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment