summaryrefslogtreecommitdiff
path: root/build.xml
diff options
context:
space:
mode:
authorlhauch <lhauch@6f19259b-4bc3-4df7-8a09-765794883524>2008-12-31 17:20:38 +0000
committerlhauch <lhauch@6f19259b-4bc3-4df7-8a09-765794883524>2008-12-31 17:20:38 +0000
commit303ee61d53cde4c064729709fa890ead41bbe00b (patch)
treee735f17bc5605cca2f532bbd250e60adfdf1839d /build.xml
parent425332ec69170d6f9a43b7a3ac133e62ba6cc116 (diff)
downloadedk2-platforms-303ee61d53cde4c064729709fa890ead41bbe00b.tar.xz
Retiring the ANT/JAVA build and removing the older EDK II files that were required ANT/JAVA.
Last Ant/Java build was r7166 Developers requiring the Java/Ant packages should checkout the branch from: https://edk2.tianocore.org/svn/edk2/branches/AntJava git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@7171 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml52
1 files changed, 0 insertions, 52 deletions
diff --git a/build.xml b/build.xml
deleted file mode 100644
index 8d179d5eef..0000000000
--- a/build.xml
+++ /dev/null
@@ -1,52 +0,0 @@
-<?xml version="1.0"?>
-<!--
-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 name="mdk" default="all" basedir=".">
- <!-- Apply external ANT tasks -->
- <taskdef resource="net/sf/antcontrib/antlib.xml" />
- <taskdef resource="GenBuild.tasks" />
-
- <property environment="env" />
-
- <property name="WORKSPACE_DIR" value="${env.WORKSPACE}" />
- <property name="BUILD_TARGET" value="all"/>
-
- <import file="${WORKSPACE_DIR}/Tools/Conf/BuildMacro.xml" />
-
- <target name="all" depends="init, build" />
-
- <target name="init">
- <if>
- <not>
- <isset property="env.WORKSPACE" />
- </not>
- <then>
- <fail message="WORKSPACE environmental variable not set." />
- </then>
- </if>
- </target>
-
- <target name="build">
- <echo message="TARGET: ${BUILD_TARGET}" level="info"/>
- <FrameworkBuild type="${BUILD_TARGET}"/>
- </target>
-
- <target name="clean" depends="init">
- <echo message="Clean all intermidiate files. " />
- <FrameworkBuild type="clean" />
- </target>
-
- <target name="cleanall" depends="init">
- <echo message="Clean all generated files. " />
- <FrameworkBuild type="cleanall" />
- </target>
-
-</project>