diff options
author | lhauch <lhauch@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-07-09 14:14:00 +0000 |
---|---|---|
committer | lhauch <lhauch@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-07-09 14:14:00 +0000 |
commit | a78287690899b05a748425616108df91b15b4090 (patch) | |
tree | b8582640f02f64a1718c26651b0536e265c31ad1 /Tools/build.xml | |
parent | 908b1c0595edeeb3b746c8326156c974abec5f0a (diff) | |
download | edk2-platforms-a78287690899b05a748425616108df91b15b4090.tar.xz |
Update the binary MSA to say they were binary, fixed an abstract, changed a module UiName, changed tool default values in the build.xml files to give the name of the tool, rather than all, so when building the tools, you can tell what tool it is trying to build.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@848 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'Tools/build.xml')
-rw-r--r-- | Tools/build.xml | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/Tools/build.xml b/Tools/build.xml index 54d39200f1..cc2368521b 100644 --- a/Tools/build.xml +++ b/Tools/build.xml @@ -13,6 +13,17 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. <property environment="env"/>
+ <target name="all" depends="C_Code"/>
+
+ <target name="C_Code" depends="JavaCode">
+ <subant target="" inheritall="false">
+ <filelist dir="."
+ files="
+ Source/TianoTools/build.xml
+ "/>
+ </subant>
+ </target>
+
<target name="JavaCode" depends="SurfaceArea">
<subant target="" verbose="true" inheritall="false">
<!-- Note: this is an ordered list. The projects have dependencies between them. -->
@@ -27,8 +38,6 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. </subant>
</target>
- <target name="all" depends="C_Code"/>
-
<target name="SurfaceArea" depends="makeCatalog">
<subant target="" verbose="true" inheritall="false">
<filelist dir="."
@@ -38,15 +47,6 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. </subant>
</target>
- <target name="C_Code" depends="JavaCode">
- <subant target="" inheritall="false">
- <filelist dir="."
- files="
- Source/TianoTools/build.xml
- "/>
- </subant>
- </target>
-
<target name="makeCatalog">
<echo file="XMLSchema/catalog.xml">
<![CDATA[<?xml version="1.0"?>
|