]> git.proxmox.com Git - mirror_edk2.git/blob - Tools/Java/Source/Merge/build.xml
fixed bug occurred when new msa file and spd file are in the same directory.
[mirror_edk2.git] / Tools / Java / Source / Merge / 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="Merge" default="Merge" basedir=".">
13 <taskdef resource="net/sf/antcontrib/antlib.xml"/>
14 <property environment="env"/>
15 <property name="WORKSPACE" value="${env.WORKSPACE}"/>
16 <path id="classpath">
17 <fileset dir="${WORKSPACE}/Tools/Jars" includes="*.jar"/>
18 <fileset dir="${env.XMLBEANS_HOME}/lib" includes="*.jar"/>
19 </path>
20 <property name="buildDir" value="build"/>
21 <property name="installLocation" value="${WORKSPACE}/Tools/bin"/>
22 <target name="Merge" depends="install"/>
23 <target name="source">
24 <mkdir dir="${buildDir}"/>
25 <javac srcdir="src" destdir="${buildDir}">
26 <classpath refid="classpath"/>
27 <!-- <compilerarg value="-Xlint"/> -->
28 </javac>
29 </target>
30 <target name="clean">
31 <delete includeemptydirs="true" failonerror="false" quiet="true">
32 <fileset dir="${WORKSPACE}/Tools/Java/Source/Merge" includes="${buildDir}"/>
33 </delete>
34 </target>
35 <target name="cleanall" depends="clean">
36 <echo message="Removing Class Files and the Java Archive: Merge.jar"/>
37 <delete file="${installLocation}/Merge.jar"/>
38 </target>
39 <target name="install" depends="source">
40 <jar destfile="${installLocation}/Merge.jar">
41 <fileset dir="${buildDir}"/>
42 </jar>
43 </target>
44 </project>