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