removed extra taskdef and taskref definitions that caused some warning messages when doing a cleanall

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@1694 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
lhauch
2006-10-09 22:03:52 +00:00
parent 2f8df87003
commit 55ab23ae35
34 changed files with 11 additions and 74 deletions

View File

@@ -35,21 +35,24 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
<fileset dir="${env.XMLBEANS_HOME}/lib" includes="*.jar"/>
</path>
<taskdef classpathref="classpath" resource="GenBuild.tasks" />
<taskdef classpathref="classpath" resource="net/sf/antcontrib/antlib.xml" />
<taskdef classpathref="classpath" resource="cpptasks.tasks"/>
<typedef classpathref="classpath" resource="cpptasks.types"/>
<target name="all" depends="init, Tools">
<target name="all" depends="initArch, init, Tools">
<echo message="The EDK II C Tools build complete!"/>
</target>
<target name="init">
<echo message="EDK C Code Tools, build initialization"/>
<taskdef classpathref="classpath" resource="GenBuild.tasks" />
<taskdef classpathref="classpath" resource="cpptasks.tasks"/>
<typedef classpathref="classpath" resource="cpptasks.types"/>
<mkdir dir="${BIN_DIR}" />
<mkdir dir="${LIB_DIR}" />
</target>
<target name="initArch">
<condition property="HostArch" value="X64">
<os arch="amd64"/>
</condition>
@@ -240,7 +243,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
</if>
</target>
<target name="Libraries" depends="init">
<target name="Libraries" depends="initArch, init">
<subant target="" inheritall="true">
<fileset dir="${PACKAGE_DIR}"
includes="${Libs}"/>
@@ -254,13 +257,13 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
</subant>
</target>
<target name="clean" depends="init">
<target name="clean" depends="initArch">
<subant target="clean" inheritall="true">
<fileset dir="${PACKAGE_DIR}" includes="*/build.xml"/>
</subant>
</target>
<target name="cleanall" depends="init">
<target name="cleanall" depends="initArch">
<subant target="cleanall" inheritall="true">
<fileset dir="${PACKAGE_DIR}" includes="*/build.xml"/>
</subant>