summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJonas Bernoulli <jonas@bernoul.li>2022-02-16 20:10:50 +0100
committerJonas Bernoulli <jonas@bernoul.li>2022-02-16 20:10:50 +0100
commit7643a8338e738482f7c8d1f0343d1ecc8e39f0b9 (patch)
treef0956a63fcebe63ea4061cd1f6674adbef81ff19 /Makefile
parent1f1e37709726fc945ecd03336223247a0595e811 (diff)
make: Remove redundant bump-version target
The sisyphus package takes care of this now.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 1 insertions, 7 deletions
diff --git a/Makefile b/Makefile
index 404f119..623c348 100644
--- a/Makefile
+++ b/Makefile
@@ -25,7 +25,7 @@ lisp:
docs:
@$(MAKE) -C docs docs
-texi: bump-version
+texi:
@$(MAKE) -C docs texi
info:
@$(MAKE) -C docs info
@@ -43,12 +43,6 @@ publish:
release:
@$(MAKE) VERSION=$(VERSION) -C docs release
-bump-version:
- @printf "Setting version in transient.el to $(VERSION)\n"
- @test -n "$(VERSION)" || (echo "Version not specified"; false)
- @sed -i -e "/Package-Version:/s|[0-9.]\+|$(VERSION)|" lisp/transient.el
- @sed -i -e "/Package-Version:/s|UNRELEASED|$(shell date +%F)|" docs/CHANGELOG
-
clean:
@$(MAKE) -C lisp clean
@$(MAKE) -C docs clean