Merge pull request #10270 from bcoca/make_clean_pyc

added cleaning pyc files
This commit is contained in:
Brian Coca 2015-02-17 17:15:42 -05:00
commit fdb36b4ea6

View file

@ -151,6 +151,7 @@ clean:
rm -rf docs/js
@echo "Cleaning up authors file"
rm -f AUTHORS.TXT
find . -type f -name '*.pyc' -delete
python:
$(PYTHON) setup.py build