diff options
author | lhauch <lhauch@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-10-10 22:59:11 +0000 |
---|---|---|
committer | lhauch <lhauch@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-10-10 22:59:11 +0000 |
commit | 8973d1764ff732c1ddb8bfecf0f953b927fb66f1 (patch) | |
tree | ff3e827cc64779ec56d8deb2c3d301934b50abaf /Tools/CCode/Source/ZeroDebugData | |
parent | deafd9d18cc2109f2e13703fa727219601566870 (diff) | |
download | edk2-platforms-8973d1764ff732c1ddb8bfecf0f953b927fb66f1.tar.xz |
Fixed the build.xml files so that clean and cleanall actually removes the temporary build directories, rather than leaving all of the intermediate files left lying around.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@1714 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'Tools/CCode/Source/ZeroDebugData')
-rw-r--r-- | Tools/CCode/Source/ZeroDebugData/build.xml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Tools/CCode/Source/ZeroDebugData/build.xml b/Tools/CCode/Source/ZeroDebugData/build.xml index efdf002d96..194afc8709 100644 --- a/Tools/CCode/Source/ZeroDebugData/build.xml +++ b/Tools/CCode/Source/ZeroDebugData/build.xml @@ -61,6 +61,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. <delete failonerror="false" quiet="true" includeEmptyDirs="true">
<fileset dir="${BUILD_DIR}"/>
<fileset file="${BIN_DIR}/${ToolName}${ext_exe}"/>
+ <fileset file="${BIN_DIR}/${ToolName}.pdb"/>
</delete>
</target>
|