summaryrefslogtreecommitdiff
path: root/Tools/build.xml
blob: ea6a2501d3b341b3485e4764895b3af8bf9a2eb1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
<?xml version="1.0"?>
<!--
Copyright (c) 2006, Intel Corporation
All rights reserved. This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License
which accompanies this distribution.  The full text of the license may be found at
http://opensource.org/licenses/bsd-license.php

THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
-->
<project name="Tools" default="all" basedir=".">

  <taskdef resource="net/sf/antcontrib/antlib.xml"/>
  <property environment="env"/>

  <target name="all" depends="C_Code">
    <echo message="The EDK II Tools build has completed!"/>
  </target>

  <target name="C_Code" depends="JavaCode">
    <subant target="" inheritall="false">
      <filelist dir="."
        files="
          Source/TianoTools/build.xml
          "/>
    </subant>
  </target>

  <target name="JavaCode" depends="SurfaceArea">
    <subant target="" verbose="true" inheritall="false">
      <!-- Note: this is an ordered list. The projects have dependencies between them. -->
      <filelist dir="."
        files="
          Source/Common/build.xml
          Source/PcdTools/build.xml
          Source/GenBuild/build.xml
          Source/FrameworkTasks/build.xml
          Source/Cpptasks/build.xml
          Source/FrameworkWizard/build.xml
          Source/MigrationTools/build.xml
          Source/ContextTool/build.xml
          "/>
    </subant>
    <echo message="The EDK II Java Tools build has completed!"/>
  </target>

  <target name="Wizard" depends="SurfaceArea">
    <subant target="" verbose="true" inheritall="false">
      <!-- Note: this is an ordered list. The projects have dependencies between them. -->
      <filelist dir="."
        files="
          Source/FrameworkWizard/build.xml
          "/>
    </subant>
  </target>

  <target name="SurfaceArea" depends="makeCatalog">
    <subant target="" verbose="true" inheritall="false">
      <filelist dir="."
        files="
          Source/SurfaceArea/build.xml
          "/>
    </subant>
  </target>

  <target name="makeCatalog">
    <echo file="XMLSchema/catalog.xml">
      <![CDATA[<?xml version="1.0"?>
<!DOCTYPE catalog PUBLIC "-//OASIS//DTD Entity Resolution XML Catalog V1.0//EN" "http://www.oasis-open.org/committees/entity/release/1.0/catalog.xsd">
<catalog xmlns="urn:oasis:names:tc:entity:xmlns:xml:catalog">
  <rewriteSystem systemIdStartString="http://www.TianoCore.org/2006/Edk2.0/"
    rewritePrefix="file:/]]>${env.WORKSPACE}<![CDATA[/Tools/XMLSchema/"/>
  <rewriteURI uriStartString="http://www.TianoCore.org/2006/Edk2.0/"
    rewritePrefix="file:/]]>${env.WORKSPACE}<![CDATA[/Tools/XMLSchema/"/>
</catalog>]]>
    </echo>
    <if>
      <not>
        <available file="Conf/tools_def.txt"/>
      </not>
      <then>
        <copy file="Conf/tools_def.template" tofile="Conf/tools_def.txt"/>
      </then>
    </if>

    <if>
      <not>
        <available file="Conf/target.txt"/>
      </not>
      <then>
        <copy file="Conf/target.template" tofile="Conf/target.txt"/>
      </then>
    </if>

    <if>
      <not>
        <available file="Conf/FrameworkDatabase.db"/>
      </not>
      <then>
        <copy file="Conf/FrameworkDatabase.template" tofile="Conf/FrameworkDatabase.db"/>
      </then>
    </if>
  </target>

  <target name="clean">
    <subant target="clean" inheritall="false">
      <filelist dir="."
        files="
          Source/FrameworkWizard/build.xml 
          Source/Cpptasks/build.xml 
          Source/FrameworkTasks/build.xml 
          Source/GenBuild/build.xml 
          Source/PcdTools/build.xml 
          Source/Common/build.xml 
          Source/SurfaceArea/build.xml 
          Source/TianoTools/build.xml
          Source/MigrationTools/build.xml
          Source/ContextTool/build.xml
        "/>
    </subant>
  </target>

  <target name="cleanall">
    <available classname="org.tianocore.frameworkwizard.FrameworkWizardUI" property="FrameworkWizardUI.available"/>
    <available classname="org.tianocore.build.GenBuildTask" property="GenBuildTask.available"/>
    <available classname="org.tianocore.framework.tasks.Tool" property="Tool.available"/>
    <available classname="org.tianocore.pcd.action.BuildAction" property="PcdClass.available"/>
    <if>
      <or>
        <isset property="FrameworkWizardUI.available"/>
        <isset property="GenBuildTask.available"/>
        <isset property="Tool.available"/>
        <isset property="PcdClass.available"/>
      </or>
      <then>
        <fail message="Use ant -noclasspath cleanall, to remove all jar files!"/>
      </then>
    </if>
    <subant target="cleanall" inheritall="true">
      <filelist dir="."
        files="
          Source/FrameworkWizard/build.xml 
          Source/Cpptasks/build.xml 
          Source/FrameworkTasks/build.xml 
          Source/GenBuild/build.xml 
          Source/PcdTools/build.xml 
          Source/Common/build.xml 
          Source/SurfaceArea/build.xml 
          Source/TianoTools/build.xml
          Source/MigrationTools/build.xml
          Source/ContextTool/build.xml
        "/>
    </subant>
  </target>
</project>