summaryrefslogtreecommitdiffstats
path: root/build.xml
blob: 8d179d5eef07269b7d045ad2ac6f3281f20598d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<?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="BUILD_TARGET" value="all"/>
  
  <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>
  </target>
  
  <target name="build">
    <echo message="TARGET: ${BUILD_TARGET}" level="info"/>
    <FrameworkBuild type="${BUILD_TARGET}"/>
  </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>