diff --git a/Makefile b/Makefile index 4e022e2..ed049c6 100644 --- a/Makefile +++ b/Makefile @@ -4,19 +4,20 @@ test: build: mkdir $@ -build/vint: | build +build/venv: | build virtualenv -p python3.6 $@ - $@/bin/pip install vim-vint==0.3.19 -build/flake8: | build - virtualenv -p python3.6 $@ - $@/bin/pip install flake8==3.5.0 +build/venv/bin/vint: | build/venv + $|/bin/pip install vim-vint==0.3.19 -vint: build/vint - build/vint/bin/vint after autoload ftplugin plugin +build/venv/bin/flake8: | build/venv + $|/bin/pip install flake8==3.5.0 -flake8: build/flake8 - build/flake8/bin/flake8 pythonx/jedi_*.py +vint: build/venv/bin/vint + build/venv/bin/vint after autoload ftplugin plugin + +flake8: build/venv/bin/flake8 + build/venv/bin/flake8 pythonx/jedi_*.py check: vint flake8