]> git.proxmox.com Git - mirror_edk2.git/blobdiff - Tools/CCode/Source/GuidChk/build.xml
Retiring the ANT/JAVA build and removing the older EDK II packages that required...
[mirror_edk2.git] / Tools / CCode / Source / GuidChk / build.xml
diff --git a/Tools/CCode/Source/GuidChk/build.xml b/Tools/CCode/Source/GuidChk/build.xml
deleted file mode 100644 (file)
index 80f8ef0..0000000
+++ /dev/null
@@ -1,83 +0,0 @@
-<?xml version="1.0" ?>\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 GuidChk Tool\r
-  Copyright (c) 2006, Intel Corporation\r
--->\r
-  <property name="ToolName" value="GuidChk"/>\r
-  <property name="FileSet" value="*.c *.h"/>\r
-\r
-  <taskdef resource="net/sf/antcontrib/antlib.xml"/>\r
-\r
-  <property name="LINK_OUTPUT_TYPE" value="static"/>\r
-  <property name="BUILD_DIR" value="${PACKAGE_DIR}/${ToolName}/tmp"/>\r
-\r
-  <target name="GenTool" depends="init, Tool">\r
-    <if>\r
-      <isfalse value="${gcc}"/>\r
-      <then>\r
-        <echo message="The EDK Tool: ${ToolName} build has completed!"/>\r
-      </then>\r
-    </if>\r
-  </target>\r
-\r
-  <target name="init">\r
-    <if>\r
-      <istrue value="${gcc}"/>\r
-      <then>\r
-        <echo message="The EDK Tool: ${ToolName} is not built for GCC!"/>\r
-      </then>\r
-      <else>\r
-        <echo message="Building the EDK Tool: ${ToolName}"/>\r
-        <mkdir dir="${BUILD_DIR}"/>\r
-      </else>\r
-    </if>\r
-  </target>\r
-\r
-  <target name="Tool" depends="init" unless="gcc">\r
-    <cc name="${ToolChain}" objdir="${BUILD_DIR}" \r
-        outfile="${BIN_DIR}/${ToolName}"\r
-        outtype="executable"\r
-        debug="true"\r
-        optimize="speed">\r
-\r
-      <fileset dir="${basedir}/${ToolName}" \r
-        includes="${FileSet}" \r
-        defaultexcludes="TRUE" \r
-        excludes="*.xml *.inf"/>\r
-\r
-      <includepath path="${PACKAGE_DIR}/Include"/>\r
-      <includepath path="${PACKAGE_DIR}/Include/Ia32"/>\r
-      <includepath path="${PACKAGE_DIR}/Common"/>\r
-      <libset dir="${LIB_DIR}" libs="CommonTools"/>\r
-\r
-    </cc>\r
-  </target>\r
-\r
-  <target name="clean">\r
-    <echo message="Removing Intermediate Files Only"/>  \r
-    <delete failonerror="false" quiet="true" includeEmptyDirs="true">\r
-      <fileset dir="${BUILD_DIR}"/>\r
-    </delete>\r
-  </target>\r
-\r
-  <target name="cleanall">\r
-    <echo message="Removing Object Files and the Executable: ${ToolName}${ext_exe}"/>  \r
-    <delete failonerror="false" quiet="true" includeEmptyDirs="true">\r
-      <fileset dir="${BUILD_DIR}"/>\r
-      <fileset file="${BIN_DIR}/${ToolName}${ext_exe}"/>\r
-      <fileset file="${BIN_DIR}/${ToolName}.pdb"/>\r
-    </delete>\r
-  </target>\r
-\r
-</project>\r