]> git.proxmox.com Git - mirror_edk2.git/blob - Tools/CCode/Source/GenFvImage/build.xml
More moves for Tool Packages
[mirror_edk2.git] / Tools / CCode / Source / 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 name="LINK_OUTPUT_TYPE" value="static"/>
25 <property name="BUILD_DIR" value="${PACKAGE_DIR}/${ToolName}/tmp"/>
26
27 <target name="GenTool" depends="init, Tool">
28 <echo message="The EDK Tool: ${ToolName} build has completed"/>
29 </target>
30
31 <target name="init">
32 <echo message="Building the EDK Tool: ${ToolName}"/>
33 <mkdir dir="${BUILD_DIR}"/>
34 <if>
35 <istrue value="${OSX}"/>
36 <then>
37 <property name="syslibdirs" value=""/>
38 <property name="syslibs" value=""/>
39 </then>
40 </if>
41
42 <if>
43 <istrue value="${cygwin}"/>
44 <then>
45 <property name="syslibdirs" value="${env.CYGWIN_HOME}/lib/e2fsprogs"/>
46 <property name="syslibs" value="uuid"/>
47 </then>
48 </if>
49
50 <if>
51 <istrue value="${msft}"/>
52 <then>
53 <property name="syslibdirs" value=""/>
54 <property name="syslibs" value="uuid"/>
55 </then>
56 </if>
57
58 <if>
59 <istrue value="${linux}"/>
60 <then>
61 <if>
62 <istrue value="${x86_64_linux}"/>
63 <then>
64 <property name="syslibdirs" value="/lib64"/>
65 </then>
66 <else>
67 <property name="syslibdirs" value="/usr/lib"/>
68 </else>
69 </if>
70 <property name="syslibs" value="uuid"/>
71 </then>
72 </if>
73 <echo message="syslibdirs set to: ${syslibdirs}"/>
74 </target>
75
76 <target name="Tool" depends="init, GenFvImage"/>
77
78 <target name="GenFvImage" >
79 <cc name="${ToolChain}" objdir="${BUILD_DIR}"
80 outfile="${BIN_DIR}/${ToolName}"
81 outtype="executable"
82 debug="true"
83 optimize="speed">
84 <compilerarg value="${ExtraArgus}" if="ExtraArgus" />
85
86 <defineset>
87 <define name="BUILDING_TOOLS"/>
88 <define name="TOOL_BUILD_IA32_TARGET"/>
89 </defineset>
90
91 <fileset dir="${basedir}/${ToolName}"
92 includes="${FileSet}"/>
93
94 <includepath path="${PACKAGE_DIR}/${ToolName}"/>
95 <includepath path="${PACKAGE_DIR}/Include"/>
96 <includepath path="${PACKAGE_DIR}/Include/${HostArch}"/>
97 <includepath path="${PACKAGE_DIR}/Common"/>
98 <libset dir="${LIB_DIR}" libs="CommonTools"/>
99
100 <linkerarg value="/nodefaultlib:libc.lib" if="msft"/>
101 <syslibset dir="${syslibdirs}" libs="${syslibs}" if="cyglinux"/>
102 <syslibset libs="RpcRT4" if="msft"/>
103 </cc>
104 </target>
105
106 <target name="clean">
107 <echo message="Removing Intermediate Files Only"/>
108 <delete>
109 <fileset dir="${BUILD_DIR}" includes="*.obj"/>
110 </delete>
111 </target>
112
113 <target name="cleanall">
114 <echo message="Removing Object Files and the Executable: ${ToolName}${ext_exe}"/>
115 <delete failonerror="false" quiet="true" includeEmptyDirs="true">
116 <fileset dir="${BUILD_DIR}"/>
117 <fileset file="${BIN_DIR}/${ToolName}_Ia32${ext_exe}"/>
118 <fileset file="${BIN_DIR}/${ToolName}_X64${ext_exe}"/>
119 <fileset file="${BIN_DIR}/${ToolName}${ext_exe}"/>
120 <fileset file="${BIN_DIR}/${ToolName}_Ipf${ext_exe}"/>
121 </delete>
122 </target>
123
124 </project>