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