]> git.proxmox.com Git - mirror_edk2.git/blob - Tools/Source/TianoTools/CustomizedCompress/build.xml
07e55950d5d976bb6a0254c336fb898918b0cdd5
[mirror_edk2.git] / Tools / Source / TianoTools / CustomizedCompress / 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="CustomizedCompress.lib" basedir=".">
13 <!--
14 EDK Customized Compress Library
15 Copyright (c) 2006, Intel Corporation
16 -->
17
18 <taskdef resource="cpptasks.tasks"/>
19 <typedef resource="cpptasks.types"/>
20 <taskdef resource="net/sf/antcontrib/antlib.xml"/>
21
22 <property environment="env"/>
23
24 <property name="LINK_OUTPUT_TYPE" value="static"/>
25 <property name="BUILD_DIR" value="${PACKAGE_DIR}/CustomizedCompress/tmp"/>
26
27 <target name="CustomizedCompress.lib" depends="ToolsLibrary">
28 <echo message="Building the EDK CustomizedCompress Library"/>
29 </target>
30
31 <target name="init">
32 <echo message="The EDK CustomizedCompress Library"/>
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="HOST_ARCH" value="IA32" />
63 <ToolChainSetup confPath="${WORKSPACE}/Tools/Conf" />
64 <echo message="Compiler: ${CC}"/>
65 <if>
66 <equals arg1="${ToolChain}" arg2="msvc"/>
67 <then>
68 <property name="ext_static" value=".lib"/>
69 <property name="ext_dynamic" value=".dll"/>
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 </then>
77 </elseif>
78 </if>
79 </target>
80
81 <target name="ToolsLibrary" depends="init">
82 <cc name="${ToolChain}" objdir="${BUILD_DIR}"
83 outfile="${LIB_DIR}/CustomizedCompress"
84 outtype="static"
85 libtool="${haveLibtool}"
86 optimize="speed">
87
88 <fileset dir="${basedir}/CustomizedCompress"
89 includes="*.h *.c"
90 defaultexcludes="TRUE"
91 excludes="*.xml *.inf"/>
92
93 <includepath path="${PACKAGE_DIR}/Include"/>
94 <includepath path="${PACKAGE_DIR}/Include/Common"/>
95 <includepath path="${PACKAGE_DIR}/Include/Ia32"/>
96 </cc>
97 <if>
98 <os family="dos"/>
99 <then>
100 <exec dir="${BUILD_DIR}" executable="lib" failonerror="false">
101 <arg line="/NOLOGO *.lib /OUT:${LIB_DIR}/CustomizedCompress${ext_static}"/>
102 </exec>
103 </then>
104 </if>
105 </target>
106
107 <target name="clean">
108 <echo message="Removing Intermediate Files Only"/>
109 <delete>
110 <fileset dir="${BUILD_DIR}" includes="*.obj"/>
111 </delete>
112 </target>
113
114 <target name="cleanall">
115 <echo message="Removing Object Files and the Library: CustomizedCompress${ext_static}"/>
116 <delete dir="${BUILD_DIR}" failonerror="false">
117 <fileset dir="${LIB_DIR}" includes="CustomizedCompress${ext_static}"/>
118 </delete>
119 </target>
120
121 </project>