Files
delimitMate/Makefile
Israel Chauca Fuentes 4e63e5fe10 - Single quote after an alphanumeric character is an apostrophe.
- First attempt to behave nicely with an unbalanced quote.
2010-03-23 01:59:40 -05:00

16 lines
384 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 pickacolor.zip doc plugin
zip pickacolor.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'