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
This commit is contained in:
lgao4
2006-09-05 13:52:58 +00:00
parent 7c9e5810d0
commit aa64626987
2 changed files with 52 additions and 37 deletions

View File

@@ -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" />
<target name="sourcefiles" />
<target name="sections" />
<target name="output">
<copy file="${MODULE_DIR}\${ARCH}\${BASE_NAME}.FFS"
tofile="${BIN_DIR}\${FILE_GUID}-${BASE_NAME}.FFS" />
<!-- Default target -->
<target name="main">
<copy file="${MODULE_DIR}/${ARCH}/${BASE_NAME}.FFS"
tofile="${BIN_DIR}/${FILE_GUID}-${BASE_NAME}.FFS" />
</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>