Minor ui fix in mail templates
[flowspy] / Makefile
1 flowspytag = $(shell git describe --abbrev=0)
2 flowspyver = $(shell git describe --abbrev=0 | egrep -o '([0-9]\.){1,10}[0-9]')
3
4 .PHONY: dist distclean
5
6 dist: 
7         git archive --format tar --prefix flowspy-$(flowspyver)/ -o flowspy-$(flowspyver).tar $(flowspytag)
8         gzip -f flowspy-$(flowspyver).tar
9 distclean:
10         @rm -f *tar.gz
11