mirror of
https://github.com/wassname/scikit-image.git
synced 2026-06-27 18:25:32 +08:00
ENH: make clean now removes compiled .c and .pyd files.
This commit is contained in:
@@ -4,7 +4,7 @@ all:
|
||||
python setup.py build_ext --inplace
|
||||
|
||||
clean:
|
||||
find . -name "*.so" -o -name "*.pyc" -o -name "*.pyx.md5" | xargs rm -f
|
||||
find . -name "*.so" -o -name "*.pyc" -o -name "*.pyx.md5" -o -name "*.c" -o -name "*.pyd" | xargs rm -f
|
||||
|
||||
test:
|
||||
python -c "import skimage, sys, io; sys.exit(skimage.test_verbose())"
|
||||
|
||||
Reference in New Issue
Block a user