summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2013-06-19 19:31:25 +0200
committerPaul Buetow <paul@buetow.org>2013-06-19 19:31:25 +0200
commit02d32249234d6e91aae9b8247be8a552ad9d8336 (patch)
treec2d2275a14880559d4accb4e70227ec7420bbc07 /Makefile
parent55a000ffc1728c38be17680e663eb5853643d75e (diff)
New release0.7.0
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 8 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index e6eee1f..2546241 100644
--- a/Makefile
+++ b/Makefile
@@ -23,14 +23,22 @@ install:
deinstall:
test ! -z "$(DESTDIR)" && test -f $(DESTDIR)/usr/bin/$(NAME) && rm $(DESTDIR)/usr/bin/$(NAME) || exit 0
test ! -z "$(DESTDIR)/usr/share/$(NAME)" && -d $(DESTDIR)/usr/share/$(NAME) && rm -r $(DESTDIR)/usr/share/$(NAME) || exit 0
+dch:
+ dch -i
deb: version
dpkg-buildpackage
cleanall: clean-top
test -f nytprof.out && rm nytprof.out
test -f tmon.out && rm tmon.out
test -d nytprof && rm -Rf nytprof
+release: dch deb version documentation perltidy
+ git commit -a -m 'New release'
+ bash -c "git tag $$(cat .version)"
+ git push --tags
+ git push origin master
clean-top:
rm ../$(NAME)_*.tar.gz
rm ../$(NAME)_*.dsc
rm ../$(NAME)_*.changes
rm ../$(NAME)_*.deb
+