Fix needless rebuilding by touching ./local at end of build

This commit is contained in:
Ryan Kelly 2014-05-01 12:02:41 +10:00
parent 23290e92a2
commit 4e6bef8086

View File

@ -12,6 +12,7 @@ $(ENV): requirements.txt
$(VIRTUALENV) --no-site-packages $(ENV) $(VIRTUALENV) --no-site-packages $(ENV)
$(ENV)/bin/pip install -r requirements.txt $(ENV)/bin/pip install -r requirements.txt
$(ENV)/bin/python ./setup.py develop $(ENV)/bin/python ./setup.py develop
touch $(ENV)
.PHONY: test .PHONY: test
test: | $(TOOLS) test: | $(TOOLS)