blob: e7f10311c44d3a36b99c0d4f613848a106874c48 [file] [log] [blame]
bbahnsen878ddf12006-04-21 22:54:32 +00001<?xml version="1.0"?>
2<!--
3Copyright (c) 2006, Intel Corporation
4All rights reserved. This program and the accompanying materials
5are licensed and made available under the terms and conditions of the BSD License
6which accompanies this distribution. The full text of the license may be found at
7http://opensource.org/licenses/bsd-license.php
8
9THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
10WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
11-->
12<project name="Tools" default="all" basedir=".">
13
jwang363c8842b2006-07-31 08:17:22 +000014 <taskdef resource="net/sf/antcontrib/antlib.xml"/>
bbahnsen878ddf12006-04-21 22:54:32 +000015 <property environment="env"/>
16
lhauchc80da0c2006-08-01 23:54:00 +000017 <target name="all" depends="C_Code">
18 <echo message="The EDK II Tools build has completed!"/>
19 </target>
lhaucha7828762006-07-09 14:14:00 +000020
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
bbahnsen878ddf12006-04-21 22:54:32 +000030 <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="
qouyangb9546cc2006-06-20 11:57:17 +000035 Source/Common/build.xml
klu2d14ebb42006-07-31 18:55:26 +000036 Source/PcdTools/build.xml
bbahnsen878ddf12006-04-21 22:54:32 +000037 Source/GenBuild/build.xml
38 Source/FrameworkTasks/build.xml
39 Source/Cpptasks/build.xml
yshi82a8198d2006-07-05 09:20:45 +000040 Source/FrameworkWizard/build.xml
alfreda959dac2006-08-10 09:31:10 +000041 Source/MigrationTools/build.xml
jjin9c74c7a42006-09-01 09:21:38 +000042 Source/ContextTool/build.xml
lhauchee2db092006-09-25 23:31:31 +000043 Source/Merge/build.xml
jwang36ee80c4d2006-06-27 14:34:16 +000044 "/>
bbahnsen878ddf12006-04-21 22:54:32 +000045 </subant>
lhauchc80da0c2006-08-01 23:54:00 +000046 <echo message="The EDK II Java Tools build has completed!"/>
47 </target>
48
49 <target name="Wizard" depends="SurfaceArea">
50 <subant target="" verbose="true" inheritall="false">
51 <!-- Note: this is an ordered list. The projects have dependencies between them. -->
52 <filelist dir="."
53 files="
54 Source/FrameworkWizard/build.xml
55 "/>
56 </subant>
bbahnsen878ddf12006-04-21 22:54:32 +000057 </target>
58
lhauchee2db092006-09-25 23:31:31 +000059 <target name="Merge" depends="SurfaceArea">
60 <subant target="" verbose="true" inheritall="false">
61 <filelist dir="."
62 files="
63 Source/Merge/build.xml
64 "/>
65 </subant>
66 </target>
67
bbahnsen878ddf12006-04-21 22:54:32 +000068 <target name="SurfaceArea" depends="makeCatalog">
69 <subant target="" verbose="true" inheritall="false">
70 <filelist dir="."
71 files="
72 Source/SurfaceArea/build.xml
73 "/>
74 </subant>
75 </target>
76
bbahnsen878ddf12006-04-21 22:54:32 +000077 <target name="makeCatalog">
78 <echo file="XMLSchema/catalog.xml">
79 <![CDATA[<?xml version="1.0"?>
80<!DOCTYPE catalog PUBLIC "-//OASIS//DTD Entity Resolution XML Catalog V1.0//EN" "http://www.oasis-open.org/committees/entity/release/1.0/catalog.xsd">
81<catalog xmlns="urn:oasis:names:tc:entity:xmlns:xml:catalog">
82 <rewriteSystem systemIdStartString="http://www.TianoCore.org/2006/Edk2.0/"
83 rewritePrefix="file:/]]>${env.WORKSPACE}<![CDATA[/Tools/XMLSchema/"/>
84 <rewriteURI uriStartString="http://www.TianoCore.org/2006/Edk2.0/"
85 rewritePrefix="file:/]]>${env.WORKSPACE}<![CDATA[/Tools/XMLSchema/"/>
86</catalog>]]>
87 </echo>
jwang36e5890ee2006-09-18 10:36:58 +000088 <if>
89 <not>
90 <available file="Conf/tools_def.txt"/>
91 </not>
92 <then>
93 <copy file="Conf/tools_def.template" tofile="Conf/tools_def.txt"/>
94 </then>
95 </if>
96
97 <if>
98 <not>
99 <available file="Conf/target.txt"/>
100 </not>
101 <then>
102 <copy file="Conf/target.template" tofile="Conf/target.txt"/>
103 </then>
104 </if>
105
jwang363c8842b2006-07-31 08:17:22 +0000106 <if>
107 <not>
108 <available file="Conf/FrameworkDatabase.db"/>
109 </not>
110 <then>
111 <copy file="Conf/FrameworkDatabase.template" tofile="Conf/FrameworkDatabase.db"/>
112 </then>
113 </if>
bbahnsen878ddf12006-04-21 22:54:32 +0000114 </target>
yshi82a8198d2006-07-05 09:20:45 +0000115
bbahnsen878ddf12006-04-21 22:54:32 +0000116 <target name="clean">
117 <subant target="clean" inheritall="false">
118 <filelist dir="."
119 files="
lhauch7f762c22006-08-07 20:01:52 +0000120 Source/FrameworkWizard/build.xml
121 Source/Cpptasks/build.xml
122 Source/FrameworkTasks/build.xml
123 Source/GenBuild/build.xml
124 Source/PcdTools/build.xml
125 Source/Common/build.xml
126 Source/SurfaceArea/build.xml
bbahnsen878ddf12006-04-21 22:54:32 +0000127 Source/TianoTools/build.xml
alfreda959dac2006-08-10 09:31:10 +0000128 Source/MigrationTools/build.xml
jjin9c74c7a42006-09-01 09:21:38 +0000129 Source/ContextTool/build.xml
lhauchee2db092006-09-25 23:31:31 +0000130 Source/Merge/build.xml
lhauch7f762c22006-08-07 20:01:52 +0000131 "/>
bbahnsen878ddf12006-04-21 22:54:32 +0000132 </subant>
133 </target>
yshi82a8198d2006-07-05 09:20:45 +0000134
bbahnsen878ddf12006-04-21 22:54:32 +0000135 <target name="cleanall">
lhauch8a072902006-08-07 20:55:28 +0000136 <available classname="org.tianocore.frameworkwizard.FrameworkWizardUI" property="FrameworkWizardUI.available"/>
137 <available classname="org.tianocore.build.GenBuildTask" property="GenBuildTask.available"/>
138 <available classname="org.tianocore.framework.tasks.Tool" property="Tool.available"/>
139 <available classname="org.tianocore.pcd.action.BuildAction" property="PcdClass.available"/>
140 <if>
141 <or>
142 <isset property="FrameworkWizardUI.available"/>
143 <isset property="GenBuildTask.available"/>
144 <isset property="Tool.available"/>
145 <isset property="PcdClass.available"/>
146 </or>
147 <then>
148 <fail message="Use ant -noclasspath cleanall, to remove all jar files!"/>
149 </then>
150 </if>
lhauch7f762c22006-08-07 20:01:52 +0000151 <subant target="cleanall" inheritall="true">
bbahnsen878ddf12006-04-21 22:54:32 +0000152 <filelist dir="."
153 files="
lhauch7f762c22006-08-07 20:01:52 +0000154 Source/FrameworkWizard/build.xml
155 Source/Cpptasks/build.xml
156 Source/FrameworkTasks/build.xml
157 Source/GenBuild/build.xml
158 Source/PcdTools/build.xml
159 Source/Common/build.xml
160 Source/SurfaceArea/build.xml
bbahnsen878ddf12006-04-21 22:54:32 +0000161 Source/TianoTools/build.xml
alfreda959dac2006-08-10 09:31:10 +0000162 Source/MigrationTools/build.xml
jjin9c74c7a42006-09-01 09:21:38 +0000163 Source/ContextTool/build.xml
lhauchee2db092006-09-25 23:31:31 +0000164 Source/Merge/build.xml
lhauch7f762c22006-08-07 20:01:52 +0000165 "/>
bbahnsen878ddf12006-04-21 22:54:32 +0000166 </subant>
167 </target>
168</project>