]> git.proxmox.com Git - mirror_edk2.git/blob - build.xml
Updated CpuFlushCacheLine() to return the address flushed.
[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="Issue a warning.">
25 <echo>
26 Top-level builds may not be functional.
27 Please build each package individually from its own directory.
28 If you would like to try anyway, type
29 ant All
30 </echo>
31 </target>
32 <target name="All" description="Build all packages.">
33 <subant target="" inheritall="false">
34 <filelist refid="Pkg.Dirs"/>
35 </subant>
36 </target>
37
38 <target name="clean" description="Remove compile and assembly artifacts.">
39 <subant target="clean" inheritall="false">
40 <filelist refid="Pkg.Dirs"/>
41 </subant>
42 </target>
43
44 <target name="cleanall" description="Remove everything not in the distribution.">
45 <subant target="cleanall" inheritall="false">
46 <filelist refid="Pkg.Dirs"/>
47 </subant>
48 </target>
49 </project>