diff options
| author | tromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-07-16 00:30:23 +0000 |
|---|---|---|
| committer | tromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-07-16 00:30:23 +0000 |
| commit | c8875fb97fc03779a5bba09872227b1d08e5d52a (patch) | |
| tree | a0b991cf5866ae1d616639b906ac001811d74508 /libjava/classpath/doc/api | |
| parent | c40c1730800ed292b6db39a83d592476fa59623c (diff) | |
| download | ppe42-gcc-c8875fb97fc03779a5bba09872227b1d08e5d52a.tar.gz ppe42-gcc-c8875fb97fc03779a5bba09872227b1d08e5d52a.zip | |
Initial revision
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@102074 138bc75d-0d04-0410-961f-82ee72b054a4
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 00000000000..282522db034 --- /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 00000000000..3e36c3becbc --- /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 |

