mirror of
https://github.com/mattn/emmet-vim.git
synced 2025-12-06 10:44:24 +08:00
16 lines
334 B
Makefile
16 lines
334 B
Makefile
all : emmet-vim.zip
|
|
|
|
remove-zip:
|
|
-rm doc/tags
|
|
-rm emmet-vim.zip
|
|
|
|
emmet-vim.zip: remove-zip
|
|
zip -r emmet-vim.zip autoload plugin doc
|
|
|
|
release: emmet-vim.zip
|
|
vimup update-script emmet.vim
|
|
|
|
test:
|
|
@-rm -f test.log 2> /dev/null
|
|
@vim -N -c "let &rtp .= ',' . getcwd()" -c "so unittest.vim" -c EmmetUnitTest! || cat test.log || exit 1
|