blob: d5ed5af235f9fdb9acfd17152ebd2acad6524bac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
all : sonictemplate-vim.zip
remove-zip:
-rm doc/tags
-rm sonictemplate-vim.zip
sonictemplate-vim.zip: remove-zip
find template -type f -exec -print | xargs dos2unix --d2u
zip -r sonictemplate-vim.zip autoload plugin doc template
release: sonictemplate-vim.zip
vimup update-script sonictemplate.vim
|