blob: 4dc7ce236c82eeff46eba86c92e25733477007ce [file] [log] [blame]
bbahnsen878ddf12006-04-21 22:54:32 +00001<?xml version="1.0"?>
2<!--
3Copyright (c) 2006, Intel Corporation
4All rights reserved. This program and the accompanying materials
5are licensed and made available under the terms and conditions of the BSD License
6which accompanies this distribution. The full text of the license may be found at
7http://opensource.org/licenses/bsd-license.php
8
9THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
10WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
11-->
12<project name="mdk" default="all" basedir=".">
darylm5037fa7b1f2006-04-25 22:25:54 +000013 <description>
14This is the highest-level build file.
15It can build all packages or clean up the build products.
16 </description>
bbahnsen878ddf12006-04-21 22:54:32 +000017 <property environment="env"/>
darylm5037fa7b1f2006-04-25 22:25:54 +000018 <!-- 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.">
bbahnsen878ddf12006-04-21 22:54:32 +000025 <subant target="" inheritall="false">
darylm5037fa7b1f2006-04-25 22:25:54 +000026 <filelist refid="Pkg.Dirs"/>
bbahnsen878ddf12006-04-21 22:54:32 +000027 </subant>
28 </target>
darylm5037fa7b1f2006-04-25 22:25:54 +000029
30 <target name="clean" description="Remove compile and assembly artifacts.">
bbahnsen878ddf12006-04-21 22:54:32 +000031 <subant target="clean" inheritall="false">
darylm5037fa7b1f2006-04-25 22:25:54 +000032 <filelist refid="Pkg.Dirs"/>
bbahnsen878ddf12006-04-21 22:54:32 +000033 </subant>
34 </target>
darylm5037fa7b1f2006-04-25 22:25:54 +000035
36 <target name="distclean" description="Remove everything not in the distribution.">
bbahnsen878ddf12006-04-21 22:54:32 +000037 <subant target="distclean" inheritall="false">
darylm5037fa7b1f2006-04-25 22:25:54 +000038 <filelist refid="Pkg.Dirs"/>
bbahnsen878ddf12006-04-21 22:54:32 +000039 </subant>
40 </target>
41</project>