]> git.proxmox.com Git - mirror_edk2.git/blob - Tools/Source/TianoTools/SecFixup/build.xml
57764ccead179597d16d2defeb030c7ed2f991a1
[mirror_edk2.git] / Tools / Source / TianoTools / SecFixup / 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 SecFixup Tool
15 Copyright (c) 2006, Intel Corporation
16 -->
17 <property name="ToolName" value="SecFixup"/>
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 environment="env"/>
25
26 <property name="LINK_OUTPUT_TYPE" value="static"/>
27 <property name="BUILD_DIR" value="${PACKAGE_DIR}/${ToolName}/tmp"/>
28
29 <target name="GenTool" depends="init, Tool">
30 <echo message="Building the EDK Tool: ${ToolName}"/>
31 </target>
32
33 <target name="init">
34 <echo message="The EDK Tool: ${ToolName}"/>
35 <mkdir dir="${BUILD_DIR}"/>
36 <if>
37 <equals arg1="${GCC}" arg2="cygwin"/>
38 <then>
39 <echo message="Cygwin Family"/>
40 <property name="ToolChain" value="gcc"/>
41 </then>
42 <elseif>
43 <os family="dos"/>
44 <then>
45 <echo message="Windows Family"/>
46 <property name="ToolChain" value="msvc"/>
47 </then>
48 </elseif>
49 <elseif>
50 <os family="unix"/>
51 <then>
52 <echo message="UNIX Family"/>
53 <property name="ToolChain" value="gcc"/>
54 </then>
55 </elseif>
56
57 <else>
58 <echo>
59 Unsupported Operating System
60 Please Contact Intel Corporation
61 </echo>
62 </else>
63 </if>
64 <if>
65 <equals arg1="${ToolChain}" arg2="msvc"/>
66 <then>
67 <property name="ext_static" value=".lib"/>
68 <property name="ext_dynamic" value=".dll"/>
69 <property name="ext_exe" value=".exe"/>
70 </then>
71 <elseif>
72 <equals arg1="${ToolChain}" arg2="gcc"/>
73 <then>
74 <property name="ext_static" value=".a"/>
75 <property name="ext_dynamic" value=".so"/>
76 <property name="ext_exe" value=""/>
77 </then>
78 </elseif>
79 </if>
80 </target>
81
82 <target name="Tool" depends="init">
83 <cc name="${ToolChain}" objdir="${BUILD_DIR}"
84 outfile="${BIN_DIR}/${ToolName}"
85 outtype="executable"
86 libtool="${haveLibtool}"
87 debug="false">
88
89 <fileset dir="${basedir}/${ToolName}"
90 includes="${FileSet}"
91 defaultexcludes="TRUE"
92 excludes="*.xml *.inf"/>
93
94 <includepath path="${PACKAGE_DIR}/Include"/>
95 <includepath path="${PACKAGE_DIR}/Include/${HostArch}"/>
96 <includepath path="${PACKAGE_DIR}/Common"/>
97 <libset dir="${LIB_DIR}" libs="CommonTools"/>
98 </cc>
99 </target>
100
101 <target name="clean" depends="init">
102 <echo message="Removing Intermediate Files Only"/>
103 <delete>
104 <fileset dir="${BUILD_DIR}" includes="*.obj"/>
105 </delete>
106 </target>
107
108 <target name="cleanall" depends="init">
109 <echo message="Removing Object Files and the Executable: ${ToolName}${ext_exe}"/>
110 <delete dir="${BUILD_DIR}">
111 <fileset dir="${BIN_DIR}" includes="${ToolName}${ext_exe}"/>
112 </delete>
113 </target>
114
115 </project>