From f98fc6f0bae77e9f2c465ff66ebdab2e4110c4ec Mon Sep 17 00:00:00 2001 From: Srinath Avadhanula Date: Tue, 30 Apr 2002 02:08:23 +0000 Subject: [PATCH] . makefile for generating .zip file. --- makefile | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100755 makefile diff --git a/makefile b/makefile new file mode 100755 index 0000000..121fde3 --- /dev/null +++ b/makefile @@ -0,0 +1,28 @@ +latexs: + # set of latex-tools for latex. + # plugins: + zip latexSuite.zip plugin/imaps.vim + zip latexSuite.zip plugin/SyntaxFolds.vim + zip latexSuite.zip plugin/libList.vim + # ftplugins and others. + zip latexSuite.zip ftplugin/tex_latexSuite.vim + 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 vimlatex + zip latexSuite.zip ltags +clean: + rm -f winmanager.zip + rm -f flisttree.zip + rm -f latexSuite.zip + rm -f minibe.zip + rm -f all.zip +ltt: + rm -rf /tmp/ltt/vimfiles/ftplugin + cp -f latexSuite.zip /tmp/ltt/vimfiles/ + cd /tmp/ltt/vimfiles; unzip latexSuite.zip