mirror of
https://github.com/Raimondi/delimitMate.git
synced 2025-12-06 12:44:27 +08:00
20 lines
421 B
Makefile
20 lines
421 B
Makefile
PLUGIN=delimitMate
|
|
|
|
install:
|
|
cp -f doc/* ~/.vim/doc/${PLUGIN}.txt
|
|
cp -f plugin/* ~/.vim/plugin/${PLUGIN}.vim
|
|
vim -u NONE -c 'helptags ~/.vim/doc' -c 'q'
|
|
|
|
zip:
|
|
zip -r ${PLUGIN}.zip doc plugin
|
|
zip ${PLUGIN}.zip -d \*.sw\?
|
|
|
|
vimball: install
|
|
echo doc/${PLUGIN}.txt > vimball.txt
|
|
echo plugin/${PLUGIN}.vim >> vimball.txt
|
|
vim -c 'e vimball.txt' -c '%MkVimball! ${PLUGIN}' -c 'q'
|
|
|
|
gzip: vimball
|
|
gzip -f ${PLUGIN}.vba
|
|
|