Skip to content

Commit

Permalink
ENH: make clean now removes compiled .c and .pyd files.
Browse files Browse the repository at this point in the history
  • Loading branch information
Josh Warner (Mac) committed Jul 8, 2015
1 parent 3ce57f2 commit 9bfcd44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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())"
Expand Down

0 comments on commit 9bfcd44

Please sign in to comment.