]> git.madduck.net Git - etc/vim.git/blob - 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:

prevent setting other buffers to nomodifiable
[etc/vim.git] / Makefile
1 VIMDIR=/usr/share/vim
2 ADDONS=${VIMDIR}/addons
3 REGISTRY=${VIMDIR}/registry
4
5 all:
6
7 install:
8         mkdir -pv ${ADDONS}/ftdetect
9         cp -v ftdetect/mkd.vim ${ADDONS}/ftdetect/mkd.vim
10         mkdir -pv ${ADDONS}/ftplugin
11         cp -v ftplugin/mkd.vim ${ADDONS}/ftplugin/mkd.vim
12         mkdir -pv ${ADDONS}/syntax
13         cp -v syntax/mkd.vim ${ADDONS}/syntax/mkd.vim
14         mkdir -pv ${ADDONS}/after/ftplugin
15         cp -v after/ftplugin/mkd.vim ${ADDONS}/after/ftplugin/mkd.vim
16         mkdir -pv ${REGISTRY}
17         cp -v registry/mkd.yaml ${REGISTRY}/mkd.yaml