code-srv-test/dita-ot-3.6/docsrc/samples/ant_sample/sample_all.xml
2021-03-23 22:38:58 +00:00

27 lines
911 B
XML

<?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=".">
<import file="sample_html5.xml"/>
<import file="sample_xhtml_plus_css.xml"/>
<import file="sample_eclipsehelp.xml"/>
<import file="sample_htmlhelp.xml"/>
<import file="sample_pdf.xml"/>
<target name="all" depends="samples"/>
<target
name="samples"
description="build the sample output"
depends="samples.html5, samples.xhtml_plus_css, samples.eclipse, samples.htmlhelp, samples.pdf"
/>
<target
name="clean.samples"
description="remove the sample output"
depends="clean.samples.html5, clean.samples.xhtml_plus_css, clean.samples.eclipse, clean.samples.htmlhelp, clean.samples.pdf"
>
<delete dir="${dita.dir}/out/samples"/>
</target>
</project>