Files
scikit-image/Makefile
T
Tony S Yu 0deba46d26 Minor fixes to build process.
* Fix name error when running setup.py from within main package.

* Change `make clean` so that it removes hash files.

* Remove unused import.
2012-02-08 22:38:46 -05:00

15 lines
299 B
Makefile

.PHONY: all clean test
all:
python setup.py build_ext --inplace
git update-index --assume-unchanged skimage/version.py
clean:
find . -name "*.so" -o -name "*.pyc" -o -name "*.pyx.md5" | xargs rm -f
test:
nosetests skimage
coverage:
nosetests skimage --with-coverage --cover-package=skimage