diff options
author | kstailey <kstailey@cvs.openbsd.org> | 1997-08-01 22:01:13 +0000 |
---|---|---|
committer | kstailey <kstailey@cvs.openbsd.org> | 1997-08-01 22:01:13 +0000 |
commit | fb4e1ba7a0121d1ec25d64c435bbe34d8af2c483 (patch) | |
tree | 56943425b2911615f1f19a77184fa1d158c23ab0 /gnu/usr.bin/texinfo/makeinfo | |
parent | 80b94d3721d130e60304019cc5c83ede42cd48a1 (diff) |
Import of FSF texinfo 3.11
Diffstat (limited to 'gnu/usr.bin/texinfo/makeinfo')
-rw-r--r-- | gnu/usr.bin/texinfo/makeinfo/Makefile.am | 13 | ||||
-rw-r--r-- | gnu/usr.bin/texinfo/makeinfo/README | 6 |
2 files changed, 19 insertions, 0 deletions
diff --git a/gnu/usr.bin/texinfo/makeinfo/Makefile.am b/gnu/usr.bin/texinfo/makeinfo/Makefile.am new file mode 100644 index 00000000000..3e341fb62cc --- /dev/null +++ b/gnu/usr.bin/texinfo/makeinfo/Makefile.am @@ -0,0 +1,13 @@ +## Makefile.am for texinfo/makeinfo. +## $Id: Makefile.am,v 1.1 1997/08/01 22:00:54 kstailey 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/gnu/usr.bin/texinfo/makeinfo/README b/gnu/usr.bin/texinfo/makeinfo/README new file mode 100644 index 00000000000..8b404caaf6d --- /dev/null +++ b/gnu/usr.bin/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. |