diff options
author | Christian Hesse <mail@eworm.de> | 2014-04-04 13:53:32 +0200 |
---|---|---|
committer | Christian Hesse <mail@eworm.de> | 2014-04-04 13:53:32 +0200 |
commit | 7938b79ed1c3f38cd39d87a47131b18923069413 (patch) | |
tree | 1e1a78b972c735fe7d8a7429abd91dd02da3be50 /Makefile | |
parent | 9b0cdf2fd7f22aad4ea9d5e5cd429b6dc8343d02 (diff) | |
download | mkinitcpio-ykfde-7938b79ed1c3f38cd39d87a47131b18923069413.tar.gz mkinitcpio-ykfde-7938b79ed1c3f38cd39d87a47131b18923069413.tar.zst |
add make release
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -2,6 +2,9 @@ INSTALL := install MD := markdown RM := rm +# this is just a fallback in case you do not use git but downloaded +# # a release tarball... +# VERSION := 0.3.0 all: udev/ykfde README.html @@ -26,3 +29,7 @@ install-doc: README.md README.html clean: $(MAKE) -C udev clean $(RM) -f README.html + +release: + git archive --format=tar.xz --prefix=mkinicpio-ykfde-$(VERSION)/ $(VERSION) > mkinitcpio-ykfde-$(VERSION).tar.xz + gpg -ab mkinitcpio-ykfde-$(VERSION).tar.xz |