CVS update: /ccvs/

[email protected] 1 Jun 2005 17:29:40 -0000
Newsgroups gmane.comp.version-control.cvs.cvs
Message-ID <[email protected]>
User: conradpino
Date: 05/06/01 10:29:40

Modified:
 /ccvs/
  ChangeLog, makewin32.cmd

Log:
 * makewin32.cmd: Add options to support CLEAN build target.

File Changes:

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

File [changed]: ChangeLog
Url: https://ccvs.cvshome.org/source/browse/ccvs/ChangeLog?r1=1.1220&r2=1.1221
Delta lines:  +4 -0
-------------------
--- ChangeLog	1 Jun 2005 17:06:08 -0000	1.1220
+++ ChangeLog	1 Jun 2005 17:29:38 -0000	1.1221
@@ -1,5 +1,9 @@
 2005-06-01  Conrad T. Pino  <[email protected]>
 
+	* makewin32.cmd: Add options to support CLEAN build target.
+
+2005-06-01  Conrad T. Pino  <[email protected]>
+
 	* makewin32.cmd: Add Windows NT command file to build CVS Project.
 
 2005-05-31  Conrad T. Pino  <[email protected]>

File [changed]: makewin32.cmd
Url: https://ccvs.cvshome.org/source/browse/ccvs/makewin32.cmd?r1=1.1&r2=1.2
Delta lines:  +21 -0
--------------------
--- makewin32.cmd	1 Jun 2005 17:06:08 -0000	1.1
+++ makewin32.cmd	1 Jun 2005 17:29:38 -0000	1.2
@@ -5,14 +5,35 @@
 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