Skip to content

Commit d6ec835

Browse files
author
dlsmith
committed
Added resource copying to build process
git-svn-id: file:///tmp/test-svn/trunk@3482 fe72c1cf-3628-48e9-8b72-1c46755d3cff
1 parent a55412e commit d6ec835

File tree

1 file changed

+5
-12
lines changed

1 file changed

+5
-12
lines changed

docs/build.xml

Lines changed: 5 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -135,46 +135,39 @@
135135
Documentation Targets
136136
********************* -->
137137

138-
<target name="doc" depends="doc-html doc-pdf"
138+
<target name="doc" depends="doc-html, doc-pdf"
139139
description="Shortcut for 'doc-html doc-pdf'">
140140
</target>
141141

142142

143143
<target name="doc-html" description="Generate all html documentation">
144-
<echo message="Creating user documentation" />
144+
<echo message="Creating html documentation" />
145145
<antcall target="run-docbook2html" inheritall="false">
146146
<param name="docbook-dir" value="user" />
147147
<param name="docbook-srcfile" value="userdoc.docbook" />
148148
</antcall>
149-
150-
<echo message="Creating quickstart documentation" />
151149
<antcall target="run-docbook2html" inheritall="false">
152150
<param name="docbook-dir" value="quickstart" />
153151
<param name="docbook-srcfile" value="quickstart.docbook" />
154152
</antcall>
155-
156-
<echo message="Creating developer documentation" />
157153
<antcall target="run-docbook2html" inheritall="false">
158154
<param name="docbook-dir" value="developer" />
159155
<param name="docbook-srcfile" value="devdoc.docbook" />
160156
</antcall>
157+
<antcall target="copy-resources" inheritall="false" />
161158
</target>
162159

163160

164161
<target name="doc-pdf" description="Generate all pdf documentation">
165-
<echo message="Creating user documentation" />
162+
<echo message="Creating pdf documentation" />
166163
<antcall target="run-docbook2pdf" inheritall="false">
167164
<param name="docbook-dir" value="user" />
168165
<param name="docbook-srcfile" value="userdoc.docbook" />
169166
</antcall>
170-
171-
<echo message="Creating quickstart documentation" />
172167
<antcall target="run-docbook2pdf" inheritall="false">
173168
<param name="docbook-dir" value="quickstart" />
174169
<param name="docbook-srcfile" value="quickstart.docbook" />
175170
</antcall>
176-
177-
<echo message="Creating developer documentation" />
178171
<antcall target="run-docbook2pdf" inheritall="false">
179172
<param name="docbook-dir" value="developer" />
180173
<param name="docbook-srcfile" value="devdoc.docbook" />
@@ -207,7 +200,7 @@
207200
</target>
208201

209202
<target name="copy-resources">
210-
<copy todir="classes/base">
203+
<copy todir="docs">
211204
<fileset dir="src">
212205
<patternset refid="resources" />
213206
</fileset>

0 commit comments

Comments
 (0)