Index: documents/trunk/documentation/src/app-dev/build-app.xml
===================================================================
--- documents/trunk/documentation/src/app-dev/build-app.xml (revision 9828)
+++ documents/trunk/documentation/src/app-dev/build-app.xml (revision 9830)
@@ -118,5 +118,5 @@
   &lt;chmod file="${build.dir}/run.sh" perm="ugo+x"/&gt;
 
-  &lt;mkdir dir="dist" /&gt;
+  &lt;mkdir dir="${dist.dir}" /&gt;
   &lt;zip destfile="dist/no-application.zip" &gt;
     &lt;zipfileset dir="${build.dir}" prefix="no-application" /&gt;
@@ -130,4 +130,5 @@
 Buildfile: build.xml
 
+compile:
 dist:
      [copy] Copying 45 files to /home/rcm/workspace/project/build/lib
@@ -136,3 +137,36 @@
 BUILD SUCCESSFUL
 Total time: 6 seconds</command-listing>
+
+  <para>After this has completed the <path>build</path> directory will look
+  like the following, and the <path>dist</path> directory will contain a
+  zipped file of the same contents.</para>
+
+  <command-listing>build/
+   classes/
+   config/
+   images/
+   lib/
+   web/
+   lcp.bat
+   run.bat
+   run.sh</command-listing>
+
+  <heading>Creating a web-app</heading>
+
+  <para>From the same set of project files we can create a <ital>war</ital>
+  file for running Naked Objects on a web server such as Tomcat. Running Ant
+  again with the <em>web-app</em> target will create war file in the
+  <path>dist</path> directory. It is important to note that we do not need to
+  provide and additional files or configurations to create the war.</para>
+
+  <command-listing>$ ant web-app
+Buildfile: build.xml
+
+compile:
+web-app:
+    [mkdir] Created dir: /home/rcm/no-development/release-trial/office-workspace/build/war
+    [unwar] Expanding: /home/rcm/tmp/release/developer/lib/nos-web-app-3.0M4D2-SNAPSHOT.war into /home/rcm/no-development/release-trial/office-workspace/build/war
+      [war] Building war: /home/rcm/no-development/release-trial/office-workspace/dist/example.war
+BUILD SUCCESSFUL
+Total time: 5 seconds</command-listing>
 </section>
