forked from VimPlug/emmet-vim
16 lines
342 B
Makefile
16 lines
342 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 --clean -N -c "let &rtp .= ',' . getcwd()" -c "so unittest.vim" -c EmmetUnitTest! || cat test.log || exit 1
|