2009-09-21 20:54:55 +00:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
<!--
|
2011-04-07 03:15:38 +00:00
|
|
|
Copyright (c) 2009, 2010, Oracle and/or its affiliates. All rights reserved.
|
2009-09-21 20:54:55 +00:00
|
|
|
DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
|
|
|
|
|
|
This code is free software; you can redistribute it and/or modify it
|
|
|
|
under the terms of the GNU General Public License version 2 only, as
|
2010-05-25 22:52:44 +00:00
|
|
|
published by the Free Software Foundation. Oracle designates this
|
2009-09-21 20:54:55 +00:00
|
|
|
particular file as subject to the "Classpath" exception as provided
|
2010-05-25 22:52:44 +00:00
|
|
|
by Oracle in the LICENSE file that accompanied this code.
|
2009-09-21 20:54:55 +00:00
|
|
|
|
|
|
|
This code is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
|
|
version 2 for more details (a copy is included in the LICENSE file that
|
|
|
|
accompanied this code).
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License version
|
|
|
|
2 along with this work; if not, write to the Free Software Foundation,
|
|
|
|
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
|
2010-05-25 22:52:44 +00:00
|
|
|
Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
|
|
|
or visit www.oracle.com if you need additional information or have any
|
|
|
|
questions.
|
2009-09-21 20:54:55 +00:00
|
|
|
-->
|
|
|
|
|
|
|
|
<project name="jaxp" default="all" basedir=".">
|
|
|
|
|
|
|
|
<!-- For 'ant -p' or 'ant -projecthelp' -->
|
|
|
|
|
|
|
|
<description>
|
|
|
|
Ant build script for the ${ant.project.name} part of the jdk.
|
|
|
|
|
|
|
|
Input Properties: (see build.properties for the ant defaults)
|
|
|
|
bootstrap.dir - dir with lib/javac.jar, added to javac bootclasspath
|
|
|
|
javac.debug - true or false for debug classfiles
|
|
|
|
javac.target - classfile version target
|
|
|
|
javac.source - source version
|
2010-06-17 17:50:14 +00:00
|
|
|
drops.dir - directory that holds source drop bundles
|
|
|
|
allow.download - permit downloads from public url (default is false)
|
|
|
|
(used if bundles not found in drops.dir)
|
|
|
|
|
|
|
|
Run 'make help' for help using the Makefile.
|
2009-09-21 20:54:55 +00:00
|
|
|
</description>
|
|
|
|
|
|
|
|
<!-- Project build properties. -->
|
|
|
|
<property file="build.properties"/>
|
|
|
|
|
2009-10-23 18:05:51 +00:00
|
|
|
<!-- See if drop sources were included. -->
|
|
|
|
<condition property="drop.dir"
|
|
|
|
value="${drop.included.dir}"
|
|
|
|
else="${drop.expanded.dir}">
|
|
|
|
<available file="${drop.included.dir}" type="dir"/>
|
|
|
|
</condition>
|
|
|
|
|
2009-09-21 20:54:55 +00:00
|
|
|
<!-- Get shared targets. -->
|
|
|
|
<import file="build-defs.xml"/>
|
|
|
|
|
|
|
|
<!-- Initialization of directories needed for build. -->
|
|
|
|
<target name="init">
|
|
|
|
<mkdir dir="${build.dir}"/>
|
|
|
|
<mkdir dir="${build.classes.dir}"/>
|
|
|
|
<mkdir dir="${dist.dir}"/>
|
|
|
|
<mkdir dir="${dist.lib.dir}"/>
|
|
|
|
</target>
|
|
|
|
|
|
|
|
<!-- Sanity checks and settings -->
|
|
|
|
<target name="sanity"
|
|
|
|
depends="-javac-jar-exists"
|
|
|
|
description="Display settings of configuration values">
|
|
|
|
<echo message="${sanity.info}"/>
|
|
|
|
</target>
|
|
|
|
|
|
|
|
<!-- Check for bootstrap javac.jar file, warn if missing. -->
|
|
|
|
<condition property="javac.jar.exists">
|
|
|
|
<available file="${javac.jar}" type="file"/>
|
|
|
|
</condition>
|
|
|
|
<target name="-javac-jar-exists"
|
|
|
|
unless="javac.jar.exists">
|
|
|
|
<echo message="WARNING: Cannot find ${javac.jar}"/>
|
|
|
|
</target>
|
|
|
|
|
|
|
|
<!-- Creation of distribution files to jdk build process. -->
|
|
|
|
<target name="dist"
|
|
|
|
depends="init, -init-src-dirs, build, -dist-classes-jar, -dist-src-zip"
|
|
|
|
description="Create all built distribution files.">
|
|
|
|
</target>
|
|
|
|
<target name="-dist-classes-jar-uptodate"
|
|
|
|
depends="init, -init-src-dirs">
|
|
|
|
<condition property="dist.classes.jar.uptodate">
|
|
|
|
<and>
|
|
|
|
<available file="${dist.classes.jar}" type="file"/>
|
|
|
|
<uptodate targetfile="${dist.classes.jar}">
|
|
|
|
<srcfiles dir="${build.classes.dir}" includes="**"/>
|
|
|
|
</uptodate>
|
|
|
|
</and>
|
|
|
|
</condition>
|
|
|
|
</target>
|
|
|
|
<target name="-dist-classes-jar"
|
|
|
|
depends="init, -init-src-dirs, -dist-classes-jar-uptodate"
|
|
|
|
unless="dist.classes.jar.uptodate">
|
|
|
|
<delete file="${dist.classes.jar}"/>
|
|
|
|
<jar file="${dist.classes.jar}" basedir="${build.classes.dir}"/>
|
|
|
|
</target>
|
|
|
|
|
2010-06-17 17:50:14 +00:00
|
|
|
<target name="-build-setup"
|
|
|
|
depends="init, -init-src-dirs, -drop-build-setup">
|
2009-09-21 20:54:55 +00:00
|
|
|
</target>
|
|
|
|
|
|
|
|
<!-- Build (compilation) of sources to class files. -->
|
|
|
|
<target name="build"
|
2010-06-17 17:50:14 +00:00
|
|
|
depends="compile, -build-setup">
|
|
|
|
</target>
|
|
|
|
<target name="compile"
|
|
|
|
depends="init, -init-src-dirs">
|
|
|
|
<mkdir dir="${build.classes.dir}"/>
|
2009-11-11 19:17:51 +00:00
|
|
|
<javac
|
2010-06-17 17:50:14 +00:00
|
|
|
includeAntRuntime="false"
|
|
|
|
classpath="${build.classes.dir}:${tools.jar}"
|
2009-11-11 19:17:51 +00:00
|
|
|
fork="true"
|
2009-09-21 20:54:55 +00:00
|
|
|
destdir="${build.classes.dir}"
|
|
|
|
memoryInitialSize="${javac.memoryInitialSize}"
|
|
|
|
memoryMaximumSize="${javac.memoryMaximumSize}"
|
|
|
|
source="${javac.source}"
|
|
|
|
debug="${javac.debug}"
|
|
|
|
target="${javac.target}">
|
|
|
|
<compilerarg value="-J-Xbootclasspath/p:${javac.jar}"/>
|
|
|
|
<compilerarg line="${javac.version.opt} ${javac.lint.opts} ${javac.no.jdk.warnings}"/>
|
|
|
|
<src refid="src.dir.id"/>
|
|
|
|
</javac>
|
|
|
|
</target>
|
|
|
|
|
|
|
|
<!-- Test. (FIXME: Need to know how to run tests.) -->
|
|
|
|
<target name="test"
|
|
|
|
depends="init, -init-src-dirs, dist">
|
|
|
|
<echo message="FIXME: How do you run the tests"/>
|
|
|
|
</target>
|
|
|
|
|
|
|
|
<!-- Populate source area if needed. -->
|
|
|
|
<target name="source"
|
|
|
|
depends="init, -init-src-dirs"
|
|
|
|
description="Populate all source file directories">
|
|
|
|
</target>
|
|
|
|
|
2009-10-23 18:05:51 +00:00
|
|
|
<!-- Populate drop_included area. -->
|
|
|
|
<target name="drop_included"
|
|
|
|
depends="clobber"
|
|
|
|
description="Populate all source file directories">
|
|
|
|
<delete dir="${drop.included.dir}"/>
|
|
|
|
<antcall target="source"/>
|
|
|
|
<move file="${drop.expanded.dir}" tofile="${drop.included.dir}"/>
|
|
|
|
<delete dir="${drop.included.dir}/bundles"/>
|
|
|
|
</target>
|
|
|
|
|
2009-09-21 20:54:55 +00:00
|
|
|
<!-- Clean up compiled files. -->
|
|
|
|
<target name="clean"
|
|
|
|
description="Delete all generated files">
|
|
|
|
<delete dir="${build.dir}"/>
|
|
|
|
<delete dir="${dist.dir}"/>
|
|
|
|
</target>
|
|
|
|
|
|
|
|
<!-- Clean up compiled files and all imported source files. -->
|
|
|
|
<target name="clobber"
|
|
|
|
depends="clean"
|
|
|
|
description="Delete all generated files, including imported sources">
|
2009-10-23 18:05:51 +00:00
|
|
|
<delete dir="${drop.expanded.dir}"/>
|
2009-09-21 20:54:55 +00:00
|
|
|
</target>
|
|
|
|
|
|
|
|
<target name="-banner">
|
|
|
|
<echo message="+---------------------------------------+"/>
|
|
|
|
<echo message="+ Starting ant project ${ant.project.name} +"/>
|
|
|
|
<echo message="+---------------------------------------+"/>
|
|
|
|
</target>
|
|
|
|
|
|
|
|
<!-- Do everything but test. -->
|
|
|
|
<target name="all"
|
|
|
|
depends="-banner, sanity, dist"
|
|
|
|
description="Build everything.">
|
|
|
|
<echo message="+---------------------------------------+"/>
|
|
|
|
<echo message="+ Finishing ant project ${ant.project.name}"/>
|
|
|
|
<echo message="+---------------------------------------+"/>
|
|
|
|
</target>
|
|
|
|
|
|
|
|
</project>
|