dot_files/vim-plugins/bundle/jedi-vim/Makefile

17 lines
255 B
Makefile
Raw Normal View History

2017-07-09 00:26:06 +03:00
test:
py.test
build:
mkdir $@
build/vint: | build
virtualenv $@
$@/bin/pip install vim-vint
check: LINT_FILES:=after autoload ftplugin plugin
check: build/vint
build/vint/bin/vint $(LINT_FILES)
clean:
rm -rf .cache build
.PHONY: test check clean