]> git.proxmox.com Git - mirror_edk2.git/blame - Tools/Java/Source/GenBuild/build.xml
Added support for macro/property in tools_def.txt. Now you can define a property...
[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
439656f1 34 <delete includeemptydirs="true" failonerror="false" quiet="true">\r
35 <fileset dir="${WORKSPACE}/Tools/Java/Source/GenBuild" includes="${buildDir}"/>\r
36 </delete>\r
878ddf1f 37 </target>\r
439656f1 38 <target name="cleanall" depends="clean">\r
d7bb5113 39 <echo message="Removing Class Files and the Java Archive: GenBuild.jar"/>\r
617cc72b 40 <delete file="${installLocation}/GenBuild.jar"/>\r
878ddf1f 41 <if>\r
42 <available file="${installLocation}/GenBuild.jar"/>\r
43 <then>\r
44 <echo message="You must manually remove the file: ${installLocation}/GenBuild.jar"/>\r
45 <echo message="Java has already loaded the file, and cannot remove it within ANT!"/>\r
46 </then>\r
47 </if>\r
48 </target>\r
49 <target name="install" depends="source">\r
50 <copy file="GenBuild.tasks" toDir="${buildDir}"/>\r
51 <jar destfile="${installLocation}/GenBuild.jar"\r
52 basedir="${buildDir}"\r
53 includes="**"\r
54 />\r
55 </target>\r
56</project>\r