12e5b6d6dSopenharmony_ci<!--
22e5b6d6dSopenharmony_ci* © 2016 and later: Unicode, Inc. and others.
32e5b6d6dSopenharmony_ci* License & terms of use: http://www.unicode.org/copyright.html
42e5b6d6dSopenharmony_ci*******************************************************************************
52e5b6d6dSopenharmony_ci* Copyright (C) 2009-2015, International Business Machines Corporation and    *
62e5b6d6dSopenharmony_ci* others. All Rights Reserved.                                                *
72e5b6d6dSopenharmony_ci*******************************************************************************
82e5b6d6dSopenharmony_ci-->
92e5b6d6dSopenharmony_ci<project name="build-tools" default="build" basedir=".">
102e5b6d6dSopenharmony_ci    <property file="build-local.properties"/>
112e5b6d6dSopenharmony_ci    <property file="build.properties"/>
122e5b6d6dSopenharmony_ci
132e5b6d6dSopenharmony_ci    <import file="${shared.dir}/build/common-targets.xml"/>
142e5b6d6dSopenharmony_ci
152e5b6d6dSopenharmony_ci    <path id="javac.classpathref">
162e5b6d6dSopenharmony_ci        <path refid="javac.classpathref.${ant.project.name}"/>
172e5b6d6dSopenharmony_ci    </path>
182e5b6d6dSopenharmony_ci    <property name="jar.name" value="icu4j-${ant.project.name}.jar"/>
192e5b6d6dSopenharmony_ci    <property name="src.jar.name" value="icu4j-${ant.project.name}-src.jar"/>
202e5b6d6dSopenharmony_ci
212e5b6d6dSopenharmony_ci    <target name="build" depends="compile, copy, jar" description="Build the project"/>
222e5b6d6dSopenharmony_ci
232e5b6d6dSopenharmony_ci    <target name="build-all" depends="@build-all" description="Build the project including all dependencies"/>
242e5b6d6dSopenharmony_ci
252e5b6d6dSopenharmony_ci    <target name="clean" depends="@clean" description="Clean up the build outputs"/>
262e5b6d6dSopenharmony_ci
272e5b6d6dSopenharmony_ci    <target name="compile" depends="@compile" description="Compile java source files"/>
282e5b6d6dSopenharmony_ci
292e5b6d6dSopenharmony_ci    <target name="copy" depends="@copy" description="Copy non-java runtime files to the project's binary directory"/>
302e5b6d6dSopenharmony_ci
312e5b6d6dSopenharmony_ci    <target name="jar" depends="compile, copy, @jar" description="Create the project's jar file"/>
322e5b6d6dSopenharmony_ci
332e5b6d6dSopenharmony_ci    <target name="src-jar" depends="@src-jar" description="Create the project's source jar file"/>
342e5b6d6dSopenharmony_ci</project>
35