1 | <?xml version="1.0" encoding="UTF-8" ?>
|
---|
2 | <!-- This file is part of the DITA Open Toolkit project hosted on
|
---|
3 | Sourceforge.net. See the accompanying license.txt file for
|
---|
4 | applicable licenses.-->
|
---|
5 | <!-- (c) Copyright IBM Corp. 2004, 2006 All Rights Reserved. -->
|
---|
6 | <project name="sample_javahelp" default="samples.javahelp" basedir=".">
|
---|
7 |
|
---|
8 | <property name="dita.dir" location="${basedir}/../.."/>
|
---|
9 |
|
---|
10 | <target name="samples.javahelp" description="build the samples for JavaHelp" depends="clean.samples.javahelp">
|
---|
11 | <ant antfile="${dita.dir}/build.xml">
|
---|
12 | <property name="args.input" location="${dita.dir}/samples/hierarchy.ditamap"/>
|
---|
13 | <property name="output.dir" location="${dita.dir}/out/samples/javahelp"/>
|
---|
14 | <property name="transtype" value="javahelp"/>
|
---|
15 | </ant>
|
---|
16 | </target>
|
---|
17 |
|
---|
18 | <target name="clean.samples.javahelp" description="remove the sample JavaHelp output">
|
---|
19 | <delete dir="${dita.dir}/out/samples/javahelp"/>
|
---|
20 | </target>
|
---|
21 |
|
---|
22 | </project>
|
---|