diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 11 |
1 files changed, 9 insertions, 2 deletions
@@ -25,14 +25,14 @@ CRONDIR = /etc/cron.daily BINDIR = /usr/bin MANDIR = /usr/share/man -VERSION = 4.0.3 +VERSION = 4.0.4 all: crypt-expiry-check crypt-expiry-check.cron crypt-expiry-check.8 %: %.in sed "s/#VERSION#/$(VERSION)/; s@#CRONDIR#@$(CRONDIR)@; s@#BINDIR#@$(BINDIR)@; s@#ETCDIR#@$(ETCDIR)@" $< > $@ -.PHONY: install clean +.PHONY: install dist clean install: all install -D -m0755 crypt-expiry-check.cron $(DESTDIR)$(CRONDIR)/crypt-expiry-check @@ -43,4 +43,11 @@ install: all clean: rm -f crypt-expiry-check{,.cron,.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 |