]> git.proxmox.com Git - mirror_edk2.git/blob - Tools/Source/TianoTools/PeiRebase/build.xml
A couple of cleanups in the TianoTools build.
[mirror_edk2.git] / Tools / Source / TianoTools / PeiRebase / 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 PeiRebase Tool
15 Copyright (c) 2006, Intel Corporation
16 -->
17 <property name="ToolName" value="PeiRebase"/>
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 <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="Building the EDK Tool: ${ToolName}"/>
29 </target>
30
31 <target name="Tool" depends="init, PeiRebase_Ia32, PeiRebase_Ipf, PeiRebase_X64"/>
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 <if>
65 <equals arg1="${ToolChain}" arg2="msvc"/>
66 <then>
67 <property name="ext_static" value=".lib"/>
68 <property name="ext_dynamic" value=".dll"/>
69 <property name="ext_exe" value=".exe"/>
70 </then>
71 <elseif>
72 <equals arg1="${ToolChain}" arg2="gcc"/>
73 <then>
74 <property name="ext_static" value=".a"/>
75 <property name="ext_dynamic" value=".so"/>
76 <property name="ext_exe" value=""/>
77 </then>
78 </elseif>
79 </if>
80 </target>
81
82 <target name="PeiRebase_Ia32" depends="init">
83 <cc name="${ToolChain}" objdir="${BUILD_DIR}"
84 outfile="${BIN_DIR}/${ToolName}_Ia32"
85 outtype="executable"
86 optimize="speed">
87
88 <fileset dir="${basedir}/${ToolName}"
89 includes="${FileSet}"/>
90
91 <includepath path="${PACKAGE_DIR}/Include"/>
92 <includepath path="${PACKAGE_DIR}/Include/Ia32"/>
93 <includepath path="${PACKAGE_DIR}/Common"/>
94 <libset dir="${LIB_DIR}" libs="CommonTools PeCoffLoader_Ia32"/>
95 </cc>
96 </target>
97
98 <target name="PeiRebase_Ipf" depends="init">
99 <cc name="${ToolChain}" objdir="${BUILD_DIR}"
100 outfile="${BIN_DIR}/${ToolName}_Ipf"
101 outtype="executable"
102 optimize="speed">
103
104 <fileset dir="${basedir}/${ToolName}"
105 includes="${FileSet}"/>
106
107 <includepath path="${PACKAGE_DIR}/Include"/>
108 <includepath path="${PACKAGE_DIR}/Include/Ia32"/>
109 <includepath path="${PACKAGE_DIR}/Common"/>
110 <libset dir="${LIB_DIR}" libs="CommonTools PeCoffLoader_Ipf"/>
111 </cc>
112 </target>
113
114 <target name="PeiRebase_X64" depends="init">
115 <cc name="${ToolChain}" objdir="${BUILD_DIR}"
116 outfile="${BIN_DIR}/${ToolName}_X64"
117 outtype="executable"
118 optimize="speed">
119
120 <fileset dir="${basedir}/${ToolName}"
121 includes="${FileSet}" />
122
123 <includepath path="${PACKAGE_DIR}/Include"/>
124 <includepath path="${PACKAGE_DIR}/Include/Ia32"/>
125 <includepath path="${PACKAGE_DIR}/Common"/>
126 <libset dir="${LIB_DIR}" libs="CommonTools PeCoffLoader_X64"/>
127 </cc>
128 </target>
129
130 <target name="clean" depends="init">
131 <echo message="Removing Intermediate Files Only"/>
132 <delete>
133 <fileset dir="${BUILD_DIR}" includes="*.obj"/>
134 </delete>
135 </target>
136
137 <target name="cleanall" depends="init">
138 <echo message="Removing Object Files and the Executable: ${ToolName}${ext_exe}"/>
139 <delete dir="${BUILD_DIR}">
140 <fileset dir="${BIN_DIR}" includes="${ToolName}${ext_exe}"/>
141 </delete>
142 </target>
143
144 </project>