]> git.proxmox.com Git - mirror_edk2.git/blame - Tools/Java/Source/GenBuild/build.xml
1. Update to just keep several line JAVA related msg; 2. Remove file PropertyManager...
[mirror_edk2.git] / Tools / Java / Source / GenBuild / build.xml
CommitLineData
878ddf1f 1<?xml version="1.0"?>\r
2<!--\r
3Copyright (c) 2006, Intel Corporation\r
4All rights reserved. This program and the accompanying materials\r
5are licensed and made available under the terms and conditions of the BSD License\r
6which accompanies this distribution. The full text of the license may be found at\r
7http://opensource.org/licenses/bsd-license.php\r
8\r
9THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
10WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
11-->\r
a7828769 12<project name="GenBuild" default="GenBuild" basedir=".">\r
878ddf1f 13\r
14 <taskdef resource="net/sf/antcontrib/antlib.xml"/>\r
15 <property environment="env"/>\r
16 <property name="WORKSPACE" value="${env.WORKSPACE}"/>\r
17 <path id="classpath">\r
18 <fileset dir="${WORKSPACE}/Tools/Jars" includes="SurfaceArea.jar"/>\r
b9546cc8 19 <fileset dir="${WORKSPACE}/Tools/Jars" includes="Common.jar"/>\r
d14ebb43 20 <fileset dir="${WORKSPACE}/Tools/Jars" includes="PcdTools.jar"/>\r
19924945 21 <fileset dir="${env.XMLBEANS_HOME}/lib" includes="*.jar"/>\r
878ddf1f 22 </path>\r
23 <property name="buildDir" value="build"/>\r
24 <property name="installLocation" value="${WORKSPACE}/Tools/Jars"/>\r
a7828769 25 <target name="GenBuild" depends="install"/>\r
878ddf1f 26 <target name="source">\r
27 <mkdir dir="${buildDir}"/>\r
28 <javac srcdir="." destdir="${buildDir}">\r
29 <classpath refid="classpath"/>\r
30 <compilerarg value="-Xlint"/>\r
31 </javac>\r
32 </target>\r
33 <target name="clean">\r
34 <delete dir="${buildDir}"/>\r
35 </target>\r
36 <target name="cleanall">\r
37 <delete dir="${buildDir}"/>\r
617cc72b 38 <delete file="${installLocation}/GenBuild.jar"/>\r
878ddf1f 39 <if>\r
40 <available file="${installLocation}/GenBuild.jar"/>\r
41 <then>\r
42 <echo message="You must manually remove the file: ${installLocation}/GenBuild.jar"/>\r
43 <echo message="Java has already loaded the file, and cannot remove it within ANT!"/>\r
44 </then>\r
45 </if>\r
46 </target>\r
47 <target name="install" depends="source">\r
48 <copy file="GenBuild.tasks" toDir="${buildDir}"/>\r
49 <jar destfile="${installLocation}/GenBuild.jar"\r
50 basedir="${buildDir}"\r
51 includes="**"\r
52 />\r
53 </target>\r
54</project>\r