From 7a87e454030601b535fae7d287207686c42ccb73 Mon Sep 17 00:00:00 2001 From: Erich Eckner Date: Wed, 4 May 2016 14:00:52 +0200 Subject: neue Version: 1.0.2 --- Makefile | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index c7fbcd8..2949ab5 100644 --- a/Makefile +++ b/Makefile @@ -23,14 +23,14 @@ DESTDIR = BINDIR = /usr/bin MANDIR = /usr/share/man -VERSION = 1.0.1 +VERSION = 1.0.2 all: sound-cutter sound-cutter.8 %: %.in sed "s/#VERSION#/$(VERSION)/; s@#BINDIR#@$(BINDIR)@" $< > $@ -.PHONY: install clean +.PHONY: install dist clean install: all install -D -m0755 sound-cutter $(DESTDIR)$(BINDIR)/sound-cutter @@ -39,4 +39,11 @@ install: all clean: rm -f sound-cutter{,.8} +dist: clean + git status --porcelain 2> /dev/null | grep -q "\S" && (git add .; git commit -m"neue Version: $(VERSION)") || true + git tag -d v$(VERSION) && git push origin --delete v$(VERSION) || true + git tag v$(VERSION) + git push --force + git push --tags + # End of file -- cgit v1.2.3-54-g00ecf