]> git.proxmox.com Git - mirror_edk2.git/blob - Tools/Source/TianoTools/String/build.xml
Add new OSS License
[mirror_edk2.git] / Tools / Source / TianoTools / String / 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 String
15 Copyright (c) 2006, Intel Corporation
16 -->
17 <taskdef resource="cpptasks.tasks"/>
18 <typedef resource="cpptasks.types"/>
19 <taskdef resource="net/sf/antcontrib/antlib.xml"/>
20
21 <property name="LibName" value="String"/>
22 <property environment="env"/>
23
24 <property name="LINK_OUTPUT_TYPE" value="static"/>
25 <property name="BUILD_DIR" value="${PACKAGE_DIR}/${LibName}/tmp"/>
26
27 <target name="GenTool" depends="init, String">
28 <echo message="Building the EDK Tool: ${LibName}"/>
29 </target>
30
31 <target name="init">
32 <echo message="The EDK Library: ${LibName}"/>
33 <mkdir dir="${BUILD_DIR}"/>
34 <if>
35 <equals arg1="${GCC}" arg2="cygwin"/>
36 <then>
37 <echo message="Cygwin Family"/>
38 <property name="ToolChain" value="gcc"/>
39 </then>
40 <elseif>
41 <os family="dos"/>
42 <then>
43 <echo message="Windows Family"/>
44 <property name="ToolChain" value="msvc"/>
45 </then>
46 </elseif>
47 <elseif>
48 <os family="unix"/>
49 <then>
50 <echo message="UNIX Family"/>
51 <property name="ToolChain" value="gcc"/>
52 </then>
53 </elseif>
54
55 <else>
56 <echo>
57 Unsupported Operating System
58 Please Contact Intel Corporation
59 </echo>
60 </else>
61 </if>
62 <property name="ToolChain" value="gcc"/>
63 <if>
64 <equals arg1="${ToolChain}" arg2="msvc"/>
65 <then>
66 <property name="ext_static" value=".lib"/>
67 <property name="ext_dynamic" value=".dll"/>
68 <property name="ext_exe" value=".exe"/>
69 </then>
70 <elseif>
71 <equals arg1="${ToolChain}" arg2="gcc"/>
72 <then>
73 <property name="ext_static" value=".a"/>
74 <property name="ext_dynamic" value=".so"/>
75 <property name="ext_exe" value=""/>
76 </then>
77 </elseif>
78 </if>
79
80 <condition property="syslibdirs" value="">
81 <os family="mac"/>
82 </condition>
83
84 <condition property="syslibs" value="">
85 <os family="mac"/>
86 </condition>
87
88 <condition property="syslibdirs" value="${env.CYGWIN_HOME}/lib/e2fsprogs">
89 <os family="windows"/>
90 </condition>
91
92 <condition property="syslibs" value="uuid">
93 <os family="windows"/>
94 </condition>
95
96 <condition property="syslibdirs" value="/usr/lib">
97 <os name="Linux"/>
98 </condition>
99
100 <condition property="syslibs" value="uuid">
101 <os name="Linux"/>
102 </condition>
103
104 </target>
105
106 <target name="String" depends="init">
107 <cc name="${ToolChain}" objdir="${BUILD_DIR}"
108 outfile="${LIB_DIR}/${LibName}"
109 outtype="static"
110 optimize="speed">
111
112 <compilerarg value="-fshort-wchar" if="gcc"/>
113
114 <fileset dir="${basedir}/${LibName}"
115 includes="*.c" />
116
117 <includepath path="${PACKAGE_DIR}/${LibName}"/>
118 <includepath path="${PACKAGE_DIR}/Include"/>
119 <includepath path="${PACKAGE_DIR}/Include/Ia32"/>
120 <includepath path="${PACKAGE_DIR}/Common"/>
121 </cc>
122 </target>
123
124
125 <target name="clean" depends="init">
126 <echo message="Removing Intermediate Files Only"/>
127 <delete>
128 <fileset dir="${BUILD_DIR}" includes="*.obj"/>
129 </delete>
130 </target>
131
132 <target name="cleanall" depends="init">
133 <echo message="Removing Object Files and the Executable: ${LibName}${ext_exe}"/>
134 <delete dir="${PACKAGE_DIR}/${LibName}/tmp">
135 </delete>
136 </target>
137
138 </project>