c74c7a43 |
1 | <?xml version="1.0"?>\r |
2 | <!--\r |
3 | Copyright (c) 2006, Intel Corporation\r |
4 | All rights reserved. This program and the accompanying materials\r |
5 | are licensed and made available under the terms and conditions of the BSD License\r |
6 | which accompanies this distribution. The full text of the license may be found at\r |
7 | http://opensource.org/licenses/bsd-license.php\r |
8 | \r |
9 | THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r |
10 | WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r |
11 | -->\r |
12 | <project name="ContextTool" default="ContextTool" basedir=".">\r |
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 |
19 | <fileset dir="${WORKSPACE}/Tools/Jars" includes="Common.jar"/>\r |
20 | <fileset dir="${env.XMLBEANS_HOME}/lib" includes="*.jar"/>\r |
21 | </path>\r |
22 | <property name="buildDir" value="build"/>\r |
23 | <property name="installLocation" value="${WORKSPACE}/Tools/Jars"/>\r |
24 | <target name="ContextTool" depends="install"/>\r |
25 | <target name="source">\r |
26 | <mkdir dir="${buildDir}"/>\r |
27 | <javac srcdir="." destdir="${buildDir}">\r |
28 | <classpath refid="classpath"/>\r |
29 | <compilerarg value="-Xlint"/>\r |
30 | </javac>\r |
31 | </target>\r |
32 | <target name="clean">\r |
439656f1 |
33 | <delete includeemptydirs="true" failonerror="false" quiet="true">\r |
34 | <fileset dir="${WORKSPACE}/Tools/Java/Source/ContextTool" includes="${buildDir}"/>\r |
35 | </delete>\r |
c74c7a43 |
36 | </target>\r |
439656f1 |
37 | <target name="cleanall" depends="clean">\r |
d7bb5113 |
38 | <echo message="Removing Class Files and the Java Archive: ContextTool.jar"/>\r |
c74c7a43 |
39 | <delete file="${installLocation}/ContextTool.jar"/>\r |
40 | <if>\r |
41 | <available file="${installLocation}/ContextTool.jar"/>\r |
42 | <then>\r |
43 | <echo message="You must manually remove the file: ${installLocation}/ContextTool.jar"/>\r |
44 | <echo message="Java has already loaded the file, and cannot remove it within ANT!"/>\r |
45 | </then>\r |
46 | </if>\r |
47 | </target>\r |
48 | <target name="install" depends="source">\r |
49 | <jar destfile="${installLocation}/ContextTool.jar"\r |
50 | basedir="${buildDir}"\r |
51 | includes="**"\r |
52 | />\r |
53 | </target>\r |
54 | </project>\r |
55 | \r |