summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Runge <dvzrv@archlinux.org>2020-05-31 23:05:52 +0200
committerDavid Runge <dvzrv@archlinux.org>2020-05-31 23:05:52 +0200
commit5fbbb05a2e4abc1dc69760a0bb80453e321561ba (patch)
tree2bf06a2eaa5d49750233ba04122c6b85ef8cab8b
parent0d67870667ee8c2084dea2bbdf1323288e2e7457 (diff)
downloadarchiso32-5fbbb05a2e4abc1dc69760a0bb80453e321561ba.tar.xz
Removing dist target
Makefile: Removing the dist target. It requires to increment a number on each release. This workflow can be entirely circumvented by signed commit tags and using those for packaging.
-rw-r--r--Makefile8
1 files changed, 1 insertions, 7 deletions
diff --git a/Makefile b/Makefile
index 210d8cc..6b479f9 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,3 @@
-V=43
-
INSTALL_FILES=$(wildcard archiso/initcpio/install/*)
HOOKS_FILES=$(wildcard archiso/initcpio/hooks/*)
SCRIPT_FILES=$(wildcard archiso/initcpio/script/*)
@@ -34,8 +32,4 @@ install-doc:
install -d $(DOC_DIR)
install -m 644 -t $(DOC_DIR) $(DOC_FILES)
-dist:
- git archive --format=tar --prefix=archiso-$(V)/ v$(V) | gzip -9 > archiso-$(V).tar.gz
- gpg --detach-sign --use-agent archiso-$(V).tar.gz
-
-.PHONY: install install-program install-initcpio install-examples install-doc dist
+.PHONY: install install-program install-initcpio install-examples install-doc