From 0706f6b50459b8e6f33b1c5da94a01d2761981c7 Mon Sep 17 00:00:00 2001 From: Alex Clark Date: Sun, 7 Jun 2015 09:50:01 -0400 Subject: [PATCH] Clean up Makefile [ci skip] - Rename test-dep -> install-req to better describe what target does; keep target name short. --- Makefile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 6755e9b65..2134b3a43 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -.PHONY: pre clean install test inplace coverage test-dep help docs livedocs +.PHONY: pre clean install install-req test inplace coverage help docs livedocs help: @echo "Please use \`make ' where is one of" @@ -10,7 +10,7 @@ help: @echo " coverage run coverage test (in progress)" @echo " docs make html docs" @echo " docserver run an http server on the docs directory" - @echo " test-dep install coveraget and test dependencies" + @echo " install-req install documentation and test dependencies" pre: virtualenv . @@ -34,6 +34,9 @@ install: python setup.py install python selftest.py --installed +install-req: + pip install -r requirements.txt + test: python test-installed.py @@ -51,9 +54,6 @@ coverage: coverage combine coverage report -test-dep: - pip install -r requirements.txt - docs: $(MAKE) -C docs html