]> git.proxmox.com Git - mirror_edk2.git/blob - Tools/Source/TianoTools/build.xml
1. Removed the unnecessary #include statements and include files
[mirror_edk2.git] / Tools / Source / TianoTools / build.xml
1 <?xml version="1.0" encoding="utf-8" ?>
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 default="all" basedir=".">
13 <!-- Copyright (c) 2006, Intel Corporation -->
14 <!-- Filename: Tools/Source/build.xml -->
15
16 <taskdef resource="net/sf/antcontrib/antlib.xml"/>
17 <property environment="env" />
18 <property name="WORKSPACE" value="${env.WORKSPACE}" />
19 <property name="WORKSPACE_DIR" value="${WORKSPACE}" />
20 <property name="PACKAGE" value="Tools" />
21 <property name="PACKAGE_DIR" value="${WORKSPACE}/Tools/Source/TianoTools" />
22 <property name="LIB_DIR" value="${PACKAGE_DIR}/Library" />
23 <property name="BIN_DIR" value="${WORKSPACE}/Tools/bin" />
24 <property name="BUILD_MODE" value="PACKAGE" />
25 <property name="Libs"
26 value="String/build.xml Common/build.xml CustomizedCompress/build.xml PeCoffLoader/build.xml"/>
27
28 <import file="${WORKSPACE_DIR}/Tools/Conf/BuildMacro.xml" />
29
30 <path id="classpath">
31 <fileset dir="${WORKSPACE}/Tools/Jars" includes="*.jar"/>
32 <fileset dir="${env.XMLBEANS_HOME}/lib" includes="*.jar"/>
33 </path>
34
35 <target name="all" depends="init, Tools" />
36
37 <target name="init">
38 <taskdef classpathref="classpath" resource="GenBuild.tasks" />
39 <taskdef classpathref="classpath" resource="net/sf/antcontrib/antlib.xml" />
40
41 <taskdef classpathref="classpath" resource="cpptasks.tasks"/>
42 <typedef classpathref="classpath" resource="cpptasks.types"/>
43
44 <mkdir dir="${BIN_DIR}" />
45 <mkdir dir="${LIB_DIR}" />
46 <if>
47 <os family="unix" />
48 <then>
49 <echo message="OS Family UNIX" />
50 </then>
51 <elseif>
52 <os family="dos" />
53 <then>
54 <echo message="OS Family DOS" />
55 </then>
56 </elseif>
57 <elseif>
58 <os family="mac" />
59 <then>
60 <echo message="OS Family OS X" />
61 </then>
62 </elseif>
63 <else>
64 <echo message="OS Family Unsupported" />
65 </else>
66 </if>
67
68 <if>
69 <isset property="env.TOOL_CHAIN" />
70 <then>
71 <property name="ToolChain" value="${env.TOOL_CHAIN}"/>
72 <condition property="gcc">
73 <equals arg1="${ToolChain}" arg2="gcc"/>
74 </condition>
75 </then>
76 </if>
77
78 <condition property="linux" value="true">
79 <os name="Linux"/>
80 </condition>
81
82 <condition property="windows" value="true">
83 <os family="Windows"/>
84 </condition>
85
86 <condition property="OSX" value="true">
87 <os family="Mac"/>
88 </condition>
89
90 </target>
91
92 <target name="Libraries">
93 <subant target="" inheritall="true">
94 <fileset dir="${PACKAGE_DIR}"
95 includes="${Libs}"/>
96 </subant>
97 </target>
98
99 <target name="Tools" depends="Libraries">
100 <subant target="" inheritall="true">
101 <fileset dir="${PACKAGE_DIR}" includes="*/build.xml"
102 excludes="${Libs}"/>
103 </subant>
104 </target>
105
106 <target name="clean">
107 <subant target="clean" inheritall="true">
108 <fileset dir="${PACKAGE_DIR}" includes="*/build.xml"/>
109 </subant>
110 </target>
111
112 <target name="cleanall">
113 <subant target="cleanall" inheritall="true">
114 <fileset dir="${PACKAGE_DIR}" includes="*/build.xml"/>
115 </subant>
116 <delete dir="${LIB_DIR}"/>
117 </target>
118 </project>