From 2f76d097b72c84b93fb8b088cc518ff627f78778 Mon Sep 17 00:00:00 2001 From: Julien Palard Date: Wed, 1 Aug 2018 14:57:26 +0200 Subject: [PATCH] Makefile: Missing rule to create the venv. --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index a520300e..a4d10dd8 100644 --- a/Makefile +++ b/Makefile @@ -42,6 +42,10 @@ upgrade_venv: $(VENV)/bin/activate . $(VENV)/bin/activate; python3 -m pip install --upgrade sphinx blurb +$(VENV)/bin/activate: + python3 -m venv $(VENV) + + .PHONY: progress progress: @python3 -c 'import sys; print("{:.1%}".format(int(sys.argv[1]) / int(sys.argv[2])))' \