]>
git.proxmox.com Git - mirror_edk2.git/blob - Tools/build.xml
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 CCode/Source/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 Java/Source/Common/build.xml
36 Java/Source/PcdTools/build.xml
37 Java/Source/GenBuild/build.xml
38 Java/Source/FrameworkTasks/build.xml
39 Java/Source/Cpptasks/build.xml
40 Java/Source/FrameworkWizard/build.xml
41 Java/Source/MigrationTools/build.xml
42 Java/Source/ContextTool/build.xml
43 Java/Source/Merge/build.xml
44 Java/Source/CheckTools/build.xml
45 Java/Source/DbTools/build.xml
48 <echo message =
"The EDK II Java Tools build has completed!" />
51 <target name =
"Wizard" depends =
"SurfaceArea" >
52 <subant target =
"" verbose =
"true" inheritall =
"false" >
53 <!-- Note: this is an ordered list. The projects have dependencies between them. -->
56 Java/Source/FrameworkWizard/build.xml
61 <target name =
"Merge" depends =
"SurfaceArea" >
62 <subant target =
"" verbose =
"true" inheritall =
"false" >
65 Java/Source/Merge/build.xml
70 <target name =
"SurfaceArea" depends =
"makeCatalog" >
71 <subant target =
"" verbose =
"true" inheritall =
"false" >
74 Java/Source/SurfaceArea/build.xml
79 <target name =
"makeCatalog" >
82 <available file =
"XMLSchema/catalog.xml" />
85 <echo file =
"XMLSchema/catalog.xml" > <![CDATA[
<?xml version =
"1.0" ?>
86 <!DOCTYPE catalog PUBLIC
"-//OASIS//DTD Entity Resolution XML Catalog V1.0//EN" "http://www.oasis-open.org/committees/entity/release/1.0/catalog.xsd" >
87 <catalog xmlns =
"urn:oasis:names:tc:entity:xmlns:xml:catalog" >
88 <rewriteSystem systemIdStartString =
"http://www.TianoCore.org/2006/Edk2.0/"
89 rewritePrefix =
"file:/]]>${env.WORKSPACE}<![CDATA[/Tools/XMLSchema/" />
90 <rewriteURI uriStartString =
"http://www.TianoCore.org/2006/Edk2.0/"
91 rewritePrefix =
"file:/]]>${env.WORKSPACE}<![CDATA[/Tools/XMLSchema/" />
98 <available file =
"Conf/tools_def.txt" />
101 <copy file =
"Conf/tools_def.template" tofile =
"Conf/tools_def.txt" />
107 <available file =
"Conf/target.txt" />
110 <copy file =
"Conf/target.template" tofile =
"Conf/target.txt" />
116 <available file =
"Conf/FrameworkDatabase.db" />
119 <copy file =
"Conf/FrameworkDatabase.template" tofile =
"Conf/FrameworkDatabase.db" />
124 <target name =
"reconfig" >
125 <!-- backup all config files -->
127 <available file =
"Conf/target.txt" />
129 <echo message =
"Backup Conf/target.txt to Conf/target.txt.bak" />
130 <copy file =
"Conf/target.txt" tofile =
"Conf/target.txt.bak" overwrite =
"true" />
134 <available file =
"Conf/tools_def.txt" />
136 <echo message =
"Backup Conf/tools_def.txt to Conf/tools_def.txt.bak" />
137 <copy file =
"Conf/tools_def.txt" tofile =
"Conf/tools_def.txt.bak" overwrite =
"true" />
141 <available file =
"Conf/FrameworkDatabase.db" />
143 <echo message =
"Backup Conf/FrameworkDatabase.db to Conf/FrameworkDatabase.db.bak" />
144 <copy file =
"Conf/FrameworkDatabase.db" tofile =
"Conf/FrameworkDatabase.db.bak" overwrite =
"true" />
149 <available file =
"Conf/tools_def.template" />
151 <echo message =
"Copy file from Conf/tools_def.template to Conf/tools_def.txt" />
152 <copy file =
"Conf/tools_def.template" tofile =
"Conf/tools_def.txt" overwrite =
"true" />
157 <available file =
"Conf/target.template" />
159 <echo message =
"Copy file from Conf/target.template to Conf/target.txt" />
160 <copy file =
"Conf/target.template" tofile =
"Conf/target.txt" overwrite =
"true" />
165 <available file =
"Conf/FrameworkDatabase.template" />
167 <echo message =
"Copy file from Conf/FrameworkDatabase.template to Conf/FrameworkDatabase.db" />
168 <copy file =
"Conf/FrameworkDatabase.template" tofile =
"Conf/FrameworkDatabase.db" overwrite =
"true" />
173 <target name =
"clean" >
174 <subant target =
"clean" inheritall =
"false" >
177 Java/Source/FrameworkWizard/build.xml
178 Java/Source/Cpptasks/build.xml
179 Java/Source/FrameworkTasks/build.xml
180 Java/Source/GenBuild/build.xml
181 Java/Source/PcdTools/build.xml
182 Java/Source/Common/build.xml
183 Java/Source/SurfaceArea/build.xml
184 Java/Source/MigrationTools/build.xml
185 Java/Source/ContextTool/build.xml
186 Java/Source/Merge/build.xml
187 Java/Source/CheckTools/build.xml
188 Java/Source/DbTools/build.xml
189 CCode/Source/build.xml
194 <target name =
"cleanall" >
195 <echo message =
"Removing extra ${env.WORKSPACE} history.xml files!" />
197 <available file =
"${env.WORKSPACE}/Tools/bin/history.xml" />
199 <delete failonerror =
"false" quiet =
"true" >
200 <fileset file =
"${env.WORKSPACE}/Tools/bin/history.xml" />
205 <available file =
"${env.WORKSPACE}/Tools/CCode/Source/Library/history.xml" />
207 <delete failonerror =
"false" quiet =
"true" >
208 <fileset file =
"${env.WORKSPACE}/Tools/CCode/Source/Library/history.xml" />
212 <available classname =
"org.tianocore.frameworkwizard.FrameworkWizardUI" property =
"FrameworkWizardUI.available" />
213 <available classname =
"org.tianocore.build.GenBuildTask" property =
"GenBuildTask.available" />
214 <available classname =
"org.tianocore.framework.tasks.Tool" property =
"Tool.available" />
215 <available classname =
"org.tianocore.pcd.action.BuildAction" property =
"PcdClass.available" />
218 <isset property =
"FrameworkWizardUI.available" />
219 <isset property =
"GenBuildTask.available" />
220 <isset property =
"Tool.available" />
221 <isset property =
"PcdClass.available" />
224 <fail message =
"Use ant -noclasspath cleanall, to remove all jar files!" />
227 <subant target =
"cleanall" inheritall =
"true" >
230 Java/Source/FrameworkWizard/build.xml
231 Java/Source/Cpptasks/build.xml
232 Java/Source/FrameworkTasks/build.xml
233 Java/Source/GenBuild/build.xml
234 Java/Source/PcdTools/build.xml
235 Java/Source/Common/build.xml
236 Java/Source/SurfaceArea/build.xml
237 Java/Source/MigrationTools/build.xml
238 Java/Source/ContextTool/build.xml
239 Java/Source/Merge/build.xml
240 Java/Source/CheckTools/build.xml
241 Java/Source/DbTools/build.xml
242 CCode/Source/build.xml