2006-04-22 00:54:32 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!--
|
|
|
|
Copyright (c) 2006, Intel Corporation
|
|
|
|
All rights reserved. This program and the accompanying materials
|
|
|
|
are licensed and made available under the terms and conditions of the BSD License
|
|
|
|
which accompanies this distribution. The full text of the license may be found at
|
|
|
|
http://opensource.org/licenses/bsd-license.php
|
|
|
|
|
|
|
|
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|
|
|
-->
|
|
|
|
<project default="GenTool" basedir=".">
|
|
|
|
<!--EDK GenDepex Tool
|
|
|
|
Copyright (c) 2006, Intel Corporation-->
|
|
|
|
<property environment="env"/>
|
|
|
|
<property name="WORKSPACE" value="${env.WORKSPACE}"/>
|
|
|
|
<property name="ToolName" value="CompressDll"/>
|
|
|
|
<property name="LibName" value="CompressDll"/>
|
|
|
|
<property name="FileSet" value="CompressDll.c CompressDll.h"/>
|
|
|
|
<property name="LibFileSet" value="CompressDll.c DepexParser.h"/>
|
|
|
|
<taskdef resource="cpptasks.tasks"/>
|
|
|
|
<typedef resource="cpptasks.types"/>
|
|
|
|
<taskdef resource="net/sf/antcontrib/antlib.xml"/>
|
|
|
|
<property name="LINK_OUTPUT_TYPE" value="static"/>
|
|
|
|
<property name="BUILD_DIR" value="${WORKSPACE}/Tools/Source/TianoTools/${ToolName}/tmp"/>
|
2006-05-04 00:14:18 +02:00
|
|
|
<target name="GenTool" depends="init,Lib" >
|
2006-04-22 00:54:32 +02:00
|
|
|
<echo message="Building the EDK Tool: ${ToolName}"/>
|
|
|
|
</target>
|
|
|
|
<target name="init">
|
|
|
|
<echo message="The EDK Tool: ${ToolName}"/>
|
|
|
|
<mkdir dir="${BUILD_DIR}"/>
|
|
|
|
<if>
|
|
|
|
<equals arg1="${GCC}" arg2="cygwin"/>
|
|
|
|
<then>
|
|
|
|
<echo message="Cygwin Family"/>
|
|
|
|
<property name="ToolChain" value="gcc"/>
|
|
|
|
</then>
|
|
|
|
<elseif>
|
|
|
|
<os family="dos"/>
|
|
|
|
<then>
|
|
|
|
<echo message="Windows Family"/>
|
|
|
|
<property name="ToolChain" value="msvc"/>
|
|
|
|
</then>
|
|
|
|
</elseif>
|
|
|
|
<elseif>
|
|
|
|
<os family="unix"/>
|
|
|
|
<then>
|
|
|
|
<echo message="UNIX Family"/>
|
|
|
|
<property name="ToolChain" value="gcc"/>
|
|
|
|
</then>
|
|
|
|
</elseif>
|
|
|
|
<else>
|
|
|
|
<echo>Unsupported Operating System
|
|
|
|
Please Contact Intel Corporation</echo>
|
|
|
|
</else>
|
|
|
|
</if>
|
|
|
|
<if>
|
|
|
|
<equals arg1="${ToolChain}" arg2="msvc"/>
|
|
|
|
<then>
|
|
|
|
<property name="ext_static" value=".lib"/>
|
|
|
|
<property name="ext_dynamic" value=".dll"/>
|
|
|
|
<property name="ext_exe" value=".exe"/>
|
|
|
|
</then>
|
|
|
|
<elseif>
|
|
|
|
<equals arg1="${ToolChain}" arg2="gcc"/>
|
|
|
|
<then>
|
|
|
|
<property name="ext_static" value=".a"/>
|
|
|
|
<property name="ext_dynamic" value=".so"/>
|
|
|
|
<property name="ext_exe" value=""/>
|
|
|
|
</then>
|
|
|
|
</elseif>
|
|
|
|
</if>
|
|
|
|
</target>
|
|
|
|
|
2006-05-18 00:09:07 +02:00
|
|
|
<target name="Lib" depends="init">
|
2006-05-04 00:14:18 +02:00
|
|
|
<cc name="${ToolChain}"
|
|
|
|
objdir="${BUILD_DIR}"
|
|
|
|
outtype="shared"
|
|
|
|
optimize="speed"
|
|
|
|
outfile="${BIN_DIR}/${LibName}"
|
2006-05-18 00:39:41 +02:00
|
|
|
outputfileproperty="result"
|
2006-05-04 00:14:18 +02:00
|
|
|
>
|
2006-04-22 00:54:32 +02:00
|
|
|
<fileset dir="${ToolName}" includes="${LibFileSet}" defaultexcludes="TRUE" excludes="*.xml *.inf"/>
|
|
|
|
<includepath path="${env.WORKSPACE}/MdePkg/Include"/>
|
|
|
|
<includepath path="${env.WORKSPACE}/MdePkg/Include/Ia32"/>
|
|
|
|
<includepath path="${env.WORKSPACE}/MdePkg/Include/Common"/>
|
|
|
|
<includepath path="${PACKAGE_DIR}/Common"/>
|
|
|
|
<includepath path="${env.JAVA_HOME}/include"/>
|
2006-05-18 00:09:07 +02:00
|
|
|
<includepath path="${env.JAVA_HOME}/include/win32" if="windows"/>
|
|
|
|
<includepath path="${env.JAVA_HOME}/include/linux" if="linux"/>
|
2006-05-04 00:14:18 +02:00
|
|
|
<libset dir="${LIB_DIR}" libs="CommonTools"/>
|
|
|
|
<syslibset libs="kernel32" unless="gcc"/>
|
2006-04-22 00:54:32 +02:00
|
|
|
</cc>
|
2006-05-18 00:39:41 +02:00
|
|
|
<copy file="${result}" tofile="${BIN_DIR}/CompressDll.dll"/>
|
2006-05-20 00:25:12 +02:00
|
|
|
<chmod file="${BIN_DIR}/CompressDll.dll" perm="ugo+x"/>
|
2006-04-22 00:54:32 +02:00
|
|
|
</target>
|
|
|
|
<target name="clean" depends="init">
|
|
|
|
<echo message="Removing Intermediate Files Only"/>
|
|
|
|
<delete>
|
|
|
|
<fileset dir="${BUILD_DIR}" includes="*.obj"/>
|
|
|
|
</delete>
|
|
|
|
</target>
|
|
|
|
<target name="cleanall" depends="init">
|
|
|
|
<echo message="Removing Object Files and the Executable: ${ToolName}${ext_exe}"/>
|
|
|
|
<delete dir="${BUILD_DIR}">
|
|
|
|
<fileset dir="${BIN_DIR}" includes="${ToolName}${ext_dynamic}"/>
|
|
|
|
</delete>
|
|
|
|
</target>
|
|
|
|
</project>
|