.PHONY: all build test clean clean_pyc sdist install
.SILENT: test

all: build

clean:
	python setup.py clean_all

clean_pyc:
	python setup.py clean_pyc

test:
	python setup.py test

sdist:
	python setup.py sdist

build:
	python setup.py bdist

install:
	python setup.py install

