X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/4b86376013d55c0230bd1f0ac8278d08bb803715..d446595f9e690e9f50eeda0f0e144320ccca72dc:/Makefile diff --git a/Makefile b/Makefile index 4b2ed8d..9260a52 100644 --- a/Makefile +++ b/Makefile @@ -15,3 +15,21 @@ install: cp -v after/ftplugin/markdown.vim ${ADDONS}/after/ftplugin/markdown.vim mkdir -pv ${REGISTRY} cp -v registry/markdown.yaml ${REGISTRY}/markdown.yaml + +test: build/tabular build/vader.vim + test/run-tests.sh +.PHONY: test + +update: build/tabular build/vader.vim + cd build/tabular && git pull + cd build/vader.vim && git pull +.PHONY: update + +build/tabular: | build + git clone https://github.com/godlygeek/tabular build/tabular + +build/vader.vim: | build + git clone https://github.com/junegunn/vader.vim build/vader.vim + +build: + mkdir build