diff options
-rw-r--r-- | Makefile | 11 |
1 files changed, 9 insertions, 2 deletions
@@ -28,7 +28,7 @@ MANDIR = /usr/share/man TMPDIR = /tmp WAITDIR = /home/shutdown/.warteauf -VERSION = 0.2 +VERSION = 0.3 all: doalogwatch doalogwatch.cron @@ -42,7 +42,7 @@ all: doalogwatch doalogwatch.cron s@#TMPDIR#@$(TMPDIR)@" \ $< > $@ -.PHONY: install clean +.PHONY: install dist clean install: all install -D -m0755 -t $(DESTDIR)$(BINDIR) doalogwatch @@ -53,4 +53,11 @@ install: all clean: rm -f doalogwatch{,.cron} +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 |