[EDKT156][Closed] Re-ordered the build.xml files in the clean and cleanall targets. For cleanall, some of the Jar files could not be deleted if the TianoTools cleanall target had been executed first - this is due to the classpath being set in the TianoTools/build.xml file. All jar files will now be deleted when executing the cleanall target for build.xml in the Tools directory.

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@1207 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
lhauch 2006-08-07 20:01:52 +00:00
parent 7035cc32f9
commit 7f762c2d41
1 changed files with 17 additions and 17 deletions

View File

@ -89,31 +89,31 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
<subant target="clean" inheritall="false">
<filelist dir="."
files="
Source/FrameworkWizard/build.xml
Source/Cpptasks/build.xml
Source/FrameworkTasks/build.xml
Source/GenBuild/build.xml
Source/PcdTools/build.xml
Source/Common/build.xml
Source/SurfaceArea/build.xml
Source/TianoTools/build.xml
Source/FrameworkWizard/build.xml
Source/Cpptasks/build.xml
Source/FrameworkTasks/build.xml
Source/GenBuild/build.xml
Source/PcdTools/build.xml
Source/Common/build.xml
Source/SurfaceArea/build.xml
"/>
"/>
</subant>
</target>
<target name="cleanall">
<subant target="cleanall" inheritall="false">
<subant target="cleanall" inheritall="true">
<filelist dir="."
files="
Source/FrameworkWizard/build.xml
Source/Cpptasks/build.xml
Source/FrameworkTasks/build.xml
Source/GenBuild/build.xml
Source/PcdTools/build.xml
Source/Common/build.xml
Source/SurfaceArea/build.xml
Source/TianoTools/build.xml
Source/FrameworkWizard/build.xml
Source/Cpptasks/build.xml
Source/FrameworkTasks/build.xml
Source/GenBuild/build.xml
Source/PcdTools/build.xml
Source/Common/build.xml
Source/SurfaceArea/build.xml
"/>
"/>
</subant>
</target>
</project>