summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorDalibor Topic <robilad@yahoo.com>2007-03-25 15:45:55 +0000
committerDalibor Topic <robilad@yahoo.com>2007-03-25 15:45:55 +0000
commit0e6bbeaf0933891d1320b0c1060a63ceeecadf81 (patch)
tree336343bd62015f142ca1f31a17f3bdd321d82563 /doc
parent121ce0ac4430005e38d2fe536e5aa54bda2a5582 (diff)
downloadclasspath-0e6bbeaf0933891d1320b0c1060a63ceeecadf81.tar.gz
added documentation for gcjh
Diffstat (limited to 'doc')
-rw-r--r--doc/Makefile.am6
-rw-r--r--doc/cp-tools.texinfo67
2 files changed, 69 insertions, 4 deletions
diff --git a/doc/Makefile.am b/doc/Makefile.am
index ceda0f508..24d4b9c96 100644
--- a/doc/Makefile.am
+++ b/doc/Makefile.am
@@ -18,6 +18,7 @@ TOOLS_MANFILES = \
gjar.1 \
gjarsigner.1 \
gjavah.1 \
+ gcjh.1 \
gkeytool.1 \
gnative2ascii.1 \
gorbd.1 \
@@ -38,7 +39,7 @@ STAMP = echo timestamp >
.INTERMEDIATE: gappletviewer.pod gjarsigner.pod gjar.pod gjavah.pod \
gkeytool.pod gnative2ascii.pod gorbd.pod grmid.pod grmiregistry.pod \
- gserialver.pod gtnameserv.pod
+ gserialver.pod gtnameserv.pod gcjh.pod
gappletviewer.pod: $(srcdir)/cp-tools.texinfo
-$(TEXI2POD) -D gappletviewer < $< > $@
@@ -49,6 +50,9 @@ gjarsigner.pod: $(srcdir)/cp-tools.texinfo
gjar.pod: $(srcdir)/cp-tools.texinfo
-$(TEXI2POD) -D gjar < $< > $@
+gcjh.pod: $(srcdir)/cp-tools.texinfo
+ -$(TEXI2POD) -D gcjh < $< > $@
+
gjavah.pod: $(srcdir)/cp-tools.texinfo
-$(TEXI2POD) -D gjavah < $< > $@
diff --git a/doc/cp-tools.texinfo b/doc/cp-tools.texinfo
index 5e635b1c4..96241dea1 100644
--- a/doc/cp-tools.texinfo
+++ b/doc/cp-tools.texinfo
@@ -127,6 +127,7 @@ Other Tools
* jar Tool:: Archive tool for Java archives
* javah Tool:: A java header compiler
+* gcjh Tool:: A java header compiler (old version)
* native2ascii Tool:: An encoding converter
* orbd Tool:: An object request broker daemon
* serialver Tool:: A serial version command
@@ -1215,12 +1216,13 @@ For more details @pxref{verbose}.
@chapter Other Tools
This is a list of currently undocumented classpath tools: @b{jar},
-@b{javah}, @b{native2ascii}, @b{orbd}, @b{serialver}, @b{rmid}, @b{rmiregistry}
+@b{javah}, @b{gcjh}, @b{native2ascii}, @b{orbd}, @b{serialver}, @b{rmid}, @b{rmiregistry}
and @b{tnameserv}.
@menu
* jar Tool:: Archive tool for Java archives
* javah Tool:: A java header compiler
+* gcjh Tool:: A java header compiler (old version)
* native2ascii Tool:: An encoding converter
* orbd Tool:: An object request broker daemon
* serialver Tool:: A serial version command
@@ -1324,7 +1326,7 @@ java(1), @dots{}
@comment ----------------------------------------------------------------------
-@node javah Tool, native2ascii Tool, jar Tool, Other Tools
+@node javah Tool, gcjh Tool, jar Tool, Other Tools
@comment node-name, next, previous, up
@section The @command{javah} Tool
@c man title gjavah - generate header files from Java class files
@@ -1407,7 +1409,66 @@ javac(1), @dots{}
@comment ----------------------------------------------------------------------
-@node native2ascii Tool, orbd Tool, javah Tool, Other Tools
+@node gcjh Tool, native2ascii Tool, javah Tool, Other Tools
+@comment node-name, next, previous, up
+@section The @command{gcjh} Tool
+@c man title gcjh - generate header files from Java class files
+
+@c man begin DESCRIPTION gcjh
+
+To be written @dots{}
+
+@c man end
+
+@ignore
+@c man begin SYNOPSIS gcjh
+gcjh [@var{OPTIONS}]@dots{} @var{CLASS}@dots{}
+@c man end
+@end ignore
+
+@c man begin OPTIONS gcjh
+
+CNI text options
+@table @gcctabopt
+@item -add @var{text}
+Insert @var{text} into class body.
+@item -append @var{text}
+Append @var{text} after class declaration.
+@item -friend @var{text}
+Insert @var{text} as a @code{friend} declaration.
+@item -prepend @var{text}
+Insert @var{text} before start of class.
+@end table
+
+Compatibility options (unused)
+@table @gcctabopt
+@item -td @var{DIR}
+@itemx -M
+@itemx -MM
+@itemx -MD
+@itemx -MMD
+Unused compatibility option.
+@end table
+
+
+Standard options:
+@table @gcctabopt
+@item -help
+Print help text, then exit.
+@item -version
+Print version number, then exit.
+@item -J@var{OPTION}
+Pass argument to the Java runtime.
+@end table
+@c man end
+
+@c man begin SEEALSO gcjh
+javac(1), javah(1), @dots{}
+@c man end
+
+@comment ----------------------------------------------------------------------
+
+@node native2ascii Tool, orbd Tool, gcjh Tool, Other Tools
@comment node-name, next, previous, up
@section The @command{native2ascii} Tool
@c man title gnative2ascii - An encoding converter