Author: nextgens
Date: 2006-01-20 09:19:07 +0000 (Fri, 20 Jan 2006)
New Revision: 7881

Modified:
   trunk/contrib/freenet_ext/build.xml
Log:
Adding a distclean target to the ant buildfile in contrib

Modified: trunk/contrib/freenet_ext/build.xml
===================================================================
--- trunk/contrib/freenet_ext/build.xml 2006-01-20 08:55:48 UTC (rev 7880)
+++ trunk/contrib/freenet_ext/build.xml 2006-01-20 09:19:07 UTC (rev 7881)
@@ -18,12 +18,12 @@
       <src path="../fec_src"/>
       <classpath path="../onion-common.jar"/>
     </javac>
+    <copy file="../onion_LICENSE" todir="${build}"/>
     <copy todir="${build}">
       <fileset dir="../fec_src">
         <include name="**/*.properties"/>
       </fileset>
     </copy>
-    <copy file="../onion_LICENSE" todir="${build}"/>
   </target>

   <target name="jcpuid" depends="init">
@@ -40,7 +40,10 @@
     </copy>
   </target>

-  <target name="clean"
+  <target name="clean" depends="distclean">
+  </target>
+
+  <target name="distclean"
     description="Delete the build directory and archives">
     <delete dir="${build}"/>
     <delete file="${jar.location}"/>


Reply via email to