add oem jar to master build scripts

Project: http://git-wip-us.apache.org/repos/asf/flex-falcon/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-falcon/commit/0ab6801e
Tree: http://git-wip-us.apache.org/repos/asf/flex-falcon/tree/0ab6801e
Diff: http://git-wip-us.apache.org/repos/asf/flex-falcon/diff/0ab6801e

Branch: refs/heads/develop
Commit: 0ab6801e8135dd5bcad52f503354689e474b93af
Parents: dff3a51
Author: Alex Harui <[email protected]>
Authored: Thu Apr 3 15:47:38 2014 -0700
Committer: Alex Harui <[email protected]>
Committed: Thu Apr 3 15:47:38 2014 -0700

----------------------------------------------------------------------
 build.xml                   | 10 +++++++++-
 flex-compiler-oem/build.xml |  4 +++-
 2 files changed, 12 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/0ab6801e/build.xml
----------------------------------------------------------------------
diff --git a/build.xml b/build.xml
index 4c8cc25..cd59d4a 100644
--- a/build.xml
+++ b/build.xml
@@ -68,9 +68,11 @@
 
     <target name="main" depends="sdk, javadoc, tests" description="Default 
target - Builds a Falcon SDK, builds Falcon Javadoc, and runs tests."/>
 
-    <target name="all" depends="main, jx" description="Builds Falcon, then 
FalconJX"/>
+    <target name="all" depends="main, jx, oem" description="Builds Falcon, 
then FalconJX"/>
 
     <target name="jx" depends="compiler.jx, compiler.jx.tests" 
description="Builds FalconJX" />
+    
+    <target name="oem" depends="compiler.oem" description="Builds FB 
Integration JAR" />
 
     <target name="compiler.binary.release" >
         <ant dir="compiler" target="release-binaries" />
@@ -80,6 +82,10 @@
         <ant dir="compiler.tests" target="main"/>
     </target>
 
+    <target name="compiler.oem" description="Builds FB Integration JAR">
+        <ant dir="flex-compiler-oem" target="main"/>
+    </target>
+
     <target name="compiler.jx" description="Builds FalconJX.">
         <ant dir="compiler.jx" target="main"/>
     </target>
@@ -98,6 +104,7 @@
         <ant dir="compiler.tests" target="clean"/>
         <ant dir="compiler.jx" target="clean"/>
         <ant dir="compiler.jx.tests" target="clean"/>
+        <ant dir="flex-compiler-oem" target="clean"/>
     </target>
 
     <target name="wipe" description="Wipes out everything that didn't come 
from Git.">
@@ -110,6 +117,7 @@
         <ant dir="compiler.tests" target="wipe"/>
                <ant dir="compiler.jx" target="super-clean"/>
         <ant dir="compiler.jx.tests" target="wipe"/>
+        <ant dir="flex-compiler-oem" target="wipe"/>
         <delete dir="${basedir}/out" failonerror="false" 
includeEmptyDirs="true"/>
         <delete dir="${basedir}/temp" failonerror="false" 
includeEmptyDirs="true"/>
     </target>

http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/0ab6801e/flex-compiler-oem/build.xml
----------------------------------------------------------------------
diff --git a/flex-compiler-oem/build.xml b/flex-compiler-oem/build.xml
index b5db5be..c65d02c 100644
--- a/flex-compiler-oem/build.xml
+++ b/flex-compiler-oem/build.xml
@@ -156,4 +156,6 @@
         <delete dir="${oem}/bin"/>
     </target>
 
- </project>
+    <target name="wipe" depends="clean" />
+    
+</project>

Reply via email to