Skip to content

Commit

Permalink
Fix "make clean" does not remove build/ directory
Browse files Browse the repository at this point in the history
  • Loading branch information
tk0miya committed Oct 1, 2016
1 parent 6f3a93c commit 502874b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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 {} +
Expand All @@ -58,6 +58,9 @@ clean-testfiles:
rm -rf tests/build
rm -rf .tox/

clean-buildfiles:
rm -rf build

pylint:
@pylint --rcfile utils/pylintrc sphinx

Expand Down

0 comments on commit 502874b

Please sign in to comment.