]> git.proxmox.com Git - mirror_edk2.git/blob - Tools/CodeTools/TianoTools/CustomizedCompress/build.xml
Restructuring for better separation of Tool packages.
[mirror_edk2.git] / Tools / CodeTools / 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="GenLib" basedir="." name="CustomizedCompressLibrary">
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 name="LibName" value="CustomizedCompress"/>
23 <property name="LINK_OUTPUT_TYPE" value="static"/>
24 <property name="BUILD_DIR" value="${PACKAGE_DIR}/CustomizedCompress/tmp"/>
25
26 <target name="GenLib" depends="init, CustomizedCompress">
27 <echo message="The EDK Tool Library ${LibName} build has completed!"/>
28 </target>
29
30 <target name="init">
31 <echo message="Building the EDK Tool Library: ${LibName}"/>
32 <mkdir dir="${BUILD_DIR}"/>
33 </target>
34
35 <target name="CustomizedCompress" depends="init">
36 <cc name="${ToolChain}" objdir="${BUILD_DIR}"
37 outfile="${LIB_DIR}/${LibName}"
38 outtype="static"
39 debug="true"
40 optimize="speed">
41
42 <fileset dir="${basedir}/CustomizedCompress"
43 includes="*.c"
44 defaultexcludes="TRUE"
45 excludes="*.xml *.inf"/>
46
47 <includepath path="${PACKAGE_DIR}/Include"/>
48 <includepath path="${PACKAGE_DIR}/Include/Ia32"/>
49 </cc>
50 <if>
51 <istrue value="msft"/>
52 <then>
53 <exec dir="${BUILD_DIR}" executable="lib" failonerror="false">
54 <arg line="/NOLOGO *.lib /OUT:${LIB_DIR}/CustomizedCompress${ext_static}"/>
55 </exec>
56 </then>
57 </if>
58 </target>
59
60 <target name="clean">
61 <echo message="Removing Intermediate Files Only"/>
62 <delete>
63 <fileset dir="${BUILD_DIR}" includes="*.obj"/>
64 </delete>
65 </target>
66
67 <target name="cleanall">
68 <echo message="Removing Object Files and the Library: ${LibName}${ext_static}"/>
69 <delete failonerror="false" quiet="true" includeEmptyDirs="true">
70 <fileset dir="${BUILD_DIR}"/>
71 <fileset file="${LIB_DIR}/${LibName}${ext_static}"/>
72 </delete>
73 </target>
74
75 </project>