Fix some cleanall issues
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@300 6f19259b-4bc3-4df7-8a09-765794883524
diff --git a/Tools/Source/TianoTools/Pccts/antlr/build.xml b/Tools/Source/TianoTools/Pccts/antlr/build.xml
index 3870cd3..6f30ecb 100644
--- a/Tools/Source/TianoTools/Pccts/antlr/build.xml
+++ b/Tools/Source/TianoTools/Pccts/antlr/build.xml
@@ -127,14 +127,14 @@
<equals arg1="${ToolChain}" arg2="msvc"/>
<then>
<exec dir="${basedir}" executable="nmake" failonerror="FALSE">
- <arg line="-f AntlrMS.mak distclean"/>
+ <arg line="-f AntlrMS.mak clean"/>
</exec>
</then>
<elseif>
<equals arg1="${ToolChain}" arg2="gcc"/>
<then>
<exec dir="${basedir}" executable="make" failonerror="FALSE">
- <arg line="-f makefile distclean"/>
+ <arg line="-f makefile clean"/>
</exec>
</then>
</elseif>
diff --git a/Tools/Source/TianoTools/Pccts/dlg/build.xml b/Tools/Source/TianoTools/Pccts/dlg/build.xml
index 2f030d2..d926f25 100644
--- a/Tools/Source/TianoTools/Pccts/dlg/build.xml
+++ b/Tools/Source/TianoTools/Pccts/dlg/build.xml
@@ -128,14 +128,14 @@
<equals arg1="${ToolChain}" arg2="msvc"/>
<then>
<exec dir="${basedir}" executable="nmake" failonerror="FALSE">
- <arg line="-f DlgMS.mak distclean"/>
+ <arg line="-f DlgMS.mak clean"/>
</exec>
</then>
<elseif>
<equals arg1="${ToolChain}" arg2="gcc"/>
<then>
<exec dir="${basedir}" executable="make" failonerror="FALSE">
- <arg line="-f makefile distclean"/>
+ <arg line="-f makefile clean"/>
</exec>
</then>
</elseif>