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

all:
	nosetests --with-doctest

clean:
	rm -f *.pyc

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