Commit cdd6b01d by Michael DeHaan

Merge pull request #75 from tbielawa/freshenMakeClean

Freshen up Makefile clean target
parents a57f7ae0 2d052fce
...@@ -33,12 +33,14 @@ pyflakes: ...@@ -33,12 +33,14 @@ pyflakes:
pyflakes lib/ansible/*.py pyflakes lib/ansible/*.py
clean: clean:
@echo "Cleaning up distutils stuff"
rm -rf build rm -rf build
find . -type f -name "*.pyc" -delete @echo "Cleaning up byte compiled python stuff"
find . -type f -name "*.pyo" -delete find . -regex ".*\.py[co]$$"
find . -type f -name "*~" -delete @echo "Cleaning up editor backup files"
find ./docs/ -type f -name "*.xml" -delete find . -type f \( -name "*~" -or -name "#*" \) -delete
find . -type f -name "#*" -delete @echo "Cleaning up asciidoc to man transformations and results"
find ./docs/man -type f \( -name "*.xml" -or -regex ".*\.[0-9]$$" \) -delete
python: docs python: docs
python setup.py build python setup.py build
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment