Makefile phony fix

This commit is contained in:
Casper da Costa-Luis 2015-10-31 11:38:53 +00:00
parent 9153376811
commit 291225c322
1 changed files with 18 additions and 6 deletions

View File

@ -14,15 +14,27 @@
.PHONY:
alltests
all
flake8
test
testnose
testsetup
testcoverage
installdev
install
build
pypimeta
pypi
none
alltests:
testcoverage
flake8
testsetup
@make testcoverage
@make flake8
@make testsetup
all:
alltests
build
@make alltests
@make build
flake8:
flake8 --max-line-length=80 --count --statistics --exit-zero tqdm/
@ -60,4 +72,4 @@ pypi:
twine upload dist/*
none:
none # used for unit testing
# used for unit testing