mirror of
https://github.com/wassname/scikit-image.git
synced 2026-06-28 04:55:16 +08:00
14 lines
220 B
Makefile
14 lines
220 B
Makefile
.PHONY: all clean test
|
|
|
|
all:
|
|
python setup.py build_ext --inplace
|
|
|
|
clean:
|
|
find . -name "*.so" | xargs rm
|
|
|
|
test:
|
|
nosetests scikits/image
|
|
|
|
coverage:
|
|
nosetests scikits/image --with-coverage --cover-package=scikits.image
|