summaryrefslogtreecommitdiff
path: root/EdkFatBinPkg/Fat_build.xml
diff options
context:
space:
mode:
Diffstat (limited to 'EdkFatBinPkg/Fat_build.xml')
-rw-r--r--EdkFatBinPkg/Fat_build.xml52
1 files changed, 0 insertions, 52 deletions
diff --git a/EdkFatBinPkg/Fat_build.xml b/EdkFatBinPkg/Fat_build.xml
deleted file mode 100644
index 74695b83f4..0000000000
--- a/EdkFatBinPkg/Fat_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="Fat" default="main" basedir="." >
- <!-- Apply external ANT task -->
- <taskdef resource="frameworktasks.tasks" />
- <taskdef resource="cpptasks.tasks" />
- <typedef resource="cpptasks.types" />
- <taskdef resource="net/sf/antcontrib/antlib.xml" />
- <property environment="env" />
- <!-- All Properties -->
- <property name="BASE_NAME" value="Fat" />
-
- <!-- Default target -->
- <target name="main">
- <OnDependency>
- <sourcefiles>
- <file name="${MODULE_DIR}/${ARCH}/${BASE_NAME}.FFS"/>
- </sourcefiles>
- <targetfiles>
- <file name="${BIN_DIR}/${FILE_GUID}-${BASE_NAME}.FFS"/>
- </targetfiles>
- <sequential>
- <copy file="${MODULE_DIR}/${ARCH}/${BASE_NAME}.FFS" tofile="${BIN_DIR}/${FILE_GUID}-${BASE_NAME}.FFS" />
- </sequential>
- </OnDependency>
- </target>
-
- <target name="clean">
- <delete includeemptydirs="true">
- <fileset dir="${DEST_DIR_OUTPUT}" excludes="*.xml" includes="**/*"/>
- </delete>
- </target>
-
- <target name="cleanall">
- <delete includeemptydirs="true">
- <fileset dir="${DEST_DIR_OUTPUT}" excludes="*.xml" includes="**/*"/>
- </delete>
- <delete includeemptydirs="true">
- <fileset dir="${DEST_DIR_DEBUG}" includes="**/*"/>
- </delete>
- </target>
-
-</project>