mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-23 07:20:04 +08:00
14 lines
228 B
Makefile
14 lines
228 B
Makefile
test: build/vader | build
|
|
$(VIM_BIN) -Nu test/vimrc $(VIM_Es) -c 'Vader! test/**'
|
|
|
|
build/vader:
|
|
git clone --depth 1 https://github.com/junegunn/vader.vim.git $@
|
|
|
|
build:
|
|
mkdir -p $@
|
|
|
|
clean:
|
|
$(RM) -r build
|
|
|
|
.PHONY: clean test
|