]> git.proxmox.com Git - mirror_edk2.git/blob - Tools/Source/TianoTools/Common/build.xml
Fixed an issue which will cause dependency check failure
[mirror_edk2.git] / Tools / Source / TianoTools / Common / 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 default="CommonTools.lib" basedir=".">
13 <!--
14 EDK Common Tools Library
15 Copyright (c) 2006, Intel Corporation
16 -->
17
18 <taskdef resource="cpptasks.tasks"/>
19 <typedef resource="cpptasks.types"/>
20 <taskdef resource="net/sf/antcontrib/antlib.xml"/>
21
22 <property name="tmp" value="tmp"/>
23 <property name="LibName" value="CommonTool"/>
24
25 <property name="LINK_OUTPUT_TYPE" value="static"/>
26 <property name="BUILD_DIR" value="${PACKAGE_DIR}/Common/tmp"/>
27
28 <target name="CommonTools.lib" depends="init, ToolsLibrary">
29 <echo message="The EDK Tool Library: ${LibName} build has completed."/>
30 </target>
31
32 <target name="init">
33 <echo message="Building the EDK Tool Library: ${LibName}"/>
34 <mkdir dir="${BUILD_DIR}"/>
35 </target>
36
37 <target name="ToolsLibrary" depends="init">
38 <cc name="${ToolChain}" objdir="${BUILD_DIR}"
39 outfile="${LIB_DIR}/CommonTools"
40 outtype="static"
41 optimize="speed">
42 <compilerarg value="${ExtraArgus}" if="ExtraArgus" />
43 <compilerarg value="-fPIC" if="x86_64_linux"/>
44
45 <includepath path="${PACKAGE_DIR}/Include"/>
46 <includepath path="${PACKAGE_DIR}/Include/${HostArch}"/>
47
48 <fileset dir="${basedir}/Common"
49 includes="*.c" />
50 </cc>
51 </target>
52
53 <target name="clean">
54 <echo message="Removing Intermediate Files Only from ${BUILD_DIR}"/>
55 <delete dir="${BUILD_DIR}"/>
56 </target>
57
58 <target name="cleanall">
59 <echo message="Removing Object Files and the Library: ${LibName}${ext_static}"/>
60 <delete failonerror="false" quiet="true" includeEmptyDirs="true">
61 <fileset dir="${BUILD_DIR}"/>
62 <fileset file="${LIB_DIR}/${LibName}${ext_static}"/>
63 </delete>
64 </target>
65
66 </project>