aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2022-02-23 16:49:51 +0100
committerMichał Górny <mgorny@gentoo.org>2022-02-23 16:49:51 +0100
commitc030e871a8d47b6072cd347d9aaf031ce29dc77c (patch)
treee6611afcb53ee72048832c984770c48f9e02e711
parentREADME: add instructions for syntax checker (diff)
downloadgentoo-syntax-c030e871a8d47b6072cd347d9aaf031ce29dc77c.tar.gz
gentoo-syntax-c030e871a8d47b6072cd347d9aaf031ce29dc77c.tar.bz2
gentoo-syntax-c030e871a8d47b6072cd347d9aaf031ce29dc77c.zip
Makefile: remove the old tagging logicv1
We're moving away from date-tags and into incremental version numbers. Signed-off-by: Michał Górny <mgorny@gentoo.org>
-rw-r--r--Makefile8
1 files changed, 0 insertions, 8 deletions
diff --git a/Makefile b/Makefile
index 87daee1..91ed461 100644
--- a/Makefile
+++ b/Makefile
@@ -1,9 +1,5 @@
# Makefile for gentoo-syntax
-distapp = gentoo-syntax
-distver := $(shell date -u +%Y%m%d)
-distpkg := $(distapp)-$(distver)
-
PREFIX = ${HOME}/.vim/
files = $(wildcard \
@@ -40,9 +36,5 @@ uninstall-files: $(foreach a, $(sort $(files)), \
uninstall-file-%: $(subst _,/,$*)
[ ! -f "$(PREFIX)/$(subst _,/,$*)" ] || rm "$(PREFIX)/$(subst _,/,$*)"
-tag:
- git tag -s $(distpkg)
- @echo "tag created, remember to push it"
-
clean:
find . -name '*~' | xargs rm || true