commitmonitor Code
Monitor your SVN repositories and notifies you on new commits
Brought to you by:
steveking
<?xml version="1.0"?>
<project name="SubversionLib" default="build">
<!-- ====================================================================== -->
<!-- Project targets -->
<!-- ====================================================================== -->
<target name="clean">
<description>
Cleans every subproject.
</description>
<if test="${cleanup == 'yes'}">
<nant target="clean">
<buildfiles>
<include name="*.build" />
<exclude name="default.build" />
</buildfiles>
</nant>
</if>
</target>
<target name="build" depends="clean">
<nant target="build" buildfile="apr.build" />
<nant target="build" buildfile="aprutil.build" />
<nant target="build" buildfile="zlib.build" />
<nant target="build" buildfile="sqlite.build" />
<nant target="build" buildfile="gssapi.build" />
<nant target="build" buildfile="sasl.build" />
<nant target="build" buildfile="serf.build" />
<nant target="build" buildfile="subversion.build" />
</target>
</project>