]> git.proxmox.com Git - mirror_edk2.git/blob - Tools/Source/Prototype/build.xml
de4cde92488fdd4b24ee3de0e5868cb3867daf3a
[mirror_edk2.git] / Tools / Source / Prototype / 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="proto" default="all">
13 <taskdef resource="net/sf/antcontrib/antlib.xml"/>
14 <target name="all">
15 <javac srcdir=".">
16 <compilerarg value="-Xlint"/>
17 </javac>
18 <jar destfile="Prototype.jar"
19 basedir="."
20 includes="*.class"
21 excludes="**/Not this one.class"
22 />
23 </target>
24
25 <target name="clean"/>
26 <target name="cleanall"/>
27 </project>