| 123456789101112131415161718192021222324252627 |
- <?xml version="1.0" encoding="UTF-8" ?>
- <!-- This file is part of the DITA Open Toolkit project. See the accompanying LICENSE file for applicable license. -->
- <project name="sample_all" default="all" basedir=".">
- <property name="args.logdir" value="log"/>
- <import file="sample_html5.xml"/>
- <import file="sample_xhtml_plus_css.xml"/>
- <import file="sample_tocjs.xml"/>
- <import file="sample_eclipsehelp.xml"/>
- <import file="sample_htmlhelp.xml"/>
- <import file="sample_pdf.xml"/>
- <import file="sample_troff.xml"/>
- <target name="all" depends="samples"/>
- <target name="samples" description="build the sample output"
- depends="samples.html5, samples.xhtml_plus_css, samples.tocjs, samples.eclipse, samples.htmlhelp, samples.pdf, samples.troff"/>
- <target name="clean.samples" description="remove the sample output"
- depends="clean.samples.html5, clean.samples.xhtml_plus_css, clean.samples.eclipse, clean.samples.tocjs, clean.samples.htmlhelp, clean.samples.pdf">
- <delete dir="${dita.dir}/out/samples"/>
- </target>
- </project>
|