diff options
author | yshi8 <yshi8@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-07-05 09:20:45 +0000 |
---|---|---|
committer | yshi8 <yshi8@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-07-05 09:20:45 +0000 |
commit | 2a8198da06421c56bfbd4a693ed7268108f42f3a (patch) | |
tree | 58beac4203eb18c0371a40bd6ab5026a13ecf2ef /Tools | |
parent | ce73a791eb81b088783de77a5c72565154b215f6 (diff) | |
download | edk2-platforms-2a8198da06421c56bfbd4a693ed7268108f42f3a.tar.xz |
Added FrameworkWizard build into build.xml and corrected the items in clean/cleanall targets
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@766 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'Tools')
-rw-r--r-- | Tools/build.xml | 23 |
1 files changed, 11 insertions, 12 deletions
diff --git a/Tools/build.xml b/Tools/build.xml index 950bf32044..54d39200f1 100644 --- a/Tools/build.xml +++ b/Tools/build.xml @@ -22,11 +22,8 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. Source/GenBuild/build.xml
Source/FrameworkTasks/build.xml
Source/Cpptasks/build.xml
+ Source/FrameworkWizard/build.xml
"/>
- <!--
- Source/ModuleEditor/build.xml
- Source/PackageEditor/build.xml
- -->
</subant>
</target>
@@ -42,7 +39,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. </target>
<target name="C_Code" depends="JavaCode">
- <subant target="" verbose="true" inheritall="false">
+ <subant target="" inheritall="false">
<filelist dir="."
files="
Source/TianoTools/build.xml
@@ -64,31 +61,33 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. <copy file="Conf/tools_def.template" tofile="Conf/tools_def.txt" overwrite="false"/>
<copy file="Conf/target.template" tofile="Conf/target.txt" overwrite="false"/>
</target>
+
<target name="clean">
<subant target="clean" inheritall="false">
<filelist dir="."
files="
Source/TianoTools/build.xml
- Source/ModuleEditor/build.xml
- Source/PackageEditor/build.xml
+ Source/FrameworkWizard/build.xml
+ Source/Cpptasks/build.xml
Source/FrameworkTasks/build.xml
Source/GenBuild/build.xml
+ Source/Common/build.xml
Source/SurfaceArea/build.xml
- Source/Cpptasks/build.xml
"/>
</subant>
</target>
+
<target name="cleanall">
- <subant target="cleanall" verbose="true" inheritall="false">
+ <subant target="cleanall" inheritall="false">
<filelist dir="."
files="
Source/TianoTools/build.xml
- Source/ModuleEditor/build.xml
- Source/PackageEditor/build.xml
+ Source/FrameworkWizard/build.xml
+ Source/Cpptasks/build.xml
Source/FrameworkTasks/build.xml
Source/GenBuild/build.xml
+ Source/Common/build.xml
Source/SurfaceArea/build.xml
- Source/Cpptasks/build.xml
"/>
</subant>
</target>
|