Fix Makefile spaces to tabs

This commit is contained in:
Vinayak Mehta
2016-08-08 17:26:54 +05:30
parent 8ff04391b7
commit dda809b286
2 changed files with 141 additions and 141 deletions
+15 -15
View File
@@ -2,30 +2,30 @@ PYTHON ?= python
NOSETESTS ?= nosetests
help:
@echo "Please use \`make <target>' where <target> is one of"
@echo " clean"
@echo " dev to install in develop mode"
@echo " undev to uninstall develop mode"
@echo " install to install for all users"
@echo " test to run tests"
@echo " test-coverage to run tests with coverage report"
@echo "Please use \`make <target>' where <target> is one of"
@echo " clean"
@echo " dev to install in develop mode"
@echo " undev to uninstall develop mode"
@echo " install to install for all users"
@echo " test to run tests"
@echo " test-coverage to run tests with coverage report"
clean:
$(PYTHON) setup.py clean
rm -rf dist
$(PYTHON) setup.py clean
rm -rf dist
dev:
$(PYTHON) setup.py develop
$(PYTHON) setup.py develop
undev:
$(PYTHON) setup.py develop --uninstall
$(PYTHON) setup.py develop --uninstall
install:
$(PYTHON) setup.py install
$(PYTHON) setup.py install
test:
$(NOSETESTS) -s -v
$(NOSETESTS) -s -v
test-coverage:
rm -rf coverage .coverage
$(NOSETESTS) -s -v --with-coverage
rm -rf coverage .coverage
$(NOSETESTS) -s -v --with-coverage