3 Copyright (c) 2006, Intel Corporation
4 All rights reserved. This program and the accompanying materials
5 are licensed and made available under the terms and conditions of the BSD License
6 which accompanies this distribution. The full text of the license may be found at
7 http://opensource.org/licenses/bsd-license.php
9 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
10 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12 <project name=
"Tools" default=
"all" basedir=
".">
14 <taskdef resource=
"net/sf/antcontrib/antlib.xml"/>
15 <property environment=
"env"/>
17 <target name=
"all" depends=
"C_Code">
18 <echo message=
"The EDK II Tools build has completed!"/>
21 <target name=
"C_Code" depends=
"JavaCode">
22 <subant target=
"" inheritall=
"false">
25 Source/TianoTools/build.xml
30 <target name=
"JavaCode" depends=
"SurfaceArea">
31 <subant target=
"" verbose=
"true" inheritall=
"false">
32 <!-- Note: this is an ordered list. The projects have dependencies between them. -->
35 Source/Common/build.xml
36 Source/PcdTools/build.xml
37 Source/GenBuild/build.xml
38 Source/FrameworkTasks/build.xml
39 Source/Cpptasks/build.xml
40 Source/FrameworkWizard/build.xml
41 Source/MigrationTools/build.xml
42 Source/ContextTool/build.xml
45 <echo message=
"The EDK II Java Tools build has completed!"/>
48 <target name=
"Wizard" depends=
"SurfaceArea">
49 <subant target=
"" verbose=
"true" inheritall=
"false">
50 <!-- Note: this is an ordered list. The projects have dependencies between them. -->
53 Source/FrameworkWizard/build.xml
58 <target name=
"SurfaceArea" depends=
"makeCatalog">
59 <subant target=
"" verbose=
"true" inheritall=
"false">
62 Source/SurfaceArea/build.xml
67 <target name=
"makeCatalog">
68 <echo file=
"XMLSchema/catalog.xml">
69 <![CDATA[
<?xml version=
"1.0"?>
70 <!DOCTYPE catalog PUBLIC
"-//OASIS//DTD Entity Resolution XML Catalog V1.0//EN" "http://www.oasis-open.org/committees/entity/release/1.0/catalog.xsd">
71 <catalog xmlns=
"urn:oasis:names:tc:entity:xmlns:xml:catalog">
72 <rewriteSystem systemIdStartString=
"http://www.TianoCore.org/2006/Edk2.0/"
73 rewritePrefix=
"file:/]]>${env.WORKSPACE}<![CDATA[/Tools/XMLSchema/"/>
74 <rewriteURI uriStartString=
"http://www.TianoCore.org/2006/Edk2.0/"
75 rewritePrefix=
"file:/]]>${env.WORKSPACE}<![CDATA[/Tools/XMLSchema/"/>
78 <copy file=
"Conf/tools_def.template" tofile=
"Conf/tools_def.txt" overwrite=
"false"/>
79 <copy file=
"Conf/target.template" tofile=
"Conf/target.txt" overwrite=
"false"/>
82 <available file=
"Conf/FrameworkDatabase.db"/>
85 <copy file=
"Conf/FrameworkDatabase.template" tofile=
"Conf/FrameworkDatabase.db"/>
91 <subant target=
"clean" inheritall=
"false">
94 Source/FrameworkWizard/build.xml
95 Source/Cpptasks/build.xml
96 Source/FrameworkTasks/build.xml
97 Source/GenBuild/build.xml
98 Source/PcdTools/build.xml
99 Source/Common/build.xml
100 Source/SurfaceArea/build.xml
101 Source/TianoTools/build.xml
102 Source/MigrationTools/build.xml
103 Source/ContextTool/build.xml
108 <target name=
"cleanall">
109 <available classname=
"org.tianocore.frameworkwizard.FrameworkWizardUI" property=
"FrameworkWizardUI.available"/>
110 <available classname=
"org.tianocore.build.GenBuildTask" property=
"GenBuildTask.available"/>
111 <available classname=
"org.tianocore.framework.tasks.Tool" property=
"Tool.available"/>
112 <available classname=
"org.tianocore.pcd.action.BuildAction" property=
"PcdClass.available"/>
115 <isset property=
"FrameworkWizardUI.available"/>
116 <isset property=
"GenBuildTask.available"/>
117 <isset property=
"Tool.available"/>
118 <isset property=
"PcdClass.available"/>
121 <fail message=
"Use ant -noclasspath cleanall, to remove all jar files!"/>
124 <subant target=
"cleanall" inheritall=
"true">
127 Source/FrameworkWizard/build.xml
128 Source/Cpptasks/build.xml
129 Source/FrameworkTasks/build.xml
130 Source/GenBuild/build.xml
131 Source/PcdTools/build.xml
132 Source/Common/build.xml
133 Source/SurfaceArea/build.xml
134 Source/TianoTools/build.xml
135 Source/MigrationTools/build.xml
136 Source/ContextTool/build.xml