Change to new XML Schema.

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@679 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
wuyizhong 2006-06-30 17:53:27 +00:00
parent 2d52720093
commit 5d863867e9
2 changed files with 38 additions and 32 deletions

View File

@ -10,40 +10,46 @@ THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
--> -->
<project name="mdk" default="all" basedir="."> <project name="mdk" default="all" basedir=".">
<description> <!-- Apply external ANT tasks -->
This is the highest-level build file. <taskdef resource="net/sf/antcontrib/antlib.xml" />
It can build all packages or clean up the build products. <taskdef resource="GenBuild.tasks" />
</description>
<property environment="env"/>
<!-- Note: this is an ordered list. The projects have dependencies between them. -->
<filelist
id="Pkg.Dirs"
dir="."
files="Tools,MdePkg,EdkModulePkg,EdkNt32Pkg"/>
<target name="all" description="Issue a warning."> <property environment="env" />
<echo>
Top-level builds may not be functional. <property name="WORKSPACE_DIR" value="${env.WORKSPACE}" />
Please build each package individually from its own directory.
If you would like to try anyway, type <!--property name="COMMON_FILE" value="${WORKSPACE_DIR}/Tools/Conf/Common.xml" /-->
ant All
</echo> <import file="${WORKSPACE_DIR}/Tools/Conf/BuildMacro.xml" />
</target>
<target name="All" description="Build all packages."> <target name="all" depends="init, build" />
<subant target="" inheritall="false">
<filelist refid="Pkg.Dirs"/> <target name="init">
</subant> <if>
<not>
<isset property="env.WORKSPACE" />
</not>
<then>
<fail message="WORKSPACE environmental variable not set." />
</then>
</if>
<!--
<ToolChainSetup confPath="${WORKSPACE_DIR}/Tools/Conf" />
-->
</target> </target>
<target name="clean" description="Remove compile and assembly artifacts."> <target name="build">
<subant target="clean" inheritall="false"> <FrameworkBuild />
<filelist refid="Pkg.Dirs"/>
</subant>
</target> </target>
<target name="cleanall" description="Remove everything not in the distribution."> <target name="clean" depends="init">
<subant target="cleanall" inheritall="false"> <echo message="Clean all intermidiate files. " />
<filelist refid="Pkg.Dirs"/> <FrameworkBuild type="clean" />
</subant>
</target> </target>
<target name="cleanall" depends="init">
<echo message="Clean all generated files. " />
<FrameworkBuild type="cleanall" />
</target>
</project> </project>

View File

@ -106,7 +106,7 @@ echo.
@REM Java Programs can use it. @REM Java Programs can use it.
@REM It needs the XMLBEANS libraries in order to compile. @REM It needs the XMLBEANS libraries in order to compile.
@REM @REM
set CLASSPATH=%XMLBEANS_HOME%\lib\jsr173_1.0_api.jar;%XMLBEANS_HOME%\lib\xbean.jar set CLASSPATH=.;%XMLBEANS_HOME%\lib\jsr173_1.0_api.jar;%XMLBEANS_HOME%\lib\xbean.jar
set CLASSPATH=%CLASSPATH%;%XMLBEANS_HOME%\lib\xbean_xpath.jar;%XMLBEANS_HOME%\lib\xmlpublic.jar set CLASSPATH=%CLASSPATH%;%XMLBEANS_HOME%\lib\xbean_xpath.jar;%XMLBEANS_HOME%\lib\xmlpublic.jar
set CLASSPATH=%CLASSPATH%;%XMLBEANS_HOME%\lib\saxon8.jar;%XMLBEANS_HOME%\lib\resolver.jar set CLASSPATH=%CLASSPATH%;%XMLBEANS_HOME%\lib\saxon8.jar;%XMLBEANS_HOME%\lib\resolver.jar