]> git.proxmox.com Git - mirror_edk2.git/blob - Tools/CCode/Source/GuidChk/build.xml
cadd6036471c76f8505d17a2006b125a46d6417f
[mirror_edk2.git] / Tools / CCode / Source / GuidChk / 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 GuidChk Tool
15 Copyright (c) 2006, Intel Corporation
16 -->
17 <property name="ToolName" value="GuidChk"/>
18 <property name="FileSet" value="*.c *.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 <if>
27 <isfalse value="${gcc}"/>
28 <then>
29 <echo message="The EDK Tool: ${ToolName} build has completed!"/>
30 </then>
31 </if>
32 </target>
33
34 <target name="init">
35 <if>
36 <istrue value="${gcc}"/>
37 <then>
38 <echo message="The EDK Tool: ${ToolName} is not built for GCC!"/>
39 </then>
40 <else>
41 <echo message="Building the EDK Tool: ${ToolName}"/>
42 <mkdir dir="${BUILD_DIR}"/>
43 </else>
44 </if>
45 </target>
46
47 <target name="Tool" depends="init" unless="gcc">
48 <cc name="${ToolChain}" objdir="${BUILD_DIR}"
49 outfile="${BIN_DIR}/${ToolName}"
50 outtype="executable"
51 debug="true"
52 optimize="speed">
53
54 <fileset dir="${basedir}/${ToolName}"
55 includes="${FileSet}"
56 defaultexcludes="TRUE"
57 excludes="*.xml *.inf"/>
58
59 <includepath path="${PACKAGE_DIR}/Include"/>
60 <includepath path="${PACKAGE_DIR}/Include/Ia32"/>
61 <includepath path="${PACKAGE_DIR}/Common"/>
62 <libset dir="${LIB_DIR}" libs="CommonTools"/>
63
64 </cc>
65 </target>
66
67 <target name="clean">
68 <echo message="Removing Intermediate Files Only"/>
69 <delete failonerror="false" quiet="true" includeEmptyDirs="true">
70 <fileset dir="${BUILD_DIR}"/>
71 </delete>
72 </target>
73
74 <target name="cleanall">
75 <echo message="Removing Object Files and the Executable: ${ToolName}${ext_exe}"/>
76 <delete failonerror="false" quiet="true" includeEmptyDirs="true">
77 <fileset dir="${BUILD_DIR}"/>
78 <fileset file="${BIN_DIR}/${ToolName}${ext_exe}"/>
79 </delete>
80 </target>
81
82 </project>