]> git.proxmox.com Git - mirror_edk2.git/blob - build.xml
Added CONST for some sting type to follow MWG-0.51. Tracker 34 and 36
[mirror_edk2.git] / build.xml
1 <?xml version="1.0"?>
2 <!--
3 Copyright (c) 2006, Intel Corporation
4 All rights reserved. This program and the accompanying materials
5 are licensed and made available under the terms and conditions of the BSD License
6 which accompanies this distribution. The full text of the license may be found at
7 http://opensource.org/licenses/bsd-license.php
8
9 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
10 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
11 -->
12 <project name="mdk" default="all" basedir=".">
13 <description>
14 This is the highest-level build file.
15 It can build all packages or clean up the build products.
16 </description>
17 <property environment="env"/>
18 <!-- Note: this is an ordered list. The projects have dependencies between them. -->
19 <filelist
20 id="Pkg.Dirs"
21 dir="."
22 files="Tools,MdePkg,EdkModulePkg,EdkNt32Pkg"/>
23
24 <target name="all" description="Build all packages.">
25 <subant target="" inheritall="false">
26 <filelist refid="Pkg.Dirs"/>
27 </subant>
28 </target>
29
30 <target name="clean" description="Remove compile and assembly artifacts.">
31 <subant target="clean" inheritall="false">
32 <filelist refid="Pkg.Dirs"/>
33 </subant>
34 </target>
35
36 <target name="distclean" description="Remove everything not in the distribution.">
37 <subant target="cleanall" inheritall="false">
38 <filelist refid="Pkg.Dirs"/>
39 </subant>
40 </target>
41 </project>