1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
<?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. 20011 All Rights Reserved. -->
<project name="sample_all" default="all" basedir=".">
<property name="args.logdir" value="log"/>
<property name="dita.extname" value=".xml"/>
<import file="sample_xhtml.xml"/>
<import file="sample_tocjs.xml"/>
<import file="sample_eclipsehelp.xml"/>
<import file="sample_javahelp.xml"/>
<import file="sample_htmlhelp.xml"/>
<import file="sample_pdf.xml"/>
<import file="sample_docbook.xml"/>
<import file="sample_odt.xml"/>
<import file="sample_troff.xml"/>
<target name="all" depends="samples"/>
<target name="samples" description="build the sample output"
depends="samples.web, samples.tocjs, samples.eclipse, samples.javahelp, samples.htmlhelp, samples.pdf, samples.docbook, samples.odt, samples.troff"/>
<target name="clean.samples" description="remove the sample output"
depends="clean.samples.web, clean.samples.eclipse, clean.samples.tocjs, clean.samples.javahelp, clean.samples.htmlhelp, clean.samples.pdf">
<delete dir="${dita.dir}/out/samples"/>
</target>
</project>
|