You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by ge...@apache.org on 2006/08/14 21:49:42 UTC

svn commit: r431422 - /incubator/harmony/enhanced/trunk/build.xml

Author: geirm
Date: Mon Aug 14 12:49:42 2006
New Revision: 431422

URL: http://svn.apache.org/viewvc?rev=431422&view=rev
Log:
break the build_vm_unix target up into callable 
pieces - makes life easier when you just want to
work in the federated tree and do quick incremental
builds


Modified:
    incubator/harmony/enhanced/trunk/build.xml

Modified: incubator/harmony/enhanced/trunk/build.xml
URL: http://svn.apache.org/viewvc/incubator/harmony/enhanced/trunk/build.xml?rev=431422&r1=431421&r2=431422&view=diff
==============================================================================
--- incubator/harmony/enhanced/trunk/build.xml (original)
+++ incubator/harmony/enhanced/trunk/build.xml Mon Aug 14 12:49:42 2006
@@ -243,15 +243,24 @@
     <!-- ================================================================================ -->
     <target name="build_vm" depends="init,build_vm_unix,build_vm_windows"/>
 
-    <target name="build_vm_unix" if="is.unix">
+    <target name="build_vm_unix" if="is.unix" depends="build_vm_unix_update, build_vm_unix_clean, build_vm_unix_build">
+    </target>
+
+    <target name="build_vm_unix_update" depends="init" if="is.unix">
         <exec executable="sh" dir="working_vm/build" >
             <arg line="build.sh update -Dexternal.dep.CLASSLIB.loc=${drlvm.classlib.offset}"/>
             <env key="BUILD_CFG" value="release"/>
         </exec>
+    </target>
+
+    <target name="build_vm_unix_clean"  depends="init" if="is.unix">
         <exec executable="sh" dir="working_vm/build" >
             <arg line="build.sh clean -Dexternal.dep.CLASSLIB.loc=${drlvm.classlib.offset}"/>
             <env key="BUILD_CFG" value="release"/>
         </exec>
+    </target>
+
+    <target name="build_vm_unix_build" depends="init" if="is.unix">
         <exec executable="sh" dir="working_vm/build" >
             <arg line="build.sh -Dexternal.dep.CLASSLIB.loc=${drlvm.classlib.offset}"/>
             <env key="BUILD_CFG" value="release"/>