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/12/13 00:48:40 UTC

svn commit: r486417 - /harmony/enhanced/trunk/build.xml

Author: geirm
Date: Tue Dec 12 15:48:39 2006
New Revision: 486417

URL: http://svn.apache.org/viewvc?view=rev&rev=486417
Log:
add building the tools and common resources for tools


Modified:
    harmony/enhanced/trunk/build.xml

Modified: harmony/enhanced/trunk/build.xml
URL: http://svn.apache.org/viewvc/harmony/enhanced/trunk/build.xml?view=diff&rev=486417&r1=486416&r2=486417
==============================================================================
--- harmony/enhanced/trunk/build.xml (original)
+++ harmony/enhanced/trunk/build.xml Tue Dec 12 15:48:39 2006
@@ -44,7 +44,7 @@
     <description>
         Apache Harmony subproject federation script
     </description>
-
+	
     <!-- ================================================================================ -->
     <!--     main target - should checkout, build and package hdk, jdk and jre            -->
     <!-- ================================================================================ -->
@@ -57,6 +57,8 @@
                  switch_svn_commonresources,
                  build_classlib,
                  build_vm,
+                 build_commonresources,
+                 build_jdktools,
         		 assemble_artifacts,
                  bundle_hdk,
         		 bundle_jdk,
@@ -376,6 +378,20 @@
             <env key="BUILD_CFG" value="release"/>
             <env key="CXX" value="msvc"/>
         </exec>
+    </target>
+
+    <!-- ================================================================================ -->
+    <!--    build the common resources - ensure depends are up to date an then rebuild            -->
+    <!-- ================================================================================ -->
+    <target name="build_commonresources">
+        <ant antfile="common_resources/build.xml" target="fetch-depends" inheritall="false" />
+    </target>
+
+    <!-- ================================================================================ -->
+    <!--    build the common resources - ensure depends are up to date an then rebuild            -->
+    <!-- ================================================================================ -->
+    <target name="build_jdktools">
+        <ant antfile="working_jdktools/build.xml" target="rebuild" inheritall="false" />
     </target>
 
     <!-- ================================================================================ -->