From 5d55d3b54795e2122d17b37d8491ec29cd8355cd Mon Sep 17 00:00:00 2001 From: Erich Eckner Date: Wed, 4 May 2016 14:03:25 +0200 Subject: neue Version: 1.0.7 --- Makefile | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index f262902..a796aaa 100644 --- a/Makefile +++ b/Makefile @@ -24,14 +24,14 @@ ETCDIR = /etc BINDIR = /usr/bin MANDIR = /usr/share/man -VERSION = 1.0.6 +VERSION = 1.0.7 all: sendmailadvanced sendmailadvanced.8 %: %.in sed "s/#VERSION#/$(VERSION)/; s@#BINDIR#@$(BINDIR)@; s@#ETCDIR#@$(ETCDIR)@" $< > $@ -.PHONY: install clean +.PHONY: install dist clean install: all install -D -m0755 sendmailadvanced $(DESTDIR)$(BINDIR)/sendmailadvanced @@ -41,4 +41,11 @@ install: all clean: rm -f sendmailadvanced{,.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