Update of /cvsroot/csmail/csmail/src
In directory usw-pr-cvs1:/tmp/cvs-serv1717/src
Added Files:
.cvsignore CSMail.build ChangeLog makefile
Log Message:
2002-02-24 Gaurav Vaish <mastergaurav AT users DOT sf DOT net>
* **.**/** -- Final single commit for all the files.
--- NEW FILE ---
*~
.*.swp
license
--- NEW FILE ---
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- NAnt build file for CSMail.dll -->
<project name="CSMail" default="build">
<property name="debug" value="false"/>
<target name="build">
<echo message="Building the CSMail library..."/>
<mkdir dir="../lib"/>
<csc target="library" output="../lib/CSMail.dll" debug="${debug}">
<sources>
<includes name="CSMail/*.cs"/>
<includes name="CSMail.Utils/*.cs"/>
</sources>
</csc>
</target>
<target name="clean">
<echo message="Cleaning the CSMail library..."/>
<delete file="../lib/CSMail.dll" failonerror="false"/>
<delete dir="../lib" failonerror="false"/>
</target>
</project>
--- NEW FILE ---
2002-06-20 Gaurav Vaish <mastergaurav AT users DOT sf DOT net>
* Added directory CSMail.Utils
2002-06-13 Gaurav Vaish <mastergaurav AT users DOT sf DOT net>
* Added directory CSMail
--- NEW FILE ---
NANT = ../nant/NAnt.exe
BUILD_FILE = CSMail.build
all: lib
linux: lib
windows: lib
lib:
@$(NANT) -buildfile:$(BUILD_FILE) build
clean:
@rm -f *~ .*~
@rm -f CSMail/*~ CSMail/.*~
@$(NANT) -buildfile:$(BUILD_FILE) clean
|