diff options
author | Tom Tromey <tromey@gcc.gnu.org> | 2005-07-16 00:30:23 +0000 |
---|---|---|
committer | Tom Tromey <tromey@gcc.gnu.org> | 2005-07-16 00:30:23 +0000 |
commit | f911ba985aa7fe0096c386c5be385ac5825ea527 (patch) | |
tree | a0b991cf5866ae1d616639b906ac001811d74508 /libjava/classpath/doc/api | |
parent | 6f4434b39b261de5317dc81ddfdd94d2e1d62b11 (diff) | |
download | gcc-f911ba985aa7fe0096c386c5be385ac5825ea527.zip gcc-f911ba985aa7fe0096c386c5be385ac5825ea527.tar.gz gcc-f911ba985aa7fe0096c386c5be385ac5825ea527.tar.bz2 |
Initial revision
From-SVN: r102074
Diffstat (limited to 'libjava/classpath/doc/api')
-rw-r--r-- | libjava/classpath/doc/api/.cvsignore | 2 | ||||
-rw-r--r-- | libjava/classpath/doc/api/Makefile.am | 50 |
2 files changed, 52 insertions, 0 deletions
diff --git a/libjava/classpath/doc/api/.cvsignore b/libjava/classpath/doc/api/.cvsignore new file mode 100644 index 0000000..282522d --- /dev/null +++ b/libjava/classpath/doc/api/.cvsignore @@ -0,0 +1,2 @@ +Makefile +Makefile.in diff --git a/libjava/classpath/doc/api/Makefile.am b/libjava/classpath/doc/api/Makefile.am new file mode 100644 index 0000000..3e36c3b --- /dev/null +++ b/libjava/classpath/doc/api/Makefile.am @@ -0,0 +1,50 @@ +if CREATE_API_DOCS +noinst_DATA = html +endif + +sourcepath = $(top_builddir):$(top_srcdir):$(top_srcdir)/vm/reference:$(top_srcdir)/external/w3c_dom:$(top_srcdir)/external/sax + +classpathbox = "<span class='logo'><a href='http://www.gnu.org/software/classpath' target='_top'>GNU Classpath</a> ($(VERSION))" + +install-data-local: + $(mkinstalldirs) $(DESTDIR)$(pkgdatadir)/api + @list='$(htmllist)'; for p in $$list; do \ + f="`echo $$p | sed -e 's|^.*/||'`"; \ + if test -f "$$p"; then \ + echo " $(INSTALL_DATA) $$p $(DESTDIR)$(pkgdatadir)/api/$$f"; \ + $(INSTALL_DATA) $$p $(DESTDIR)$(pkgdatadir)/api/$$f; \ + elif test -d "$$p"; then \ + $(mkinstalldirs) $(DESTDIR)$(pkgdatadir)/api/$$f; \ + fi; \ + done + +uninstall-local: + @list='$(htmllist)'; for p in $$list; do \ + f="`echo $$p | sed -e 's|^.*/||'`"; \ + if test -f "$$p"; then \ + echo " rm -f $(DESTDIR)$(pkgdatadir)/api/$$f"; \ + rm -f $(DESTDIR)$(pkgdatadir)/api/$$f; \ + fi; \ + done + +html: create_html + +clean-local: + -rm -rf html create_html gjdoc_rawcomment.cache + +create_html: + -$(MKDIR) html > /dev/null 2>&1 + $(GJDOC) \ + -use \ + -sourcepath "$(sourcepath)" \ + -encoding UTF-8 \ + -breakiterator \ + -licensetext \ + -linksource \ + -splitindex \ + -d html \ + -doctitle "GNU Classpath $(VERSION)" \ + -windowtitle "GNU Classpath $(VERSION) Documentation" \ + -header $(classpathbox) -footer $(classpathbox) \ + -subpackages java:javax:org + touch create_html |