]> git.proxmox.com Git - mirror_edk2.git/blobdiff - build.xml
Retiring the ANT/JAVA build and removing the older EDK II files that were required...
[mirror_edk2.git] / build.xml
diff --git a/build.xml b/build.xml
deleted file mode 100644 (file)
index 8d179d5..0000000
--- a/build.xml
+++ /dev/null
@@ -1,52 +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 name="mdk" default="all" basedir=".">\r
-  <!-- Apply external ANT tasks -->\r
-  <taskdef resource="net/sf/antcontrib/antlib.xml" />\r
-  <taskdef resource="GenBuild.tasks" />\r
-  \r
-  <property environment="env" />\r
-  \r
-  <property name="WORKSPACE_DIR" value="${env.WORKSPACE}" />\r
-  <property name="BUILD_TARGET" value="all"/>\r
-  \r
-  <import file="${WORKSPACE_DIR}/Tools/Conf/BuildMacro.xml" />\r
-  \r
-  <target name="all" depends="init, build" />\r
-  \r
-  <target name="init">\r
-    <if>\r
-      <not>\r
-        <isset property="env.WORKSPACE" />\r
-      </not>\r
-      <then>\r
-        <fail message="WORKSPACE environmental variable not set." />\r
-      </then>\r
-    </if>\r
-  </target>\r
-  \r
-  <target name="build">\r
-    <echo message="TARGET: ${BUILD_TARGET}" level="info"/>\r
-    <FrameworkBuild type="${BUILD_TARGET}"/>\r
-  </target>\r
-\r
-  <target name="clean" depends="init">\r
-    <echo message="Clean all intermidiate files. " />\r
-    <FrameworkBuild type="clean" />\r
-  </target>\r
-  \r
-  <target name="cleanall" depends="init">\r
-    <echo message="Clean all generated files. " />\r
-    <FrameworkBuild type="cleanall" />\r
-  </target>\r
-  \r
-</project>\r