diff options
author | lgao4 <lgao4@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-09-05 13:52:58 +0000 |
---|---|---|
committer | lgao4 <lgao4@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-09-05 13:52:58 +0000 |
commit | aa64626987622a460911d2291fdbe495f8e54d0d (patch) | |
tree | 2b474ed393e0d76db663f9f78923c700ee25d352 /EdkFatBinPkg | |
parent | 7c9e5810d09c0f084096d69c6a3823e685505316 (diff) | |
download | edk2-platforms-aa64626987622a460911d2291fdbe495f8e54d0d.tar.xz |
Add clean and cleanall target for Fat and Logo customized build xml.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@1468 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'EdkFatBinPkg')
-rw-r--r-- | EdkFatBinPkg/Fat_build.xml | 29 |
1 files changed, 18 insertions, 11 deletions
diff --git a/EdkFatBinPkg/Fat_build.xml b/EdkFatBinPkg/Fat_build.xml index 4eb2677c7a..23bcb65c36 100644 --- a/EdkFatBinPkg/Fat_build.xml +++ b/EdkFatBinPkg/Fat_build.xml @@ -19,18 +19,25 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. <!-- All Properties -->
<property name="BASE_NAME" value="Fat" />
- <!-- Default target -->
- <target name="main" depends="libraries, sourcefiles, sections, output" />
- <!-- Compile all dependency Library instances. -->
- <target name="libraries" />
+ <!-- Default target -->
+ <target name="main">
+ <copy file="${MODULE_DIR}/${ARCH}/${BASE_NAME}.FFS"
+ tofile="${BIN_DIR}/${FILE_GUID}-${BASE_NAME}.FFS" />
+ </target>
- <target name="sourcefiles" />
-
- <target name="sections" />
+ <target name="clean">
+ <delete includeemptydirs="true">
+ <fileset dir="${DEST_DIR_OUTPUT}" excludes="*.xml" includes="**/*"/>
+ </delete>
+ </target>
- <target name="output">
- <copy file="${MODULE_DIR}\${ARCH}\${BASE_NAME}.FFS"
- tofile="${BIN_DIR}\${FILE_GUID}-${BASE_NAME}.FFS" />
+ <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>
|