Files
jedi-vim/Makefile
2018-04-19 21:55:19 +02:00

17 lines
248 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 build
.PHONY: test check clean