dot_files/vim-plugins/bundle/jedi-vim/Makefile
2017-07-09 00:23:01 +03:00

16 lines
255 B
Makefile

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