aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: b8d8d9ecd1736411dfe183f00805ca15dd5dc45e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
VERSION=$(shell grep ^VERSION cl2vcs.py | sed -e s'/.*\="\([0-9.]\+\)".*/\1/')
PKG=cl2vcs

all:
	nosetests3 --with-doctest

clean:
	rm -f *.pyc

dist: clean
	git-archive --format=tar --prefix=$(PKG)-$(VERSION)/ HEAD | gzip -c > ../$(PKG)-$(VERSION).tar.gz