1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-03-11 17:15:46 +08:00

14 lines
228 B
Makefile
Raw Normal View History

2017-10-05 00:21:24 +02:00
test: build/vader | build
2022-04-11 16:04:35 +08:00
$(VIM_BIN) -Nu test/vimrc $(VIM_Es) -c 'Vader! test/**'
2017-10-05 00:21:24 +02:00
build/vader:
git clone --depth 1 https://github.com/junegunn/vader.vim.git $@
build:
mkdir -p $@
2017-10-05 00:47:40 +02:00
clean:
$(RM) -r build
.PHONY: clean test