audk/build.xml
wuyizhong 5d863867e9 Change to new XML Schema.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@679 6f19259b-4bc3-4df7-8a09-765794883524
2006-06-30 17:53:27 +00:00

56 lines
1.7 KiB
XML

<?xml version="1.0"?>
<!--
Copyright (c) 2006, Intel Corporation
All rights reserved. This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License
which accompanies this distribution. The full text of the license may be found at
http://opensource.org/licenses/bsd-license.php
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
-->
<project name="mdk" default="all" basedir=".">
<!-- Apply external ANT tasks -->
<taskdef resource="net/sf/antcontrib/antlib.xml" />
<taskdef resource="GenBuild.tasks" />
<property environment="env" />
<property name="WORKSPACE_DIR" value="${env.WORKSPACE}" />
<!--property name="COMMON_FILE" value="${WORKSPACE_DIR}/Tools/Conf/Common.xml" /-->
<import file="${WORKSPACE_DIR}/Tools/Conf/BuildMacro.xml" />
<target name="all" depends="init, build" />
<target name="init">
<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 name="build">
<FrameworkBuild />
</target>
<target name="clean" depends="init">
<echo message="Clean all intermidiate files. " />
<FrameworkBuild type="clean" />
</target>
<target name="cleanall" depends="init">
<echo message="Clean all generated files. " />
<FrameworkBuild type="cleanall" />
</target>
</project>