[Vim-latex-cvs] vimfiles makefile,1.16,1.17
Brought to you by:
srinathava,
tmaas
From: <sri...@us...> - 2003-07-18 02:21:03
|
Update of /cvsroot/vim-latex/vimfiles In directory sc8-pr-cvs1:/tmp/cvs-serv8830 Modified Files: makefile Log Message: - creating targets release: for making temporary dated releases of the form latexSuite20030618.zip etc. updoc: for updating the documentation to the latest cvs. uphtdocs: for updating the htdocs directory (the web-page) with the latest cvs. Will also update the package and template list. Will also update the ChangeLog which is linked from the download page. I have tried to setup the webpage in such a way that the entire maintainence can be done via cvs. Please do it this way. For example, when making changes to the web-page, make changes in a locally checked out copy and do "cvs uphtdocs". If you make some changes to the user manual, do "cvs updoc". If you wish to make a dated release to fix a temporary bug-fix etc, do "cvs release". Index: makefile =================================================================== RCS file: /cvsroot/vim-latex/vimfiles/makefile,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** makefile 18 Jun 2003 06:17:15 -0000 1.16 --- makefile 18 Jul 2003 02:21:00 -0000 1.17 *************** *** 1,5 **** ! ifndef CVSUSER ! CVSUSER := srinathava ! endif DIR1 = $(PWD) --- 1,4 ---- ! CVSUSER = srinathava ! SSHCMD = plink DIR1 = $(PWD) *************** *** 71,75 **** # server. release: ! plink sri...@vi... /home/users/s/sr/srinathava/bin/upload # This is another target akin to the release: target. This target updates --- 70,77 ---- # server. release: ! $(SSHCMD) $(CVSUSER)@vim-latex.sf.net /home/groups/v/vi/vim-latex/bin/upload ! ! updoc: ! $(SSHCMD) $(CVSUSER)@vim-latex.sf.net /home/groups/v/vi/vim-latex/bin/updoc # This is another target akin to the release: target. This target updates *************** *** 85,89 **** # cd /home/groups/v/vi/vim-latex/htdocs/packages; cvs -q update uphtdocs: ! plink sri...@vi... /home/users/s/sr/srinathava/bin/uphtdocs --- 87,91 ---- # cd /home/groups/v/vi/vim-latex/htdocs/packages; cvs -q update uphtdocs: ! $(SSHCMD) $(CVSUSER)@vim-latex.sf.net /home/groups/v/vi/vim-latex/bin/uphtdocs |