[Vim-latex-cvs] vimfiles makefile,1.3,1.4
Brought to you by:
srinathava,
tmaas
From: <sri...@us...> - 2002-11-02 03:42:31
|
Update of /cvsroot/vim-latex/vimfiles In directory usw-pr-cvs1:/tmp/cvs-serv8504 Modified Files: makefile Log Message: adding a zip2tar target for creating tar.gz files Index: makefile =================================================================== RCS file: /cvsroot/vim-latex/vimfiles/makefile,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** makefile 7 Oct 2002 00:35:41 -0000 1.3 --- makefile 2 Nov 2002 03:42:28 -0000 1.4 *************** *** 16,19 **** --- 16,33 ---- # external tools zip latexSuite.zip ltags + make -s zip2tar + zip2tar: + # copy over zip file to temp dir. + mkdir -p $(TMP)/latexSuite0793 + cp latexSuite.zip $(TMP)/latexSuite0793/ + # now unzip the .zip file there, and create a .tar.gz file from the + # directory contents. + ( \ + cd $(TMP)/latexSuite0793/ ; \ + unzip -o latexSuite.zip ; \ + \rm latexSuite.zip ; \ + tar cvzf latexSuite.tar.gz * \ + ) + \mv $(TMP)/latexSuite0793/latexSuite.tar.gz ./ clean: rm -f latexSuite.zip *************** *** 23,25 **** cd /tmp/ltt/vimfiles; unzip latexSuite.zip upload: ! pscp latexSuite.zip sri...@vi...:/home/groups/v/vi/vim-latex/htdocs/download/latexSuite.zip --- 37,39 ---- cd /tmp/ltt/vimfiles; unzip latexSuite.zip upload: ! pscp latexSuite.* $(CVSUSER)@vim-latex.sf.net:/home/groups/v/vi/vim-latex/htdocs/download/ |