]> git.proxmox.com Git - mirror_edk2.git/blob - Tools/CCode/Source/PeiRebase/build.xml
removed extra taskdef and taskref definitions that caused some warning messages when...
[mirror_edk2.git] / Tools / CCode / Source / 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="net/sf/antcontrib/antlib.xml"/>
21
22 <property name="LINK_OUTPUT_TYPE" value="static"/>
23 <property name="BUILD_DIR" value="${PACKAGE_DIR}/${ToolName}/tmp"/>
24
25 <target name="GenTool" depends="init, Tool">
26 <echo message="The EDK Tool: ${ToolName} build has completed"/>
27 </target>
28
29 <target name="Tool" depends="init, PeiRebase_Ia32, PeiRebase_Ipf, PeiRebase_X64"/>
30
31 <target name="init">
32 <echo message="Building the EDK Tool: ${ToolName}"/>
33 <mkdir dir="${BUILD_DIR}"/>
34 </target>
35
36 <target name="PeiRebase_Ia32" depends="init">
37 <cc name="${ToolChain}" objdir="${BUILD_DIR}"
38 outfile="${BIN_DIR}/${ToolName}_Ia32"
39 outtype="executable"
40 debug="true"
41 optimize="speed">
42 <compilerarg value="${ExtraArgus}" if="ExtraArgus" />
43
44 <fileset dir="${basedir}/${ToolName}"
45 includes="${FileSet}"/>
46
47 <includepath path="${PACKAGE_DIR}/Include"/>
48 <includepath path="${PACKAGE_DIR}/Include/Ia32"/>
49 <includepath path="${PACKAGE_DIR}/Common"/>
50 <libset dir="${LIB_DIR}" libs="CommonTools PeCoffLoader_Ia32"/>
51 </cc>
52 </target>
53
54 <target name="PeiRebase_Ipf" depends="init">
55 <cc name="${ToolChain}" objdir="${BUILD_DIR}"
56 outfile="${BIN_DIR}/${ToolName}_Ipf"
57 outtype="executable"
58 debug="true"
59 optimize="speed">
60 <compilerarg value="${ExtraArgus}" if="ExtraArgus" />
61 <fileset dir="${basedir}/${ToolName}"
62 includes="${FileSet}"/>
63
64 <includepath path="${PACKAGE_DIR}/Include"/>
65 <includepath path="${PACKAGE_DIR}/Include/Ia32"/>
66 <includepath path="${PACKAGE_DIR}/Common"/>
67 <libset dir="${LIB_DIR}" libs="CommonTools PeCoffLoader_Ipf"/>
68 </cc>
69 </target>
70
71 <target name="PeiRebase_X64" depends="init">
72 <cc name="${ToolChain}" objdir="${BUILD_DIR}"
73 outfile="${BIN_DIR}/${ToolName}_X64"
74 outtype="executable"
75 debug="true"
76 optimize="speed">
77 <compilerarg value="${ExtraArgus}" if="ExtraArgus" />
78 <fileset dir="${basedir}/${ToolName}"
79 includes="${FileSet}" />
80
81 <includepath path="${PACKAGE_DIR}/Include"/>
82 <includepath path="${PACKAGE_DIR}/Include/Ia32"/>
83 <includepath path="${PACKAGE_DIR}/Common"/>
84 <libset dir="${LIB_DIR}" libs="CommonTools PeCoffLoader_X64"/>
85 </cc>
86 </target>
87
88 <target name="clean">
89 <echo message="Removing Intermediate Files Only"/>
90 <delete>
91 <fileset dir="${BUILD_DIR}" includes="*.obj"/>
92 </delete>
93 </target>
94
95 <target name="cleanall">
96 <echo message="Removing Object Files and the Executable: ${ToolName}_*${ext_exe}"/>
97 <delete failonerror="false" quiet="true" includeEmptyDirs="true">
98 <fileset dir="${BUILD_DIR}"/>
99 <fileset file="${BIN_DIR}/${ToolName}_Ia32${ext_exe}"/>
100 <fileset file="${BIN_DIR}/${ToolName}_Ipf${ext_exe}"/>
101 <fileset file="${BIN_DIR}/${ToolName}_X64${ext_exe}"/>
102 </delete>
103 </target>
104
105 </project>