Merge pull request #1129 from bheesham/makefile

Add PHONY targets; wrap call to recursive make; add path to find.
This commit is contained in:
Ryan Gonzalez 2016-10-05 08:43:32 -05:00 committed by GitHub
commit 790a1a9456

View File

@ -23,7 +23,7 @@ all:
@echo "" @echo ""
docs: docs:
make -C docs html $(MAKE) -C docs html
upload: r upload: r
python setup.py sdist upload python setup.py sdist upload
@ -72,10 +72,10 @@ coveralls:
clean: clean:
@find . -name "*.pyc" -exec rm {} \; @find . -name "*.pyc" -exec rm {} \;
@find -name __pycache__ -delete @find . -name __pycache__ -delete
@${RM} -r -f .tox @${RM} -r -f .tox
@${RM} -r -f dist @${RM} -r -f dist
@${RM} -r -f *.egg-info @${RM} -r -f *.egg-info
@${RM} -r -f docs/_build @${RM} -r -f docs/_build
.PHONY: docs .PHONY: all docs upload full venv dev test tox flake clear d diff r python coveralls clean