diff options
author | Jeff Law <law@gcc.gnu.org> | 1998-03-22 21:41:58 -0700 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1998-03-22 21:41:58 -0700 |
commit | 1eb3e8442f8c549c9b2ed21ca75eb7fb12b10b0d (patch) | |
tree | 9bc386a0875ecd26d247a4eb18407b6c59020a25 /texinfo/makeinfo | |
parent | 34b6478b59f51c9d5b2b634ea0aefa6813cdbb2a (diff) | |
download | gcc-1eb3e8442f8c549c9b2ed21ca75eb7fb12b10b0d.zip gcc-1eb3e8442f8c549c9b2ed21ca75eb7fb12b10b0d.tar.gz gcc-1eb3e8442f8c549c9b2ed21ca75eb7fb12b10b0d.tar.bz2 |
Initial revision
From-SVN: r18770
Diffstat (limited to 'texinfo/makeinfo')
-rw-r--r-- | texinfo/makeinfo/Makefile.am | 13 | ||||
-rw-r--r-- | texinfo/makeinfo/README | 6 |
2 files changed, 19 insertions, 0 deletions
diff --git a/texinfo/makeinfo/Makefile.am b/texinfo/makeinfo/Makefile.am new file mode 100644 index 0000000..6f0231b --- /dev/null +++ b/texinfo/makeinfo/Makefile.am @@ -0,0 +1,13 @@ +## Makefile.am for texinfo/makeinfo. +## $Id: Makefile.am,v 1.1 1998/03/23 04:43:06 law Exp $ +## Run automake in .. to produce Makefile.in from this. + +bin_PROGRAMS = makeinfo + +localedir = $(datadir)/locale +INCLUDES = -I$(top_srcdir)/lib -I../intl -DLOCALEDIR=\"$(localedir)\" +LDADD = ../lib/libtxi.a @INTLLIBS@ + +makeinfo_SOURCES = makeinfo.c makeinfo.h multi.c + +EXTRA_DIST = README diff --git a/texinfo/makeinfo/README b/texinfo/makeinfo/README new file mode 100644 index 0000000..8b404ca --- /dev/null +++ b/texinfo/makeinfo/README @@ -0,0 +1,6 @@ +A standalone program to convert Texinfo source into Info files +readable with standalone info or M-x info in Emacs. +makeinfo can also output plain ASCII. + +The Emacs function M-x texinfo-format-buffer does the same job, but +makeinfo is faster and gives better error messages. |