878ddf1f |
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 |
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 |
19924945 |
20 | <fileset dir="${env.XMLBEANS_HOME}/lib" includes="*.jar"/>\r |
878ddf1f |
21 | </path>\r |
22 | <property name="buildDir" value="build"/>\r |
23 | <property name="installLocation" value="${WORKSPACE}/Tools/Jars"/>\r |
a7828769 |
24 | <target name="GenBuild" depends="install"/>\r |
878ddf1f |
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 |
33 | <delete dir="${buildDir}"/>\r |
34 | </target>\r |
35 | <target name="cleanall">\r |
36 | <delete dir="${buildDir}"/>\r |
617cc72b |
37 | <delete file="${installLocation}/GenBuild.jar"/>\r |
878ddf1f |
38 | <if>\r |
39 | <available file="${installLocation}/GenBuild.jar"/>\r |
40 | <then>\r |
41 | <echo message="You must manually remove the file: ${installLocation}/GenBuild.jar"/>\r |
42 | <echo message="Java has already loaded the file, and cannot remove it within ANT!"/>\r |
43 | </then>\r |
44 | </if>\r |
45 | </target>\r |
46 | <target name="install" depends="source">\r |
47 | <copy file="GenBuild.tasks" toDir="${buildDir}"/>\r |
48 | <jar destfile="${installLocation}/GenBuild.jar"\r |
49 | basedir="${buildDir}"\r |
50 | includes="**"\r |
51 | />\r |
52 | </target>\r |
53 | </project>\r |