diff options
author | lhauch <lhauch@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-08-01 23:54:00 +0000 |
---|---|---|
committer | lhauch <lhauch@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-08-01 23:54:00 +0000 |
commit | c80da0c44248639cc87bd10c8d0dc355f4cd3a9c (patch) | |
tree | 34c81bcbc1532a98206f864be03edc7a427c259d /Tools | |
parent | ea5254ee0b3c730ee82c177135b9d135b9da4e08 (diff) | |
download | edk2-platforms-c80da0c44248639cc87bd10c8d0dc355f4cd3a9c.tar.xz |
Added target Wizard which just relies on the SurfaceArea. Also fixed the echo messages.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@1173 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'Tools')
-rw-r--r-- | Tools/build.xml | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/Tools/build.xml b/Tools/build.xml index 305dad848c..79b4569099 100644 --- a/Tools/build.xml +++ b/Tools/build.xml @@ -14,7 +14,9 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. <taskdef resource="net/sf/antcontrib/antlib.xml"/>
<property environment="env"/>
- <target name="all" depends="C_Code"/>
+ <target name="all" depends="C_Code">
+ <echo message="The EDK II Tools build has completed!"/>
+ </target>
<target name="C_Code" depends="JavaCode">
<subant target="" inheritall="false">
@@ -38,6 +40,17 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. Source/FrameworkWizard/build.xml
"/>
</subant>
+ <echo message="The EDK II Java Tools build has completed!"/>
+ </target>
+
+ <target name="Wizard" depends="SurfaceArea">
+ <subant target="" verbose="true" inheritall="false">
+ <!-- Note: this is an ordered list. The projects have dependencies between them. -->
+ <filelist dir="."
+ files="
+ Source/FrameworkWizard/build.xml
+ "/>
+ </subant>
</target>
<target name="SurfaceArea" depends="makeCatalog">
|