|
135 | 135 | Documentation Targets |
136 | 136 | ********************* --> |
137 | 137 |
|
138 | | - <target name="doc" depends="doc-html doc-pdf" |
| 138 | + <target name="doc" depends="doc-html, doc-pdf" |
139 | 139 | description="Shortcut for 'doc-html doc-pdf'"> |
140 | 140 | </target> |
141 | 141 |
|
142 | 142 |
|
143 | 143 | <target name="doc-html" description="Generate all html documentation"> |
144 | | - <echo message="Creating user documentation" /> |
| 144 | + <echo message="Creating html documentation" /> |
145 | 145 | <antcall target="run-docbook2html" inheritall="false"> |
146 | 146 | <param name="docbook-dir" value="user" /> |
147 | 147 | <param name="docbook-srcfile" value="userdoc.docbook" /> |
148 | 148 | </antcall> |
149 | | - |
150 | | - <echo message="Creating quickstart documentation" /> |
151 | 149 | <antcall target="run-docbook2html" inheritall="false"> |
152 | 150 | <param name="docbook-dir" value="quickstart" /> |
153 | 151 | <param name="docbook-srcfile" value="quickstart.docbook" /> |
154 | 152 | </antcall> |
155 | | - |
156 | | - <echo message="Creating developer documentation" /> |
157 | 153 | <antcall target="run-docbook2html" inheritall="false"> |
158 | 154 | <param name="docbook-dir" value="developer" /> |
159 | 155 | <param name="docbook-srcfile" value="devdoc.docbook" /> |
160 | 156 | </antcall> |
| 157 | + <antcall target="copy-resources" inheritall="false" /> |
161 | 158 | </target> |
162 | 159 |
|
163 | 160 |
|
164 | 161 | <target name="doc-pdf" description="Generate all pdf documentation"> |
165 | | - <echo message="Creating user documentation" /> |
| 162 | + <echo message="Creating pdf documentation" /> |
166 | 163 | <antcall target="run-docbook2pdf" inheritall="false"> |
167 | 164 | <param name="docbook-dir" value="user" /> |
168 | 165 | <param name="docbook-srcfile" value="userdoc.docbook" /> |
169 | 166 | </antcall> |
170 | | - |
171 | | - <echo message="Creating quickstart documentation" /> |
172 | 167 | <antcall target="run-docbook2pdf" inheritall="false"> |
173 | 168 | <param name="docbook-dir" value="quickstart" /> |
174 | 169 | <param name="docbook-srcfile" value="quickstart.docbook" /> |
175 | 170 | </antcall> |
176 | | - |
177 | | - <echo message="Creating developer documentation" /> |
178 | 171 | <antcall target="run-docbook2pdf" inheritall="false"> |
179 | 172 | <param name="docbook-dir" value="developer" /> |
180 | 173 | <param name="docbook-srcfile" value="devdoc.docbook" /> |
|
207 | 200 | </target> |
208 | 201 |
|
209 | 202 | <target name="copy-resources"> |
210 | | - <copy todir="classes/base"> |
| 203 | + <copy todir="docs"> |
211 | 204 | <fileset dir="src"> |
212 | 205 | <patternset refid="resources" /> |
213 | 206 | </fileset> |
|
0 commit comments