Merge pull request #1992 from stefanv/clean_all_md5

Remove all .md5 files on clean
This commit is contained in:
Johannes Schönberger
2016-03-09 13:44:25 +01:00
+1 -1
View File
@@ -6,7 +6,7 @@ all:
$(PYTHON) setup.py build_ext --inplace
clean:
find . -name "*.so" -o -name "*.pyc" -o -name "*.pyx.md5" -o -name "*.pyd" | xargs rm -f
find . -name "*.so" -o -name "*.pyc" -o -name "*.md5" -o -name "*.pyd" | xargs rm -f
find . -name "*.pyx" -exec ./tools/rm_pyx_c_file.sh {} \;
test: