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