Added clean and distclean.

This commit is contained in:
Michael Bayne
2006-10-13 23:51:38 +00:00
parent 57220404af
commit 39c4d0f278
+7 -1
View File
@@ -50,8 +50,14 @@
</copy>
</target>
<!-- cleans out the built application -->
<!-- cleans out the intermediate build files -->
<target name="clean">
<delete dir="${deploy.dir}/classes"/>
<delete dir="${deploy.dir}/docs"/>
</target>
<!-- wipes the entire build directory clean -->
<target name="distclean" depends="clean">
<delete dir="${deploy.dir}"/>
</target>