forked from VimPlug/jedi-vim
17 lines
248 B
Makefile
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
|