[Csmail-patches] CVS: csmail/src CSMail.build,1.3,1.4
Status: Pre-Alpha
Brought to you by:
mastergaurav
From: Gaurav V. <mas...@us...> - 2002-09-10 04:27:26
|
Update of /cvsroot/csmail/csmail/src In directory usw-pr-cvs1:/tmp/cvs-serv13216 Modified Files: CSMail.build Log Message: 2002-09-10 * makefile: New way to make doc. * CSMail.build: Added target msgs. Refined targets "build" and "clean" Index: CSMail.build =================================================================== RCS file: /cvsroot/csmail/csmail/src/CSMail.build,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- CSMail.build 4 Sep 2002 06:31:14 -0000 1.3 +++ CSMail.build 10 Sep 2002 04:27:24 -0000 1.4 @@ -4,9 +4,18 @@ <project name="CSMail" default="build"> <property name="debug" value="false"/> + <property name="version" value="1.0-pre-alpha"/> + <property name="website" value="http://csmail.sourceforge.net"/> + + <target name="msgs"> + <echo message="${performing} CSMail library..."/> + <echo message=" Version: ${version}"/> + <echo message=" Website: ${website}"/> + </target> <target name="build"> - <echo message="Building the CSMail library..."/> + <property name="performing" value="Building"/> + <call target="msgs"/> <mkdir dir="../lib"/> <csc target="library" output="../lib/CSMail.dll" debug="${debug}"> <sources> @@ -17,7 +26,8 @@ </target> <target name="clean"> - <echo message="Cleaning the CSMail library..."/> + <property name="performing" value="Cleaning"/> + <call target="msgs"/> <delete file="../lib/CSMail.dll" failonerror="false"/> <delete dir="../lib" failonerror="false"/> </target> |