all: build build: python setup.py build install: python setup.py install test: python -c 'import sys; print sys.executable' > test/fulltester.local cd test && python ./fulltester.py clean: rm -fr build find . -name '*.py[co]' -exec rm {} \; fresh: clean all .PHONY: all test clean fresh