]> git.proxmox.com Git - mirror_edk2.git/blob - Tools/Source/TianoTools/GenFvImage/build.xml
Remove the dependence to MdePkg
[mirror_edk2.git] / Tools / Source / TianoTools / GenFvImage / 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 GenFvImage Tool
15 Copyright (c) 2006, Intel Corporation
16 -->
17 <property name="ToolName" value="GenFvImage"/>
18 <property name="FileSet" value="GenFvImageLib.c GenFvImageExe.c"/>
19
20 <taskdef resource="cpptasks.tasks"/>
21 <typedef resource="cpptasks.types"/>
22 <taskdef resource="net/sf/antcontrib/antlib.xml"/>
23
24 <property environment="env"/>
25
26 <property name="LINK_OUTPUT_TYPE" value="static"/>
27 <property name="BUILD_DIR" value="${PACKAGE_DIR}/${ToolName}/tmp"/>
28
29 <target name="GenTool" depends="init, Tool">
30 <echo message="Building the EDK Tool: ${ToolName}"/>
31 </target>
32
33 <target name="init">
34 <echo message="The EDK Tool: ${ToolName}"/>
35 <mkdir dir="${BUILD_DIR}"/>
36 <if>
37 <equals arg1="${GCC}" arg2="cygwin"/>
38 <then>
39 <echo message="Cygwin Family"/>
40 <property name="ToolChain" value="gcc"/>
41 </then>
42 <elseif>
43 <os family="dos"/>
44 <then>
45 <echo message="Windows Family"/>
46 <property name="ToolChain" value="msvc"/>
47 </then>
48 </elseif>
49 <elseif>
50 <os family="unix"/>
51 <then>
52 <echo message="UNIX Family"/>
53 <property name="ToolChain" value="gcc"/>
54 </then>
55 </elseif>
56
57 <else>
58 <echo>
59 Unsupported Operating System
60 Please Contact Intel Corporation
61 </echo>
62 </else>
63 </if>
64 <property name="ToolChain" value="gcc"/>
65 <if>
66 <equals arg1="${ToolChain}" arg2="msvc"/>
67 <then>
68 <property name="ext_static" value=".lib"/>
69 <property name="ext_dynamic" value=".dll"/>
70 <property name="ext_exe" value=".exe"/>
71 </then>
72 <elseif>
73 <equals arg1="${ToolChain}" arg2="gcc"/>
74 <then>
75 <property name="ext_static" value=".a"/>
76 <property name="ext_dynamic" value=".so"/>
77 <property name="ext_exe" value=""/>
78 </then>
79 </elseif>
80 </if>
81
82 <condition property="syslibdirs" value="">
83 <os family="mac"/>
84 </condition>
85
86 <condition property="syslibs" value="">
87 <os family="mac"/>
88 </condition>
89
90 <condition property="syslibdirs" value="${env.CYGWIN_HOME}/lib/e2fsprogs">
91 <os family="windows"/>
92 </condition>
93
94 <condition property="syslibs" value="uuid">
95 <os family="windows"/>
96 </condition>
97
98 <condition property="syslibdirs" value="/usr/lib">
99 <os name="Linux"/>
100 </condition>
101
102 <condition property="syslibs" value="uuid">
103 <os name="Linux"/>
104 </condition>
105
106 </target>
107
108 <target name="Tool" depends="init, GenFvImage"/>
109
110 <target name="GenFvImage" >
111 <cc name="${ToolChain}" objdir="${BUILD_DIR}"
112 outfile="${BIN_DIR}/${ToolName}"
113 outtype="executable"
114 optimize="speed">
115
116 <defineset>
117 <define name="BUILDING_TOOLS"/>
118 <define name="TOOL_BUILD_IA32_TARGET"/>
119 </defineset>
120
121 <fileset dir="${basedir}/${ToolName}"
122 includes="${FileSet}"/>
123
124 <includepath path="${PACKAGE_DIR}/${ToolName}"/>
125 <includepath path="${PACKAGE_DIR}/Include"/>
126 <includepath path="${PACKAGE_DIR}/Include"/>
127 <includepath path="${PACKAGE_DIR}/Include/Ia32"/>
128 <includepath path="${PACKAGE_DIR}/Include/Common"/>
129 <includepath path="${PACKAGE_DIR}/Include/Protocol"/>
130 <includepath path="${PACKAGE_DIR}/Include/Library"/>
131 <includepath path="${PACKAGE_DIR}/Include/ToBeRemoved"/>
132 <includepath path="${PACKAGE_DIR}/Common"/>
133 <libset dir="${LIB_DIR}" libs="CommonTools CustomizedCompress"/>
134 <linkerarg value="/nodefaultlib:libc.lib" unless="gcc"/>
135 <syslibset dir="${syslibdirs}" libs="${syslibs}" if="gcc"/>
136 <syslibset libs="RpcRT4" unless="gcc"/>
137 </cc>
138 </target>
139
140 <target name="clean" depends="init">
141 <echo message="Removing Intermediate Files Only"/>
142 <delete>
143 <fileset dir="${BUILD_DIR}" includes="*.obj"/>
144 </delete>
145 </target>
146
147 <target name="cleanall" depends="init">
148 <echo message="Removing Object Files and the Executable: ${ToolName}${ext_exe}"/>
149 <delete dir="${PACKAGE_DIR}/${ToolName}/tmp">
150
151 <fileset dir="${BIN_DIR}" includes="${ToolName}_Ia32${ext_exe}"/>
152 <fileset dir="${BIN_DIR}" includes="${ToolName}_X64${ext_exe}"/>
153 <fileset dir="${BIN_DIR}" includes="${ToolName}${ext_exe}"/>
154 <fileset dir="${BIN_DIR}" includes="${ToolName}_Ipf${ext_exe}"/>
155 </delete>
156 </target>
157
158 </project>