2006-04-22 00:54:32 +02:00
|
|
|
<?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=".">
|
2006-06-30 19:53:27 +02:00
|
|
|
<!-- 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" />
|
|
|
|
-->
|
2006-05-03 21:41:11 +02:00
|
|
|
</target>
|
2006-06-30 19:53:27 +02:00
|
|
|
|
|
|
|
<target name="build">
|
|
|
|
<FrameworkBuild />
|
2006-04-22 00:54:32 +02:00
|
|
|
</target>
|
2006-04-26 00:25:54 +02:00
|
|
|
|
2006-06-30 19:53:27 +02:00
|
|
|
<target name="clean" depends="init">
|
|
|
|
<echo message="Clean all intermidiate files. " />
|
|
|
|
<FrameworkBuild type="clean" />
|
2006-04-22 00:54:32 +02:00
|
|
|
</target>
|
2006-06-30 19:53:27 +02:00
|
|
|
|
|
|
|
<target name="cleanall" depends="init">
|
|
|
|
<echo message="Clean all generated files. " />
|
|
|
|
<FrameworkBuild type="cleanall" />
|
2006-04-22 00:54:32 +02:00
|
|
|
</target>
|
2006-06-30 19:53:27 +02:00
|
|
|
|
2006-04-22 00:54:32 +02:00
|
|
|
</project>
|