File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -70,15 +70,18 @@ auth: AUTHORS.txt
7070AUTHORS.txt :
7171 git log --format=' %aN <%aE>' | awk ' {arr[$$0]++} END{for (i in arr){print arr[i], i;}}' | sort -rn | cut -d\ -f2- > AUTHORS.txt
7272
73+ # The tarball signed and sealed
74+ dist : tarball autorevision-$(VERS ) .tgz.md5 autorevision-$(VERS ) .tgz.sig
75+
7376# The tarball
74- dist : autorevision-$(VERS ) .tgz autorevision- $( VERS ) .tgz.md5 autorevision- $( VERS ) .tgz.sig
77+ tarball : autorevision-$(VERS ) .tgz
7578
7679# Make an md5 checksum
77- autorevision-$(VERS ) .tgz.md5 : autorevision- $( VERS ) .tgz
80+ autorevision-$(VERS ) .tgz.md5 : tarball
7881 $(MD5 ) autorevision-$(VERS ) .tgz > autorevision-$(VERS ) .tgz.md5
7982
8083# Make a detached gpg sig
81- autorevision-$(VERS ) .tgz.sig : autorevision- $( VERS ) .tgz
84+ autorevision-$(VERS ) .tgz.sig : tarball
8285 gpg --armour --detach-sign --output " autorevision-$( VERS) .tgz.sig" " autorevision-$( VERS) .tgz"
8386
8487# The actual tarball
You can’t perform that action at this time.
0 commit comments