mirror of https://github.com/acidanthera/audk.git
Fix some cleanall issues
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@299 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
c43c67195a
commit
9e792382a8
|
@ -100,7 +100,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|||
|
||||
<target name="cleanall" depends="init">
|
||||
<echo message="Removing Object Files and the Library: CommonTools${ext_static}"/>
|
||||
<delete dir="${BUILD_DIR}">
|
||||
<delete dir="${BUILD_DIR}" failonerror="false">
|
||||
<fileset dir="${LIB_DIR}" includes="CommonTools${ext_static}"/>
|
||||
</delete>
|
||||
</target>
|
||||
|
|
|
@ -113,7 +113,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|||
|
||||
<target name="cleanall">
|
||||
<echo message="Removing Object Files and the Library: CustomizedCompress${ext_static}"/>
|
||||
<delete dir="${BUILD_DIR}">
|
||||
<delete dir="${BUILD_DIR}" failonerror="false">
|
||||
<fileset dir="${LIB_DIR}" includes="CustomizedCompress${ext_static}"/>
|
||||
</delete>
|
||||
</target>
|
||||
|
|
|
@ -126,14 +126,14 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|||
<if>
|
||||
<equals arg1="${ToolChain}" arg2="msvc"/>
|
||||
<then>
|
||||
<exec dir="${basedir}" executable="nmake" failonerror="TRUE">
|
||||
<exec dir="${basedir}" executable="nmake" failonerror="FALSE">
|
||||
<arg line="-f AntlrMS.mak distclean"/>
|
||||
</exec>
|
||||
</then>
|
||||
<elseif>
|
||||
<equals arg1="${ToolChain}" arg2="gcc"/>
|
||||
<then>
|
||||
<exec dir="${basedir}" executable="make" failonerror="TRUE">
|
||||
<exec dir="${basedir}" executable="make" failonerror="FALSE">
|
||||
<arg line="-f makefile distclean"/>
|
||||
</exec>
|
||||
</then>
|
||||
|
|
|
@ -127,14 +127,14 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|||
<if>
|
||||
<equals arg1="${ToolChain}" arg2="msvc"/>
|
||||
<then>
|
||||
<exec dir="${basedir}" executable="nmake" failonerror="TRUE">
|
||||
<exec dir="${basedir}" executable="nmake" failonerror="FALSE">
|
||||
<arg line="-f DlgMS.mak distclean"/>
|
||||
</exec>
|
||||
</then>
|
||||
<elseif>
|
||||
<equals arg1="${ToolChain}" arg2="gcc"/>
|
||||
<then>
|
||||
<exec dir="${basedir}" executable="make" failonerror="TRUE">
|
||||
<exec dir="${basedir}" executable="make" failonerror="FALSE">
|
||||
<arg line="-f makefile distclean"/>
|
||||
</exec>
|
||||
</then>
|
||||
|
|
|
@ -41,7 +41,7 @@ ant All
|
|||
</subant>
|
||||
</target>
|
||||
|
||||
<target name="distclean" description="Remove everything not in the distribution.">
|
||||
<target name="cleanall" description="Remove everything not in the distribution.">
|
||||
<subant target="cleanall" inheritall="false">
|
||||
<filelist refid="Pkg.Dirs"/>
|
||||
</subant>
|
||||
|
|
Loading…
Reference in New Issue