ENH: make clean now removes compiled .c and .pyd files.

This commit is contained in:
Josh Warner (Mac)
2015-07-07 19:04:35 -05:00
parent 3ce57f244b
commit 9bfcd44cc8
+1 -1
View File
@@ -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())"