bbahnsen | 878ddf1 | 2006-04-21 22:54:32 +0000 | [diff] [blame] | 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 | <property environment="env"/>
|
| 15 |
|
| 16 | <target name="JavaCode" depends="SurfaceArea">
|
| 17 | <subant target="" verbose="true" inheritall="false">
|
| 18 | <!-- Note: this is an ordered list. The projects have dependencies between them. -->
|
| 19 | <filelist dir="."
|
| 20 | files="
|
qouyang | b9546cc | 2006-06-20 11:57:17 +0000 | [diff] [blame] | 21 | Source/Common/build.xml
|
bbahnsen | 878ddf1 | 2006-04-21 22:54:32 +0000 | [diff] [blame] | 22 | Source/GenBuild/build.xml
|
| 23 | Source/FrameworkTasks/build.xml
|
| 24 | Source/Cpptasks/build.xml
|
jwang36 | ee80c4d | 2006-06-27 14:34:16 +0000 | [diff] [blame] | 25 | "/>
|
| 26 | <!--
|
bbahnsen | 878ddf1 | 2006-04-21 22:54:32 +0000 | [diff] [blame] | 27 | Source/ModuleEditor/build.xml
|
| 28 | Source/PackageEditor/build.xml
|
jwang36 | ee80c4d | 2006-06-27 14:34:16 +0000 | [diff] [blame] | 29 | -->
|
bbahnsen | 878ddf1 | 2006-04-21 22:54:32 +0000 | [diff] [blame] | 30 | </subant>
|
| 31 | </target>
|
| 32 |
|
| 33 | <target name="all" depends="C_Code"/>
|
| 34 |
|
| 35 | <target name="SurfaceArea" depends="makeCatalog">
|
| 36 | <subant target="" verbose="true" inheritall="false">
|
| 37 | <filelist dir="."
|
| 38 | files="
|
| 39 | Source/SurfaceArea/build.xml
|
| 40 | "/>
|
| 41 | </subant>
|
| 42 | </target>
|
| 43 |
|
| 44 | <target name="C_Code" depends="JavaCode">
|
| 45 | <subant target="" verbose="true" inheritall="false">
|
| 46 | <filelist dir="."
|
| 47 | files="
|
| 48 | Source/TianoTools/build.xml
|
| 49 | "/>
|
| 50 | </subant>
|
| 51 | </target>
|
| 52 |
|
| 53 | <target name="makeCatalog">
|
| 54 | <echo file="XMLSchema/catalog.xml">
|
| 55 | <![CDATA[<?xml version="1.0"?>
|
| 56 | <!DOCTYPE catalog PUBLIC "-//OASIS//DTD Entity Resolution XML Catalog V1.0//EN" "http://www.oasis-open.org/committees/entity/release/1.0/catalog.xsd">
|
| 57 | <catalog xmlns="urn:oasis:names:tc:entity:xmlns:xml:catalog">
|
| 58 | <rewriteSystem systemIdStartString="http://www.TianoCore.org/2006/Edk2.0/"
|
| 59 | rewritePrefix="file:/]]>${env.WORKSPACE}<![CDATA[/Tools/XMLSchema/"/>
|
| 60 | <rewriteURI uriStartString="http://www.TianoCore.org/2006/Edk2.0/"
|
| 61 | rewritePrefix="file:/]]>${env.WORKSPACE}<![CDATA[/Tools/XMLSchema/"/>
|
| 62 | </catalog>]]>
|
| 63 | </echo>
|
lhauch | 113ecc3 | 2006-06-02 17:28:28 +0000 | [diff] [blame] | 64 | <copy file="Conf/tools_def.template" tofile="Conf/tools_def.txt" overwrite="false"/>
|
bbahnsen | 878ddf1 | 2006-04-21 22:54:32 +0000 | [diff] [blame] | 65 | </target>
|
| 66 | <target name="clean">
|
| 67 | <subant target="clean" inheritall="false">
|
| 68 | <filelist dir="."
|
| 69 | files="
|
| 70 | Source/TianoTools/build.xml
|
| 71 | Source/ModuleEditor/build.xml
|
| 72 | Source/PackageEditor/build.xml
|
| 73 | Source/FrameworkTasks/build.xml
|
| 74 | Source/GenBuild/build.xml
|
| 75 | Source/SurfaceArea/build.xml
|
| 76 | Source/Cpptasks/build.xml
|
| 77 | "/>
|
| 78 | </subant>
|
| 79 | </target>
|
| 80 | <target name="cleanall">
|
| 81 | <subant target="cleanall" verbose="true" inheritall="false">
|
| 82 | <filelist dir="."
|
| 83 | files="
|
| 84 | Source/TianoTools/build.xml
|
| 85 | Source/ModuleEditor/build.xml
|
| 86 | Source/PackageEditor/build.xml
|
| 87 | Source/FrameworkTasks/build.xml
|
| 88 | Source/GenBuild/build.xml
|
| 89 | Source/SurfaceArea/build.xml
|
| 90 | Source/Cpptasks/build.xml
|
| 91 | "/>
|
| 92 | </subant>
|
| 93 | </target>
|
| 94 | </project>
|