Fix "make clean" does not remove build/ directory

This commit is contained in:
Takeshi KOMIYA 2016-10-02 00:25:58 +09:00
parent 6f3a93c8b4
commit 502874bcc4

View File

@ -34,7 +34,7 @@ all: clean-pyc clean-backupfiles style-check test
style-check:
@$(PYTHON) utils/check_sources.py $(DONT_CHECK) .
clean: clean-pyc clean-pycache clean-patchfiles clean-backupfiles clean-generated clean-testfiles
clean: clean-pyc clean-pycache clean-patchfiles clean-backupfiles clean-generated clean-testfiles clean-buildfiles
clean-pyc:
find . -name '*.pyc' -exec rm -f {} +
@ -58,6 +58,9 @@ clean-testfiles:
rm -rf tests/build
rm -rf .tox/
clean-buildfiles:
rm -rf build
pylint:
@pylint --rcfile utils/pylintrc sphinx