]> git.proxmox.com Git - mirror_edk2.git/blob - Tools/Source/TianoTools/GenTEImage/build.xml
A couple of cleanups in the TianoTools 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="Building the EDK Tool: ${ToolName}"/>
30 </target>
31
32 <target name="init">
33 <echo message="The EDK Tool: ${ToolName}"/>
34 <mkdir dir="${BUILD_DIR}"/>
35 <if>
36 <equals arg1="${GCC}" arg2="cygwin"/>
37 <then>
38 <echo message="Cygwin Family"/>
39 <property name="ToolChain" value="gcc"/>
40 </then>
41 <elseif>
42 <os family="dos"/>
43 <then>
44 <echo message="Windows Family"/>
45 <property name="ToolChain" value="msvc"/>
46 </then>
47 </elseif>
48 <elseif>
49 <os family="unix"/>
50 <then>
51 <echo message="UNIX Family"/>
52 <property name="ToolChain" value="gcc"/>
53 </then>
54 </elseif>
55
56 <else>
57 <echo>
58 Unsupported Operating System
59 Please Contact Intel Corporation
60 </echo>
61 </else>
62 </if>
63 <if>
64 <equals arg1="${ToolChain}" arg2="msvc"/>
65 <then>
66 <property name="ext_static" value=".lib"/>
67 <property name="ext_dynamic" value=".dll"/>
68 <property name="ext_exe" value=".exe"/>
69 </then>
70 <elseif>
71 <equals arg1="${ToolChain}" arg2="gcc"/>
72 <then>
73 <property name="ext_static" value=".a"/>
74 <property name="ext_dynamic" value=".so"/>
75 <property name="ext_exe" value=""/>
76 </then>
77 </elseif>
78 </if>
79 </target>
80
81 <target name="Tool" depends="init">
82 <cc name="${ToolChain}" objdir="${BUILD_DIR}"
83 outfile="${BIN_DIR}/${ToolName}"
84 outtype="executable"
85 libtool="${haveLibtool}"
86 optimize="speed">
87
88 <fileset dir="${basedir}/${ToolName}"
89 includes="${FileSet}"
90 defaultexcludes="TRUE"
91 excludes="*.xml *.inf"/>
92
93 <includepath path="${PACKAGE_DIR}/Include"/>
94 <includepath path="${PACKAGE_DIR}/Include/${HostArch}"/>
95 <includepath path="${PACKAGE_DIR}/Common"/>
96 <libset dir="${LIB_DIR}" libs="CommonTools"/>
97 </cc>
98 </target>
99
100 <target name="clean" depends="init">
101 <echo message="Removing Intermediate Files Only"/>
102 <delete>
103 <fileset dir="${BUILD_DIR}" includes="*.obj"/>
104 </delete>
105 </target>
106
107 <target name="cleanall" depends="init">
108 <echo message="Removing Object Files and the Executable: ${ToolName}${ext_exe}"/>
109 <delete dir="${BUILD_DIR}">
110 <fileset dir="${BIN_DIR}" includes="${ToolName}${ext_exe}"/>
111 </delete>
112 </target>
113
114 </project>