summaryrefslogtreecommitdiff
path: root/Makefile
blob: 79cbdcd13d4f837585ac45b275ab856c71c89358 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
all:

check:
	python-coverage -e
	python-coverage -x tests.py
	python-coverage -r -m -o /usr,/var | \
	    awk '{ print } /^TOTAL/ && $$2 != $$3 {exit 1}'

clean:
	rm -rf *.pyc *.pyo build dist MANIFEST

dist:
	python setup.py sdist