2020-06-13 14:06:35 +08:00
|
|
|
PATH := ./vim-themis/bin:$(PATH)
|
|
|
|
export THEMIS_VIM := nvim
|
|
|
|
export THEMIS_ARGS := -e -s --headless
|
|
|
|
export THEMIS_HOME := ./vim-themis
|
|
|
|
|
|
|
|
|
2022-01-01 22:47:56 +08:00
|
|
|
install:
|
2020-06-13 14:06:35 +08:00
|
|
|
pip install --upgrade -r test/requirements.txt
|
|
|
|
|
2022-01-01 22:47:56 +08:00
|
|
|
install-user:
|
2020-06-13 14:06:35 +08:00
|
|
|
pip install --user --upgrade -r test/requirements.txt
|
|
|
|
|
|
|
|
lint:
|
|
|
|
vint --version
|
|
|
|
vint autoload
|
|
|
|
|
2022-01-01 22:47:56 +08:00
|
|
|
test: vim-themis
|
2020-06-13 14:06:35 +08:00
|
|
|
themis --version
|
|
|
|
themis test/
|
|
|
|
|
|
|
|
vim-themis:
|
|
|
|
git clone https://github.com/thinca/vim-themis vim-themis
|
|
|
|
|
2022-01-01 22:47:56 +08:00
|
|
|
.PHONY: install install-user lint test
|