summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Wielaard <mark@klomp.org>2003-11-30 14:26:42 +0000
committerMark Wielaard <mark@klomp.org>2003-11-30 14:26:42 +0000
commit5b6a4cac2798b28b9a8bd5297a1a69cbae995929 (patch)
tree87660eb6ece361fad5ed72a916b48d571b0c7e8c
parentd5fb344cbedfb97f48fc4c75a3fd37f4ec3103fe (diff)
downloadclasspath-5b6a4cac2798b28b9a8bd5297a1a69cbae995929.tar.gz
2003-11-30 Mark Wielaard <mark@klomp.org>
* doc/api/Makefile.am (packages, create_html): Only generate api doc for the core packages, not the external ones.
-rw-r--r--ChangeLog5
-rw-r--r--doc/api/Makefile.am19
2 files changed, 21 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 05d190427..a906caf50 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2003-11-30 Mark Wielaard <mark@klomp.org>
+
+ * doc/api/Makefile.am (packages, create_html): Only generate api doc
+ for the core packages, not the external ones.
+
2003-11-29 Mark Wielaard <mark@klomp.org>
Reported by Etienne Gagnon <gagnon.etienne_m@uqam.ca>
diff --git a/doc/api/Makefile.am b/doc/api/Makefile.am
index 4a078b469..c2c134f54 100644
--- a/doc/api/Makefile.am
+++ b/doc/api/Makefile.am
@@ -32,7 +32,13 @@ html: create_html
core := $(shell cd $(top_srcdir) && $(FIND) java javax -type d ! -regex .*CVS ! -regex .*doc-files | tr '/' '.' | grep -v "java.awt.dnd.peer" | grep -v "java.awt.peer")
jaxp := $(shell cd $(top_srcdir)/external/jaxp/source && $(FIND) javax org -type d ! -regex .*CVS | tr '/' '.' | grep -v "org.w3c.dom.")
-packages = $(core) $(jaxp)
+
+# Just generate api doc for the core packages.
+# Adding the external ones takes a lot more time and we should reference
+# them anyway since we will place out own copyright notive on the generated
+# pages.
+# packages = $(core) $(jaxp)
+packages = $(core)
#| grep -v "^java\$" )
date := $(shell $(DATE))
@@ -63,11 +69,18 @@ clean:
create_html:
-$(MKDIR) html > /dev/null 2>&1
- $(GJDOC) -sourcepath \
- "$(top_srcdir):$(top_srcdir)/vm/reference:$(top_srcdir)/external/jaxp/source" \
+ $(GJDOC) -sourcepath "$(top_srcdir):$(top_srcdir)/vm/reference" \
-d html -bottomnote "$(srcdir)/classpath-copyright.xml" \
$(packages)
+# Including the external ones (jaxp) this would be:
+# create_html:
+# -$(MKDIR) html > /dev/null 2>&1
+# $(GJDOC) -sourcepath \
+# "$(top_srcdir):$(top_srcdir)/vm/reference:$(top_srcdir)/external/jaxp/source" \
+# -d html -bottomnote "$(srcdir)/classpath-copyright.xml" \
+# $(packages)
+
# -$(CP) -Ru $(srcdir)/xslt/common html
# $(XSLTPROC) \
# --novalid \