You are viewing a plain text version of this content. The canonical link for it is here.
Posted to derby-commits@db.apache.org by fu...@apache.org on 2006/08/25 07:29:18 UTC

svn commit: r436666 - /db/derby/docs/trunk/build.xml

Author: fuzzylogic
Date: Thu Aug 24 22:29:18 2006
New Revision: 436666

URL: http://svn.apache.org/viewvc?rev=436666&view=rev
Log:
Unhook 'all' target from 'pdf' target. The pdfs get built as a part of the
'monohtml' target. This reduces the time necessary to run the 'all' target by
almost half. Also, add individual manual targets, e.g. 'ant devguide' now
builds all three formats of the devguide.

Modified:
    db/derby/docs/trunk/build.xml

Modified: db/derby/docs/trunk/build.xml
URL: http://svn.apache.org/viewvc/db/derby/docs/trunk/build.xml?rev=436666&r1=436665&r2=436666&view=diff
==============================================================================
--- db/derby/docs/trunk/build.xml (original)
+++ db/derby/docs/trunk/build.xml Thu Aug 24 22:29:18 2006
@@ -26,7 +26,18 @@
     <echo message="For Brazilian Portuguese output, run &quot;ant pt_BR.usage&quot;"/>
   </target>
 
-  <target name="all" depends="html,pdf,monohtml,pt_BR"/>
+  <!-- PDFs are built as a part of the monohtml target -->
+  <target name="all" depends="html,monohtml,pt_BR"/>
+
+  <!-- targets that build all formats of each manual. PDFs are built  -->
+  <!-- as a dependent of the monohtml target                          -->
+  <target name="adminguide" depends="init,html.adminguide,monohtml.adminguide"/>
+  <target name="devguide" depends="init,html.devguide,monohtml.devguide"/>
+  <target name="getstart" depends="init,html.getstart,monohtml.getstart"/>
+  <target name="ref" depends="init,html.ref,monohtml.ref"/>
+  <target name="tools" depends="init,html.tools,monohtml.tools"/>
+  <target name="tuning" depends="init,html.tuning,monohtml.tuning"/>
+  <target name="workingwithderby" depends="init,html.workingwithderby,monohtml.workingwithderby"/>
 
   <target name="html" depends="init,html.workingwithderby,html.getstart,html.tools,html.devguide,html.adminguide,html.ref,html.tuning"/>
 
@@ -270,7 +281,7 @@
 
   <!-- Brazilian Portuguese manuals -->
 
-  <target name="pt_BR" depends="init,pt_BR.html,pt_BR.pdf,pt_BR.monohtml"/>
+  <target name="pt_BR" depends="init,pt_BR.html,pt_BR.monohtml"/>
 
   <target name="pt_BR.html" depends="init">
     <ant dir="src/pt_BR" target="pt_BR.adminguide.html"/>