]> git.proxmox.com Git - mirror_edk2.git/blobdiff - Tools/Source/TianoTools/CompressDll/build.xml
Restructuring for better separation of Tool packages.
[mirror_edk2.git] / Tools / Source / TianoTools / CompressDll / build.xml
diff --git a/Tools/Source/TianoTools/CompressDll/build.xml b/Tools/Source/TianoTools/CompressDll/build.xml
deleted file mode 100644 (file)
index 5043d12..0000000
+++ /dev/null
@@ -1,80 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>\r
-<!--\r
-Copyright (c) 2006, Intel Corporation\r
-All rights reserved. This program and the accompanying materials\r
-are licensed and made available under the terms and conditions of the BSD License\r
-which accompanies this distribution.  The full text of the license may be found at\r
-http://opensource.org/licenses/bsd-license.php\r
-\r
-THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
-WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
--->\r
-<project default="GenTool" basedir=".">\r
-<!--\r
-    EDK CompressDll Tool Library\r
-  Copyright (c) 2006, Intel Corporation\r
--->\r
-\r
-  <property name="WORKSPACE" value="${env.WORKSPACE}"/>\r
-  <property name="LibName" value="CompressDll"/>\r
-  <property name="FileSet" value="CompressDll.c CompressDll.h"/>\r
-  <property name="LibFileSet" value="CompressDll.c DepexParser.h"/>\r
-\r
-  <taskdef resource="cpptasks.tasks"/>\r
-  <typedef resource="cpptasks.types"/>\r
-  <taskdef resource="net/sf/antcontrib/antlib.xml"/>\r
-\r
-  <property name="LINK_OUTPUT_TYPE" value="static"/>\r
-  <property name="BUILD_DIR" value="${WORKSPACE}/Tools/Source/TianoTools/${LibName}/tmp"/>\r
-\r
-  <target name="GenTool" depends="init,Lib" >\r
-    <echo message="The EDK Tool Library: ${LibName} build has completed!"/>\r
-  </target>\r
-\r
-  <target name="init">\r
-    <echo message="Building the EDK Tool Library: ${LibName}"/>\r
-    <mkdir dir="${BUILD_DIR}"/>\r
-  </target>\r
-  \r
-  <target name="Lib" depends="init">\r
-    <cc name="${ToolChain}" \r
-      objdir="${BUILD_DIR}" \r
-      outtype="shared" \r
-      debug="true"\r
-      optimize="speed" \r
-      outfile="${BIN_DIR}/${LibName}"\r
-      outputfileproperty="result"\r
-      >\r
-      <compilerarg value="${ExtraArgus}" if="ExtraArgus" />\r
-      <fileset dir="${LibName}" includes="${LibFileSet}" defaultexcludes="TRUE" excludes="*.xml *.inf"/>\r
-      <includepath path="${PACKAGE_DIR}/Include"/>\r
-      <includepath path="${PACKAGE_DIR}/Include/${HostArch}"/>\r
-      <includepath path="${PACKAGE_DIR}/Common"/>\r
-      <includepath path="${env.JAVA_HOME}/include"/>\r
-      <includepath path="${env.JAVA_HOME}/include/linux" if="gcc"/>\r
-      <includepath path="${env.JAVA_HOME}/include/win32" if="cygwin"/>\r
-      <includepath path="${env.JAVA_HOME}/include/win32" if="msft"/>\r
-      <libset dir="${LIB_DIR}" libs="CommonTools"/>\r
-      <syslibset libs="kernel32" if="msft"/>\r
-      <linkerarg value="-mno-cygwin" if="cygwin"/>\r
-      <linkerarg value="--add-stdcall-alias" if="cygwin"/>\r
-    </cc>\r
-    <copy file="${result}" tofile="${BIN_DIR}/CompressDll.dll"/>\r
-    <chmod file="${BIN_DIR}/CompressDll.dll" perm="ugo+x"/>\r
-  </target>\r
-\r
-  <target name="clean">\r
-    <echo message="Removing Intermediate Files Only"/>\r
-    <delete>\r
-      <fileset dir="${BUILD_DIR}" includes="*.obj"/>\r
-    </delete>\r
-  </target>\r
-\r
-  <target name="cleanall">\r
-    <echo message="Removing Object Files and the Executable: ${LibName}${ext_shared}"/>\r
-    <delete failonerror="false" quiet="true" includeEmptyDirs="true">\r
-      <fileset dir="${BUILD_DIR}"/>\r
-      <fileset file="${BIN_DIR}/${LibName}.*"/>\r
-    </delete>\r
-  </target>\r
-</project>\r