]> git.proxmox.com Git - mirror_edk2.git/blob - Tools/Java/Source/MigrationTools/build.xml
Standardized property name WORKSPACE and fixed cleanall messages.
[mirror_edk2.git] / Tools / Java / Source / MigrationTools / 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="MigrationTools" default="MigrationTools" basedir=".">
13
14 <taskdef resource="net/sf/antcontrib/antlib.xml"/>
15 <property environment="env"/>
16 <property name="WORKSPACE" value="${env.WORKSPACE}"/>
17 <path id="classpath">
18 <fileset dir="${WORKSPACE}/Tools/Jars" includes="*.jar"/>
19 <fileset dir="${env.XMLBEANS_HOME}/lib" includes="*.jar"/>
20 </path>
21 <property name="buildDir" value="build"/>
22 <property name="installLocation" value="${WORKSPACE}/Tools/bin"/>
23 <target name="MigrationTools" depends="install"/>
24 <target name="source">
25 <mkdir dir="${buildDir}"/>
26 <javac srcdir="." destdir="${buildDir}">
27 <classpath refid="classpath"/>
28 <compilerarg value="-Xlint"/>
29 </javac>
30 </target>
31 <target name="clean">
32 <delete includeemptydirs="true" failonerror="false" quiet="true">
33 <fileset dir="${WORKSPACE}/Tools/Java/Source/MigrationTools" includes="${buildDir}"/>
34 </delete>
35 </target>
36 <target name="cleanall" depends="clean">
37 <echo message="Removing Class Files and the Java Archive: MigrationTools.jar"/>
38 <delete file="${installLocation}/MigrationTools.jar"/>
39 <if>
40 <available file="${installLocation}/MigrationTools.jar"/>
41 <then>
42 <echo message="You must manually remove the file: ${installLocation}/MigrationTools.jar"/>
43 <echo message="Java has already loaded the file, and cannot remove it within ANT!"/>
44 </then>
45 </if>
46 </target>
47 <target name="install" depends="source">
48 <jar destfile="${installLocation}/MigrationTools.jar"
49 basedir="${buildDir}"
50 includes="**"
51 manifest="MANIFEST.MF"
52 />
53 </target>
54 </project>