sample_pdf.xml 815 B

123456789101112131415161718192021
  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_pdf" default="samples.pdf" basedir=".">
  4. <property name="dita.dir" location="${basedir}/../../.."/>
  5. <target name="samples.pdf" description="build the samples as PDF" depends="clean.samples.pdf">
  6. <ant antfile="${dita.dir}/build.xml">
  7. <property name="args.input" location="${dita.dir}/docsrc/samples/sequence.ditamap"/>
  8. <property name="output.dir" location="${dita.dir}/out/samples/pdf"/>
  9. <property name="transtype" value="pdf"/>
  10. </ant>
  11. </target>
  12. <target name="clean.samples.pdf" description="remove the sample PDF output">
  13. <delete dir="${dita.dir}/out/samples/pdf"/>
  14. </target>
  15. </project>