1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-24 11:00:05 +08:00
SpaceVim/Makefile
2017-10-07 02:31:42 +02:00

14 lines
211 B
Makefile

test: build/vader | build
vim -Nu test/vimrc -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