CVS update [cvs1-11-x-branch]: /ccvs/

[email protected] 1 Jun 2005 17:33:16 -0000
Newsgroups gmane.comp.version-control.cvs.cvs
Message-ID <[email protected]>
Tag: cvs1-11-x-branch
User: conradpino
Date: 05/06/01 10:33:16

Added:
 /ccvs/
  makewin32.cmd

Modified:
 /ccvs/
  ChangeLog

Log:
 * makewin32.cmd: Add Windows NT command file to build CVS Project.
   Imported from revision 1.2 on feature branch.

File Changes:

Directory: /ccvs/
=================

File [changed]: ChangeLog
Url: https://ccvs.cvshome.org/source/browse/ccvs/ChangeLog?r1=1.692.2.210&r2=1.692.2.211
Delta lines:  +5 -0
-------------------
--- ChangeLog	27 May 2005 16:25:41 -0000	1.692.2.210
+++ ChangeLog	1 Jun 2005 17:33:14 -0000	1.692.2.211
@@ -1,3 +1,8 @@
+2005-06-01  Conrad T. Pino  <[email protected]>
+
+	* makewin32.cmd: Add Windows NT command file to build CVS Project.
+	  Imported from revision 1.2 on feature branch.
+
 2005-05-27  Derek Price  <[email protected]>
 
 	* NEWS: Note diff space split fix.

File [added]: makewin32.cmd
Url: https://ccvs.cvshome.org/source/browse/ccvs/makewin32.cmd?rev=1.2.2.1&content-type=text/vnd.viewcvs-markup
Added lines: 45
---------------
@echo off
Rem
Rem Windows NT command file to build CVS Project
Rem
Rem Builds Win32 Debug configuration as the default
Rem
if %1%x == x goto compile_debug
if %1%x == -cx goto compile_clean
if %1%x == -cdx goto compile_clean_debug
if %1%x == -dcx goto compile_clean_debug
if %1%x == -crx goto compile_clean_release
if %1%x == -rcx goto compile_clean_release
if %1%x == -dx goto compile_debug
if %1%x == -rx goto compile_release
echo Error: Invalid option: %1%
echo Usage: makewin32
echo Usage: makewin32 -c
echo Usage: makewin32 -cd
echo Usage: makewin32 -cr
echo Usage: makewin32 -d
echo Usage: makewin32 -r
goto compile_done

:compile_clean
nmake /f cvsnt.mak CFG="cvsnt - Win32 Debug" CLEAN
nmake /f cvsnt.mak CFG="cvsnt - Win32 Release" CLEAN
goto compile_done

:compile_clean_debug
nmake /f cvsnt.mak CFG="cvsnt - Win32 Debug" CLEAN
goto compile_done

:compile_clean_release
nmake /f cvsnt.mak CFG="cvsnt - Win32 Release" CLEAN
goto compile_done

:compile_debug
nmake /f cvsnt.mak CFG="cvsnt - Win32 Debug"
goto compile_done

:compile_release
nmake /f cvsnt.mak CFG="cvsnt - Win32 Release"
goto compile_done

:compile_done