Update of /cvsroot/vim-latex/vimfiles
In directory sc8-pr-cvs1:/tmp/cvs-serv12966
Modified Files:
makefile
Log Message:
- make things silent... Otherwise cvs errors, shell errors etc scroll off
the screen making things difficult to see.
Index: makefile
===================================================================
RCS file: /cvsroot/vim-latex/vimfiles/makefile,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** makefile 6 Jan 2003 10:10:18 -0000 1.10
--- makefile 17 Jan 2003 18:43:20 -0000 1.11
***************
*** 9,28 ****
latexs:
# plugins:
! zip latexSuite.zip plugin/imaps.vim
! zip latexSuite.zip plugin/SyntaxFolds.vim
! zip latexSuite.zip plugin/libList.vim
# ftplugins
! zip latexSuite.zip ftplugin/tex_latexSuite.vim
! zip latexSuite.zip ftplugin/tex/*.vim
# files in the latex-suite directory. Skip the CVS files.
! zip -R latexSuite.zip `find ftplugin/latex-suite -name '*' | grep -v CVS`
# documentation
! zip latexSuite.zip doc/latex*.txt
# indentation
! zip latexSuite.zip indent/tex.vim
# compiler
! zip latexSuite.zip compiler/tex.vim
# external tools
! zip latexSuite.zip ltags
# Now to make a tar.gz file from the .zip file.
--- 9,28 ----
latexs:
# plugins:
! zip -q latexSuite.zip plugin/imaps.vim
! zip -q latexSuite.zip plugin/SyntaxFolds.vim
! zip -q latexSuite.zip plugin/libList.vim
# ftplugins
! zip -q latexSuite.zip ftplugin/tex_latexSuite.vim
! zip -q latexSuite.zip ftplugin/tex/*.vim
# files in the latex-suite directory. Skip the CVS files.
! zip -q -R latexSuite.zip `find ftplugin/latex-suite -name '*' | grep -v CVS`
# documentation
! zip -q latexSuite.zip doc/latex*.txt
# indentation
! zip -q latexSuite.zip indent/tex.vim
# compiler
! zip -q latexSuite.zip compiler/tex.vim
# external tools
! zip -q latexSuite.zip ltags
# Now to make a tar.gz file from the .zip file.
***************
*** 31,37 ****
( \
cd $(TMP)/latexSuite0793/ ; \
! unzip -o latexSuite.zip ; \
\rm latexSuite.zip ; \
! tar cvzf latexSuite.tar.gz * ; \
\mv latexSuite.tar.gz $(DIR1)/ ; \
)
--- 31,37 ----
( \
cd $(TMP)/latexSuite0793/ ; \
! unzip -q -o latexSuite.zip ; \
\rm latexSuite.zip ; \
! tar czf latexSuite.tar.gz * ; \
\mv latexSuite.tar.gz $(DIR1)/ ; \
)
|