]> git.proxmox.com Git - mirror_edk2.git/blob - Tools/build.xml
06cc9211d7ce516afec7e37432ee275ffe82d87a
[mirror_edk2.git] / Tools / build.xml
1 <?xml version="1.0"?>
2 <!--
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
8
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.
11 -->
12 <project name="Tools" default="all" basedir=".">
13
14 <taskdef resource="net/sf/antcontrib/antlib.xml"/>
15 <property environment="env"/>
16
17 <target name="all" depends="C_Code">
18 <echo message="The EDK II Tools build has completed!"/>
19 </target>
20
21 <target name="C_Code" depends="JavaCode">
22 <subant target="" inheritall="false">
23 <filelist dir="."
24 files="
25 Source/TianoTools/build.xml
26 "/>
27 </subant>
28 </target>
29
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. -->
33 <filelist dir="."
34 files="
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
43 "/>
44 </subant>
45 <echo message="The EDK II Java Tools build has completed!"/>
46 </target>
47
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. -->
51 <filelist dir="."
52 files="
53 Source/FrameworkWizard/build.xml
54 "/>
55 </subant>
56 </target>
57
58 <target name="SurfaceArea" depends="makeCatalog">
59 <subant target="" verbose="true" inheritall="false">
60 <filelist dir="."
61 files="
62 Source/SurfaceArea/build.xml
63 "/>
64 </subant>
65 </target>
66
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/"/>
76 </catalog>]]>
77 </echo>
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"/>
80 <if>
81 <not>
82 <available file="Conf/FrameworkDatabase.db"/>
83 </not>
84 <then>
85 <copy file="Conf/FrameworkDatabase.template" tofile="Conf/FrameworkDatabase.db"/>
86 </then>
87 </if>
88 </target>
89
90 <target name="clean">
91 <subant target="clean" inheritall="false">
92 <filelist dir="."
93 files="
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
104 "/>
105 </subant>
106 </target>
107
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"/>
113 <if>
114 <or>
115 <isset property="FrameworkWizardUI.available"/>
116 <isset property="GenBuildTask.available"/>
117 <isset property="Tool.available"/>
118 <isset property="PcdClass.available"/>
119 </or>
120 <then>
121 <fail message="Use ant -noclasspath cleanall, to remove all jar files!"/>
122 </then>
123 </if>
124 <subant target="cleanall" inheritall="true">
125 <filelist dir="."
126 files="
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
137 "/>
138 </subant>
139 </target>
140 </project>