aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeremias Maerki <jeremias@apache.org>2005-10-27 06:49:24 +0000
committerJeremias Maerki <jeremias@apache.org>2005-10-27 06:49:24 +0000
commitbeb51aa385f0b9e0c5e02a4f0eae267a0958eff4 (patch)
treea5d5b36cf4840fcd3e4d164bf9e37cc7b0f8c53f
parentef1fd8f1519e90cc86a8d74a38f59d45e153948e (diff)
downloadxmlgraphics-fop-beb51aa385f0b9e0c5e02a4f0eae267a0958eff4.tar.gz
xmlgraphics-fop-beb51aa385f0b9e0c5e02a4f0eae267a0958eff4.zip
Fixed a small mistake and explained about where "ant" comes from.
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@328813 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--src/documentation/content/xdocs/trunk/compiling.xml15
1 files changed, 12 insertions, 3 deletions
diff --git a/src/documentation/content/xdocs/trunk/compiling.xml b/src/documentation/content/xdocs/trunk/compiling.xml
index 507a93a4d..7de1278a8 100644
--- a/src/documentation/content/xdocs/trunk/compiling.xml
+++ b/src/documentation/content/xdocs/trunk/compiling.xml
@@ -79,6 +79,11 @@
The examples below are for running the shell script, but except for the build file extension,
the syntax is identical.
</p>
+ <note>
+ The "ant.bat" and "ant.sh" are only available on your system if you've properly
+ <a href="ext:ant/manual/">installed Apache Ant</a> and added Ant's location to the PATH
+ environment variable.
+ </note>
<p>
The file build.xml in the FOP root directory is the blueprint that Ant uses for the build. It
contains information for numerous build targets, many of which are building blocks to more
@@ -104,12 +109,16 @@
</ul>
<p>To run the build:</p>
<source>ant.sh [target ...]</source>
- <p>For example to do a normal build for the "package" target (which is the default):</p>
+ <p>For example to do a normal build for the "all" target (which is the default):</p>
<source>ant.sh</source>
<p>OR</p>
- <source>ant.sh package</source>
+ <source>ant.sh all</source>
<p>To clean the build directory first:</p>
- <source>ant.sh clean package</source>
+ <source>ant.sh clean all</source>
+ <note>
+ If you want to shorten the build time you can just call the "package" target which
+ doesn't perform any automated tests during the build.
+ </note>
</section>
<section id="problems">
<title id="Troubleshooting">Troubleshooting</title>