1 | <?xml version="1.0" encoding="UTF-8" ?>
|
---|
2 | <!-- This file is part of the DITA Open Toolkit project hosted on
|
---|
3 | Sourceforge.net. See the accompanying license.txt file for
|
---|
4 | applicable licenses.-->
|
---|
5 | <!-- (c) Copyright IBM Corp. 20011 All Rights Reserved. -->
|
---|
6 | <project name="sample_all" default="all" basedir=".">
|
---|
7 |
|
---|
8 | <property name="args.logdir" value="log"/>
|
---|
9 |
|
---|
10 | <import file="sample_xhtml.xml"/>
|
---|
11 | <import file="sample_tocjs.xml"/>
|
---|
12 | <import file="sample_eclipsehelp.xml"/>
|
---|
13 | <import file="sample_javahelp.xml"/>
|
---|
14 | <import file="sample_htmlhelp.xml"/>
|
---|
15 | <import file="sample_pdf.xml"/>
|
---|
16 | <import file="sample_docbook.xml"/>
|
---|
17 | <import file="sample_odt.xml"/>
|
---|
18 | <import file="sample_troff.xml"/>
|
---|
19 |
|
---|
20 | <target name="all" depends="samples"/>
|
---|
21 |
|
---|
22 | <target name="samples" description="build the sample output"
|
---|
23 | depends="samples.web, samples.tocjs, samples.eclipse, samples.javahelp, samples.htmlhelp, samples.pdf, samples.docbook, samples.odt, samples.troff"/>
|
---|
24 |
|
---|
25 | <target name="clean.samples" description="remove the sample output"
|
---|
26 | depends="clean.samples.web, clean.samples.eclipse, clean.samples.tocjs, clean.samples.javahelp, clean.samples.htmlhelp, clean.samples.pdf">
|
---|
27 | <delete dir="${dita.dir}/out/samples"/>
|
---|
28 | </target>
|
---|
29 |
|
---|
30 | </project>
|
---|