mirror of
https://github.com/acidanthera/audk.git
synced 2025-07-27 07:34:06 +02:00
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">
|
<target name="cleanall" depends="init">
|
||||||
<echo message="Removing Object Files and the Library: CommonTools${ext_static}"/>
|
<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}"/>
|
<fileset dir="${LIB_DIR}" includes="CommonTools${ext_static}"/>
|
||||||
</delete>
|
</delete>
|
||||||
</target>
|
</target>
|
||||||
|
@ -113,7 +113,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|||||||
|
|
||||||
<target name="cleanall">
|
<target name="cleanall">
|
||||||
<echo message="Removing Object Files and the Library: CustomizedCompress${ext_static}"/>
|
<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}"/>
|
<fileset dir="${LIB_DIR}" includes="CustomizedCompress${ext_static}"/>
|
||||||
</delete>
|
</delete>
|
||||||
</target>
|
</target>
|
||||||
|
@ -126,14 +126,14 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|||||||
<if>
|
<if>
|
||||||
<equals arg1="${ToolChain}" arg2="msvc"/>
|
<equals arg1="${ToolChain}" arg2="msvc"/>
|
||||||
<then>
|
<then>
|
||||||
<exec dir="${basedir}" executable="nmake" failonerror="TRUE">
|
<exec dir="${basedir}" executable="nmake" failonerror="FALSE">
|
||||||
<arg line="-f AntlrMS.mak distclean"/>
|
<arg line="-f AntlrMS.mak distclean"/>
|
||||||
</exec>
|
</exec>
|
||||||
</then>
|
</then>
|
||||||
<elseif>
|
<elseif>
|
||||||
<equals arg1="${ToolChain}" arg2="gcc"/>
|
<equals arg1="${ToolChain}" arg2="gcc"/>
|
||||||
<then>
|
<then>
|
||||||
<exec dir="${basedir}" executable="make" failonerror="TRUE">
|
<exec dir="${basedir}" executable="make" failonerror="FALSE">
|
||||||
<arg line="-f makefile distclean"/>
|
<arg line="-f makefile distclean"/>
|
||||||
</exec>
|
</exec>
|
||||||
</then>
|
</then>
|
||||||
|
@ -127,14 +127,14 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|||||||
<if>
|
<if>
|
||||||
<equals arg1="${ToolChain}" arg2="msvc"/>
|
<equals arg1="${ToolChain}" arg2="msvc"/>
|
||||||
<then>
|
<then>
|
||||||
<exec dir="${basedir}" executable="nmake" failonerror="TRUE">
|
<exec dir="${basedir}" executable="nmake" failonerror="FALSE">
|
||||||
<arg line="-f DlgMS.mak distclean"/>
|
<arg line="-f DlgMS.mak distclean"/>
|
||||||
</exec>
|
</exec>
|
||||||
</then>
|
</then>
|
||||||
<elseif>
|
<elseif>
|
||||||
<equals arg1="${ToolChain}" arg2="gcc"/>
|
<equals arg1="${ToolChain}" arg2="gcc"/>
|
||||||
<then>
|
<then>
|
||||||
<exec dir="${basedir}" executable="make" failonerror="TRUE">
|
<exec dir="${basedir}" executable="make" failonerror="FALSE">
|
||||||
<arg line="-f makefile distclean"/>
|
<arg line="-f makefile distclean"/>
|
||||||
</exec>
|
</exec>
|
||||||
</then>
|
</then>
|
||||||
|
@ -41,7 +41,7 @@ ant All
|
|||||||
</subant>
|
</subant>
|
||||||
</target>
|
</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">
|
<subant target="cleanall" inheritall="false">
|
||||||
<filelist refid="Pkg.Dirs"/>
|
<filelist refid="Pkg.Dirs"/>
|
||||||
</subant>
|
</subant>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user