summaryrefslogtreecommitdiff
path: root/gnu/usr.bin/texinfo/emacs
diff options
context:
space:
mode:
authorkstailey <kstailey@cvs.openbsd.org>1997-08-01 22:01:13 +0000
committerkstailey <kstailey@cvs.openbsd.org>1997-08-01 22:01:13 +0000
commitfb4e1ba7a0121d1ec25d64c435bbe34d8af2c483 (patch)
tree56943425b2911615f1f19a77184fa1d158c23ab0 /gnu/usr.bin/texinfo/emacs
parent80b94d3721d130e60304019cc5c83ede42cd48a1 (diff)
Import of FSF texinfo 3.11
Diffstat (limited to 'gnu/usr.bin/texinfo/emacs')
-rw-r--r--gnu/usr.bin/texinfo/emacs/Makefile.am21
-rw-r--r--gnu/usr.bin/texinfo/emacs/README17
2 files changed, 38 insertions, 0 deletions
diff --git a/gnu/usr.bin/texinfo/emacs/Makefile.am b/gnu/usr.bin/texinfo/emacs/Makefile.am
new file mode 100644
index 00000000000..5907f0874f4
--- /dev/null
+++ b/gnu/usr.bin/texinfo/emacs/Makefile.am
@@ -0,0 +1,21 @@
+## Makefile.am for texinfo/emacs.
+## $Id: Makefile.am,v 1.1 1997/08/01 21:59:44 kstailey Exp $
+## Run automake in .. to produce Makefile.in from this.
+
+# Do not byte compile our Elisp files by default.
+ELCFILES =
+
+# Do not install our Elisp files by default, either.
+noinst_LISP = info.el informat.el makeinfo.el \
+ texinfmt.el texinfo.el texnfo-upd.el
+
+EXTRA_DIST = README elisp-comp new-useful-setqs $(noinst_LISP)
+
+install-data-local:
+ @echo "WARNING: You must (compile and) install the Emacs Lisp files"
+ @echo "WARNING: manually. See ./emacs/README for some considerations."
+
+# For some reason these do not get defined.
+distclean-lisp:
+clean-lisp:
+mostlyclean-lisp:
diff --git a/gnu/usr.bin/texinfo/emacs/README b/gnu/usr.bin/texinfo/emacs/README
new file mode 100644
index 00000000000..23053166c3f
--- /dev/null
+++ b/gnu/usr.bin/texinfo/emacs/README
@@ -0,0 +1,17 @@
+This directory contains Emacs Lisp sources related to Texinfo.
+
+M-x texinfo-format-buffer is no longer the standard way to make .info
+files, and may or may not work. Use makeinfo instead. See the
+`makeinfo advantages' in the manual for why.
+
+The files here may or may not be newer than the versions in the latest
+Emacs distribution -- there is only one master source, so it simply
+depends on what was released later. Use whatever works better for you.
+
+They are not compiled or installed by default, because of the above, and
+also due to the wide variations in sites' Emacs installations.
+
+Even if you do install them, you may not want to compile them if your
+site is running multiple versions of Emacs, since .elc files are not
+portable between all Emacs releases. If you do want to compile them,
+just run the ./elisp-comp shell script.