diff options
Diffstat (limited to 'scripts/benchmark/sqlite-blobs-backend/makefile')
-rw-r--r-- | scripts/benchmark/sqlite-blobs-backend/makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/scripts/benchmark/sqlite-blobs-backend/makefile b/scripts/benchmark/sqlite-blobs-backend/makefile index f8187e9a..819d2519 100644 --- a/scripts/benchmark/sqlite-blobs-backend/makefile +++ b/scripts/benchmark/sqlite-blobs-backend/makefile @@ -7,8 +7,10 @@ env: if [ ! -d $(VIRTUALENV_ROOT) ]; then \ mkdir -p $$(dirname $(VIRTUALENV_ROOT)); \ virtualenv $(VIRTUALENV_ROOT); \ - $(VIRTUALENV_ROOT)/bin/pip install requirements.pip; \ fi -graph: env +deps: env + $(VIRTUALENV_ROOT)/bin/pip install -r requirements.pip + +graph: deps $(VIRTUALENV_ROOT)/bin/python ./gen-graph.py |