
all:
	python setup.py build
	echo "All done."

install:
	python setup.py install

clean:
	rm -rf *.pyc build

.PHONY: all clean
