Make $(ENV) target depend on the requirements file.

Fixes #19
pull/22/head
Ryan Kelly 10 years ago
parent c3c177f86b
commit 4361780705

@ -8,7 +8,7 @@ all: build
.PHONY: build
build: | $(ENV)
$(ENV):
$(ENV): requirements.txt
$(VIRTUALENV) --no-site-packages $(ENV)
$(ENV)/bin/pip install -r requirements.txt
$(ENV)/bin/python ./setup.py develop

Loading…
Cancel
Save