Skip to content

Commit

Permalink
Minor changes to makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
xolox committed Jun 23, 2016
1 parent c86ce52 commit 171f43d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Makefile
Expand Up @@ -18,6 +18,7 @@ default:
@echo ' make install install the package in a virtual environment'
@echo ' make reset recreate the virtual environment'
@echo ' make check check coding style (PEP-8, PEP-257)'
@echo ' make test run the test suite'
@echo ' make readme update usage in readme'
@echo ' make docs update documentation using Sphinx'
@echo ' make publish publish changes to GitHub/PyPI'
Expand Down Expand Up @@ -62,8 +63,8 @@ publish: install
make clean

clean:
rm -Rf *.egg .coverage .tox build dist docs/build htmlcov
rm -Rf *.egg .cache .coverage .tox build dist docs/build htmlcov
find -depth -type d -name __pycache__ -exec rm -Rf {} \;
find -type f -name '*.pyc' -delete

.PHONY: default install reset check docs publish clean
.PHONY: default install reset check test docs publish clean

0 comments on commit 171f43d

Please sign in to comment.