Code

Add a separate "javaclean" target so that it can be invoked without deleting all...
authorishmal <ishmal@users.sourceforge.net>
Fri, 21 Mar 2008 15:48:04 +0000 (15:48 +0000)
committerishmal <ishmal@users.sourceforge.net>
Fri, 21 Mar 2008 15:48:04 +0000 (15:48 +0000)
build.xml

index 486a43d865a5cca29d5157483c4bcab643834209..25a1a2c9670f04a4efd5613da3b42359acdf237c 100644 (file)
--- a/build.xml
+++ b/build.xml
   </target>
 
 
+  <!--
+  ########################################################################
+  ## T A R G E T    :    JAVACLEAN
+  ########################################################################
+  -->
+  <target name="javaclean" depends=""
+      description="clean up java binding classes">
+        <delete dir="${build}/java"/>
+  </target>
+
 
 
   <!--
   ## T A R G E T    :    C L E A N
   ########################################################################
   -->
-  <target name="clean"
+  <target name="clean" depends="javaclean"
         description="clean up.  deleting build and distro dirs" >
 
     <delete dir="${build}"/>