Files
delimitMate/Makefile
Israel Chauca Fuentes 9c6b615397 Doc update, fix backspace & global functions.
Fixed a problem with MacVim and the Makefile.
2010-04-01 17:53:31 -05:00

22 lines
462 B
Makefile

PLUGIN=delimitMate
install:
cp -f doc/* ~/.vim/doc/${PLUGIN}.txt
cp -f plugin/* ~/.vim/plugin/${PLUGIN}.vim
doc_update: install
/usr/bin/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
/usr/bin/vim -c 'e vimball.txt' -c '%MkVimball! ${PLUGIN}' -c 'q'
gzip: vimball
gzip -f ${PLUGIN}.vba