aboutsummaryrefslogtreecommitdiff
path: root/texinfo/emacs
diff options
context:
space:
mode:
authorJeff Law <law@gcc.gnu.org>1998-03-22 21:41:58 -0700
committerJeff Law <law@gcc.gnu.org>1998-03-22 21:41:58 -0700
commit1eb3e8442f8c549c9b2ed21ca75eb7fb12b10b0d (patch)
tree9bc386a0875ecd26d247a4eb18407b6c59020a25 /texinfo/emacs
parent34b6478b59f51c9d5b2b634ea0aefa6813cdbb2a (diff)
downloadgcc-1eb3e8442f8c549c9b2ed21ca75eb7fb12b10b0d.zip
gcc-1eb3e8442f8c549c9b2ed21ca75eb7fb12b10b0d.tar.gz
gcc-1eb3e8442f8c549c9b2ed21ca75eb7fb12b10b0d.tar.bz2
Initial revision
From-SVN: r18770
Diffstat (limited to 'texinfo/emacs')
-rw-r--r--texinfo/emacs/Makefile.am21
-rw-r--r--texinfo/emacs/README17
2 files changed, 38 insertions, 0 deletions
diff --git a/texinfo/emacs/Makefile.am b/texinfo/emacs/Makefile.am
new file mode 100644
index 0000000..8f4b459
--- /dev/null
+++ b/texinfo/emacs/Makefile.am
@@ -0,0 +1,21 @@
+## Makefile.am for texinfo/emacs.
+## $Id: Makefile.am,v 1.1 1998/03/23 04:42:12 law 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/texinfo/emacs/README b/texinfo/emacs/README
new file mode 100644
index 0000000..2305316
--- /dev/null
+++ b/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.