]>
git.madduck.net Git - etc/vim.git/blobdiff - Makefile
madduck's git repository
Every one of the projects in this repository is available at the canonical
URL git://git.madduck.net/madduck/pub/<projectpath> — see
each project's metadata for the exact URL.
All patches and comments are welcome. Please squash your changes to logical
commits before using git-format-patch and git-send-email to
patches@ git. madduck. net .
If you'd read over the Git project's submission guidelines and adhered to them,
I'd be especially grateful.
SSH access, as well as push access can be individually
arranged .
If you use my repositories frequently, consider adding the following
snippet to ~/.gitconfig and using the third clone URL listed for each
project:
[url "git://git.madduck.net/madduck/"]
insteadOf = madduck:
install:
mkdir -pv ${ADDONS}/ftdetect
install:
mkdir -pv ${ADDONS}/ftdetect
- cp -v ftdetect/mkd.vim ${ADDONS}/ftdetect/mkd .vim
+ cp -v ftdetect/markdown.vim ${ADDONS}/ftdetect/markdown .vim
mkdir -pv ${ADDONS}/ftplugin
mkdir -pv ${ADDONS}/ftplugin
- cp -v ftplugin/mkd.vim ${ADDONS}/ftplugin/mkd .vim
+ cp -v ftplugin/markdown.vim ${ADDONS}/ftplugin/markdown .vim
mkdir -pv ${ADDONS}/syntax
mkdir -pv ${ADDONS}/syntax
- cp -v syntax/mkd.vim ${ADDONS}/syntax/mkd .vim
+ cp -v syntax/markdown.vim ${ADDONS}/syntax/markdown .vim
mkdir -pv ${ADDONS}/after/ftplugin
mkdir -pv ${ADDONS}/after/ftplugin
- cp -v after/ftplugin/mkd.vim ${ADDONS}/after/ftplugin/mkd .vim
+ cp -v after/ftplugin/markdown.vim ${ADDONS}/after/ftplugin/markdown .vim
- cp -v registry/mkd.yaml ${REGISTRY}/mkd.yaml
+ cp -v registry/markdown.yaml ${REGISTRY}/markdown.yaml
+
+test: build/tabular build/vader.vim
+ test/run-tests.sh
+.PHONY: test
+
+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