sample_all.xml 1.0 KB

123456789101112131415161718192021222324252627
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <!-- This file is part of the DITA Open Toolkit project. See the accompanying LICENSE file for applicable license. -->
  3. <project name="sample_all" default="all" basedir=".">
  4. <property name="args.logdir" value="log"/>
  5. <import file="sample_html5.xml"/>
  6. <import file="sample_xhtml_plus_css.xml"/>
  7. <import file="sample_tocjs.xml"/>
  8. <import file="sample_eclipsehelp.xml"/>
  9. <import file="sample_htmlhelp.xml"/>
  10. <import file="sample_pdf.xml"/>
  11. <import file="sample_troff.xml"/>
  12. <target name="all" depends="samples"/>
  13. <target name="samples" description="build the sample output"
  14. depends="samples.html5, samples.xhtml_plus_css, samples.tocjs, samples.eclipse, samples.htmlhelp, samples.pdf, samples.troff"/>
  15. <target name="clean.samples" description="remove the sample output"
  16. depends="clean.samples.html5, clean.samples.xhtml_plus_css, clean.samples.eclipse, clean.samples.tocjs, clean.samples.htmlhelp, clean.samples.pdf">
  17. <delete dir="${dita.dir}/out/samples"/>
  18. </target>
  19. </project>