]> git.proxmox.com Git - mirror_edk2.git/blob - Tools/CCode/Source/GenCRC32Section/build.xml
788001aa6fc913c541edaac225de6255648a5301
[mirror_edk2.git] / Tools / CCode / Source / GenCRC32Section / 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 GenCRC32Section Tool
15 Copyright (c) 2006, Intel Corporation
16 -->
17 <property name="ToolName" value="GenCRC32Section"/>
18 <property name="FileSet" value="GenCRC32Section.c GenCRC32Section.h"/>
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="init">
30 <echo message="Building the EDK Tool: ${ToolName}"/>
31 <mkdir dir="${BUILD_DIR}"/>
32 </target>
33
34 <target name="Tool" depends="init">
35 <cc name="${ToolChain}" objdir="${BUILD_DIR}"
36 outfile="${BIN_DIR}/${ToolName}"
37 outtype="executable"
38 debug="true"
39 optimize="speed">
40
41 <fileset dir="${basedir}/${ToolName}"
42 includes="${FileSet}"/>
43
44 <includepath path="${PACKAGE_DIR}/Include"/>
45 <includepath path="${PACKAGE_DIR}/Include/${HostArch}"/>
46 <includepath path="${PACKAGE_DIR}/Common"/>
47 <libset dir="${LIB_DIR}" libs="CommonTools"/>
48
49 </cc>
50 </target>
51
52 <target name="clean">
53 <echo message="Removing Intermediate Files Only"/>
54 <delete>
55 <fileset dir="${BUILD_DIR}" includes="*.obj"/>
56 </delete>
57 </target>
58
59 <target name="cleanall">
60 <echo message="Removing Object Files and the Executable: ${ToolName}${ext_exe}"/>
61 <delete failonerror="false" quiet="true" includeEmptyDirs="true">
62 <fileset dir="${BUILD_DIR}"/>
63 <fileset file="${BIN_DIR}/${ToolName}${ext_exe}"/>
64 </delete>
65 </target>
66
67 </project>