distclean need not depend on clean, it already performs the superset of that

action and it has the added benefit of being idempotent.


git-svn-id: https://samskivert.googlecode.com/svn/trunk@2140 6335cc39-0255-0410-8fd6-9bcaacd3b74c
This commit is contained in:
mdb
2007-07-26 00:31:20 +00:00
parent 02c376e88d
commit 180eedc1ca
+2 -2
View File
@@ -50,8 +50,8 @@
</target>
<!-- wipes the entire build directory clean -->
<target name="distclean" depends="clean">
<delete dir="${deploy.dir}"/>
<target name="distclean">
<delete dir="${deploy.dir}" quiet="true"/>
</target>
<!-- build the java class files -->