diff options
author | Michał Górny <mgorny@gentoo.org> | 2022-02-23 16:49:51 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2022-02-23 16:49:51 +0100 |
commit | c030e871a8d47b6072cd347d9aaf031ce29dc77c (patch) | |
tree | e6611afcb53ee72048832c984770c48f9e02e711 | |
parent | README: add instructions for syntax checker (diff) | |
download | gentoo-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-- | Makefile | 8 |
1 files changed, 0 insertions, 8 deletions
@@ -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 |