Makefile: Missing rule to create the venv.

This commit is contained in:
Julien Palard 2018-08-01 14:57:26 +02:00
parent a6408e0991
commit 2f76d097b7
1 changed files with 4 additions and 0 deletions

View File

@ -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])))' \