[Vim-latex-cvs] vimfiles makefile,1.9,1.10
Brought to you by:
srinathava,
tmaas
From: <sri...@us...> - 2003-01-06 10:10:21
|
Update of /cvsroot/vim-latex/vimfiles In directory sc8-pr-cvs1:/tmp/cvs-serv23035 Modified Files: makefile Log Message: - removing the betaup target. - adding a release: target and uphtdocs: target. As of now, both of these have hardcoded srinathava@vim-latex. If someone wants this to change, let me know. The release: target is meant to take care of the annoying problem where every once in a while, releases made via my computer generate CRLF style files. Doing a release via SF should eliminate this problem. - uphtdocs is a way of synchronizing the latex-suite webpage with the latest CVS snapshot. Index: makefile =================================================================== RCS file: /cvsroot/vim-latex/vimfiles/makefile,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** makefile 22 Dec 2002 03:00:33 -0000 1.9 --- makefile 6 Jan 2003 10:10:18 -0000 1.10 *************** *** 48,57 **** cd /tmp/ltt/vimfiles; unzip latexSuite.zip ! # upload the archives to the web. ! upload: ! pscp latexSuite.* $(CVSUSER)@vim-latex.sf.net:/home/groups/v/vi/vim-latex/htdocs/download/ ! betaup: ! pscp latexSuite.zip $(CVSUSER)@vim-latex.sf.net:/home/groups/v/vi/vim-latex/htdocs/download/latexSuite-beta.zip # rsync is like cp (copy) on steroids. Here are some useful options: --- 48,84 ---- cd /tmp/ltt/vimfiles; unzip latexSuite.zip ! # This target is related to a script I have on my sf.net account. That ! # script looks like: ! # ! # #!/bin/bash ! # cd ~/testing/vimfiles; \ ! # cvs -q update; \ ! # make clean; \ ! # make; \ ! # cp latexsuite.* ~/htdocs/download/ ! # ! # Doing a release via sf.net has a couple of advantages: ! # - I do not have to bother with CRLF pain anymore because the copy on ! # sf.net will always have unix style EOLs. ! # - The process is much faster because I only need to communicate a command ! # from my computer to sf.net. The rest is done locally on the sf.net ! # server. ! release: ! plink sri...@vi... /home/users/s/sr/srinathava/bin/upload ! # This is another target akin to the release: target. This target updates ! # the htdocs directory of the latex-suite project to the latest CVS ! # version. ! # This is again related to the uphtdocs script on my sf.net account which ! # looks like: ! # #!/bin/sh ! # ! # # update the htdocs directory ! # cd /home/groups/v/vi/vim-latex/htdocs; cvs -q update ! # # update the packages directory ! # cd /home/groups/v/vi/vim-latex/htdocs/packages; cvs -q update ! uphtdocs: ! plink sri...@vi... /home/users/s/sr/srinathava/bin/uphtdocs ! # rsync is like cp (copy) on steroids. Here are some useful options: |