aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwisberg <wisberg>2005-03-08 07:23:31 +0000
committerwisberg <wisberg>2005-03-08 07:23:31 +0000
commit1ccda254adf5faea53463209bc786fb976436857 (patch)
tree1ed4b38e1ead7028db8646deb21440d1cf550232
parent2eb14b49f16327adc8db52259155bae141aa20fc (diff)
downloadaspectj-1ccda254adf5faea53463209bc786fb976436857.tar.gz
aspectj-1ccda254adf5faea53463209bc786fb976436857.zip
minimal integration with org.aspectj.lib module
-rw-r--r--docs/build.xml12
-rw-r--r--docs/readme-docs-module.html9
2 files changed, 18 insertions, 3 deletions
diff --git a/docs/build.xml b/docs/build.xml
index c86ee1246..43e60e6e0 100644
--- a/docs/build.xml
+++ b/docs/build.xml
@@ -154,7 +154,7 @@
<target name="do-local-dist"
depends="init,init-filters,api,faq,devguide,progguide, adk15guide"
- description="finish products by copying dist files">
+ description="finish products by copying dist files and library sources">
<copy todir="${docs.dist.dir}" filtering="on">
<fileset dir="${docs.src.dir}/dist"
excludes="${binary.pattern}"/>
@@ -163,6 +163,16 @@
<fileset dir="${docs.src.dir}/dist"
includes="${binary.pattern}"/>
</copy>
+ <available
+ file="${docs.src.dir}/../org.aspectj.lib/build-aspectjlib.xml"
+ property="org.aspectj.lib.available"/>
+ <fail unless="org.aspectj.lib.available"
+ message="unable to find org.aspectj.lib"/>
+ <mkdir dir="${docs.dist.dir}/aspectjlib"/>
+ <copy todir="${docs.dist.dir}/doc/aspectjlib" filtering="off">
+ <fileset dir="${docs.src.dir}/../org.aspectj.lib"
+ includes="build-aspectjlib.xml,src"/>
+ </copy>
</target>
<target name="api" depends="init"
diff --git a/docs/readme-docs-module.html b/docs/readme-docs-module.html
index 28f9647d3..69b10e2a2 100644
--- a/docs/readme-docs-module.html
+++ b/docs/readme-docs-module.html
@@ -1,11 +1,12 @@
<html>
-<title>AspectJ docs</title>
+<head><title>AspectJ docs</title></head>
<body>
<h1>AspectJ docs</h1>
-
+<p>
This module contains the sources for the documentation
delivered with the AspectJ distribution and
for various internal, teaching, and online works:
+</p>
<ul>
<li><a href="devGuideDB">devGuideDB</a>: DocBook sources
for the AspectJ Development Environment Guide</li>
@@ -44,6 +45,7 @@ distribution which is gathered into the product distribution by
the master build script,
<a href="../build/build.xml">../build/build.xml</a>.
Dependencies outside this directory:
+</p>
<ul>
<li>.xml files refer to their docbook dtds using relative
path, for the moment ../../lib/docbook/...
@@ -56,6 +58,9 @@ Dependencies outside this directory:
<li><a href="dist/doc/quick.pdf">dist/doc/quick.pdf</a>
is generated manually from <a href="quick.doc">quick.doc</a>.
</li>
+<li><a href="../org.aspectj.lib">../org.aspectj.lib</a>
+ provides library sources for <code>{AspectJ}/doc/aspectjlib</code>.
+ </li>
</ul>
</body>
</html>