diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-03-23 04:41:58 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-03-23 04:41:58 +0000 |
commit | 6595d9ed87843bdd450c950d501f9dfc4bf30d74 (patch) | |
tree | 9bc386a0875ecd26d247a4eb18407b6c59020a25 /texinfo/makeinfo | |
parent | 317c77c896f6f126f4e68fc84b4dfe7636e4f7ee (diff) | |
download | gcc-6595d9ed87843bdd450c950d501f9dfc4bf30d74.tar.gz |
Initial revision
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@18770 138bc75d-0d04-0410-961f-82ee72b054a4
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 00000000000..6f0231b72e1 --- /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 00000000000..8b404caaf6d --- /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. |