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 |
|
---|
7 | <project name="sample_htmlhelp" default="samples.htmlhelp" basedir=".">
|
---|
8 |
|
---|
9 | <property name="dita.dir" location="${basedir}/../.."/>
|
---|
10 |
|
---|
11 | <target name="samples.htmlhelp" description="build the samples for HTMLHelp" depends="clean.samples.htmlhelp">
|
---|
12 | <ant antfile="${dita.dir}/build.xml">
|
---|
13 | <property name="args.input" location="${dita.dir}/samples/hierarchy.ditamap"/>
|
---|
14 | <property name="output.dir" location="${dita.dir}/out/samples/htmlhelp"/>
|
---|
15 | <property name="transtype" value="htmlhelp"/>
|
---|
16 | </ant>
|
---|
17 | </target>
|
---|
18 |
|
---|
19 | <target name="clean.samples.htmlhelp" description="remove the sample HTMLHelp output">
|
---|
20 | <delete dir="${dita.dir}/out/samples/htmlhelp"/>
|
---|
21 | </target>
|
---|
22 |
|
---|
23 | </project>
|
---|