]> git.proxmox.com Git - mirror_edk2.git/blob - Tools/Source/TianoTools/GenTEImage/build.xml
Remove warning message in MAC GCC tool build
[mirror_edk2.git] / Tools / Source / TianoTools / GenTEImage / 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="GenTool" basedir=".">
13 <!--
14 EDK GenTEImage Tool
15 Copyright (c) 2006, Intel Corporation
16 -->
17 <property name="ToolName" value="GenTEImage"/>
18 <property name="FileSet" value="*.c"/>
19
20 <taskdef resource="cpptasks.tasks"/>
21 <typedef resource="cpptasks.types"/>
22 <taskdef resource="net/sf/antcontrib/antlib.xml"/>
23
24
25 <property name="LINK_OUTPUT_TYPE" value="static"/>
26 <property name="BUILD_DIR" value="${PACKAGE_DIR}/${ToolName}/tmp"/>
27
28 <target name="GenTool" depends="init, Tool">
29 <echo message="The EDK Tool: ${ToolName} build has completed!"/>
30 </target>
31
32 <target name="init">
33 <echo message="Building the EDK Tool: ${ToolName}"/>
34 <mkdir dir="${BUILD_DIR}"/>
35 </target>
36
37 <target name="Tool" depends="init">
38 <cc name="${ToolChain}" objdir="${BUILD_DIR}"
39 outfile="${BIN_DIR}/${ToolName}"
40 outtype="executable"
41 optimize="speed">
42 <compilerarg value="${ExtraArgus}" />
43
44 <fileset dir="${basedir}/${ToolName}"
45 includes="${FileSet}"
46 defaultexcludes="TRUE"
47 excludes="*.xml *.inf"/>
48
49 <includepath path="${PACKAGE_DIR}/Include"/>
50 <includepath path="${PACKAGE_DIR}/Include/${HostArch}"/>
51 <includepath path="${PACKAGE_DIR}/Common"/>
52 <libset dir="${LIB_DIR}" libs="CommonTools"/>
53 </cc>
54 </target>
55
56 <target name="clean">
57 <echo message="Removing Intermediate Files Only"/>
58 <delete>
59 <fileset dir="${BUILD_DIR}" includes="*.obj"/>
60 </delete>
61 </target>
62
63 <target name="cleanall">
64 <echo message="Removing Object Files and the Executable: ${ToolName}${ext_exe}"/>
65 <delete failonerror="false" quiet="true" includeEmptyDirs="true">
66 <fileset dir="${BUILD_DIR}"/>
67 <fileset file="${BIN_DIR}/${ToolName}${ext_exe}"/>
68 </delete>
69 </target>
70
71 </project>