]> git.proxmox.com Git - mirror_edk2.git/blob - Tools/Source/TianoTools/CompressDll/build.xml
Support building on x64 hosts.
[mirror_edk2.git] / Tools / Source / TianoTools / CompressDll / build.xml
1 <?xml version="1.0" encoding="UTF-8"?>
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 GenDepex Tool
15 Copyright (c) 2006, Intel Corporation
16 -->
17
18 <property environment="env"/>
19 <property name="WORKSPACE" value="${env.WORKSPACE}"/>
20 <property name="ToolName" value="CompressDll"/>
21 <property name="LibName" value="CompressDll"/>
22 <property name="FileSet" value="CompressDll.c CompressDll.h"/>
23 <property name="LibFileSet" value="CompressDll.c DepexParser.h"/>
24
25 <taskdef resource="cpptasks.tasks"/>
26 <typedef resource="cpptasks.types"/>
27 <taskdef resource="net/sf/antcontrib/antlib.xml"/>
28
29 <property name="LINK_OUTPUT_TYPE" value="static"/>
30 <property name="BUILD_DIR" value="${WORKSPACE}/Tools/Source/TianoTools/${ToolName}/tmp"/>
31
32 <target name="GenTool" depends="init,Lib" >
33 <echo message="Building the EDK Tool: ${ToolName}"/>
34 </target>
35
36 <target name="init">
37 <echo message="The EDK Tool: ${ToolName}"/>
38 <mkdir dir="${BUILD_DIR}"/>
39 <if>
40 <equals arg1="${GCC}" arg2="cygwin"/>
41 <then>
42 <echo message="Cygwin Family"/>
43 <property name="ToolChain" value="gcc"/>
44 </then>
45 <elseif>
46 <os family="dos"/>
47 <then>
48 <echo message="Windows Family"/>
49 <property name="ToolChain" value="msvc"/>
50 </then>
51 </elseif>
52 <elseif>
53 <os family="unix"/>
54 <then>
55 <echo message="UNIX Family"/>
56 <property name="ToolChain" value="gcc"/>
57 </then>
58 </elseif>
59 <else>
60 <echo>Unsupported Operating System
61 Please Contact Intel Corporation</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="Lib" depends="init">
83 <cc name="${ToolChain}"
84 objdir="${BUILD_DIR}"
85 outtype="shared"
86 optimize="speed"
87 outfile="${BIN_DIR}/${LibName}"
88 outputfileproperty="result"
89 >
90 <fileset dir="${ToolName}" includes="${LibFileSet}" defaultexcludes="TRUE" excludes="*.xml *.inf"/>
91 <includepath path="${PACKAGE_DIR}/Include"/>
92 <includepath path="${PACKAGE_DIR}/Include/${HostArch}"/>
93 <includepath path="${PACKAGE_DIR}/Common"/>
94 <includepath path="${env.JAVA_HOME}/include"/>
95 <includepath path="${env.JAVA_HOME}/include/win32" if="windows"/>
96 <includepath path="${env.JAVA_HOME}/include/linux" if="gcc"/>
97 <libset dir="${LIB_DIR}" libs="CommonTools"/>
98 <syslibset libs="kernel32" unless="gcc"/>
99 </cc>
100 <copy file="${result}" tofile="${BIN_DIR}/CompressDll.dll"/>
101 <chmod file="${BIN_DIR}/CompressDll.dll" perm="ugo+x"/>
102 </target>
103
104 <target name="clean" depends="init">
105 <echo message="Removing Intermediate Files Only"/>
106 <delete>
107 <fileset dir="${BUILD_DIR}" includes="*.obj"/>
108 </delete>
109 </target>
110
111 <target name="cleanall" depends="init">
112 <echo message="Removing Object Files and the Executable: ${ToolName}${ext_exe}"/>
113 <delete dir="${BUILD_DIR}">
114 <fileset dir="${BIN_DIR}" includes="${ToolName}${ext_dynamic}"/>
115 </delete>
116 </target>
117 </project>