bbahnsen | 878ddf1 | 2006-04-21 22:54:32 +0000 | [diff] [blame] | 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=".">
|
darylm503 | 7fa7b1f | 2006-04-25 22:25:54 +0000 | [diff] [blame^] | 13 | <description>
|
| 14 | This is the highest-level build file.
|
| 15 | It can build all packages or clean up the build products.
|
| 16 | </description>
|
bbahnsen | 878ddf1 | 2006-04-21 22:54:32 +0000 | [diff] [blame] | 17 | <property environment="env"/>
|
darylm503 | 7fa7b1f | 2006-04-25 22:25:54 +0000 | [diff] [blame^] | 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.">
|
bbahnsen | 878ddf1 | 2006-04-21 22:54:32 +0000 | [diff] [blame] | 25 | <subant target="" inheritall="false">
|
darylm503 | 7fa7b1f | 2006-04-25 22:25:54 +0000 | [diff] [blame^] | 26 | <filelist refid="Pkg.Dirs"/>
|
bbahnsen | 878ddf1 | 2006-04-21 22:54:32 +0000 | [diff] [blame] | 27 | </subant>
|
| 28 | </target>
|
darylm503 | 7fa7b1f | 2006-04-25 22:25:54 +0000 | [diff] [blame^] | 29 |
|
| 30 | <target name="clean" description="Remove compile and assembly artifacts.">
|
bbahnsen | 878ddf1 | 2006-04-21 22:54:32 +0000 | [diff] [blame] | 31 | <subant target="clean" inheritall="false">
|
darylm503 | 7fa7b1f | 2006-04-25 22:25:54 +0000 | [diff] [blame^] | 32 | <filelist refid="Pkg.Dirs"/>
|
bbahnsen | 878ddf1 | 2006-04-21 22:54:32 +0000 | [diff] [blame] | 33 | </subant>
|
| 34 | </target>
|
darylm503 | 7fa7b1f | 2006-04-25 22:25:54 +0000 | [diff] [blame^] | 35 |
|
| 36 | <target name="distclean" description="Remove everything not in the distribution.">
|
bbahnsen | 878ddf1 | 2006-04-21 22:54:32 +0000 | [diff] [blame] | 37 | <subant target="distclean" inheritall="false">
|
darylm503 | 7fa7b1f | 2006-04-25 22:25:54 +0000 | [diff] [blame^] | 38 | <filelist refid="Pkg.Dirs"/>
|
bbahnsen | 878ddf1 | 2006-04-21 22:54:32 +0000 | [diff] [blame] | 39 | </subant>
|
| 40 | </target>
|
| 41 | </project>
|