Skip to content

Commit 8b81a26

Browse files
committed
Make it easier to get just the tarball.
1 parent 28640bd commit 8b81a26

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

Makefile

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,15 +70,18 @@ auth: AUTHORS.txt
7070
AUTHORS.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

0 commit comments

Comments
 (0)