diff options
author | Karl Heuer <kwzh@gnu.org> | 1998-08-29 19:59:33 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1998-08-29 19:59:33 +0000 |
commit | 153d0a6d124135f72491f4671466230aadd17e94 (patch) | |
tree | 06ede762732aa192467b989190a760ff3b3da3b3 /lispref | |
parent | 869c922d4433cddc96357af6660ec47750f5b153 (diff) | |
download | emacs-153d0a6d124135f72491f4671466230aadd17e94.tar.gz |
Renamed from Makefile.
(prefix, infodir): Use value obtained from configure.
(emacslibdir): Obsolete variable deleted.
(dist): Distribute configure.in, configure, Makefile.in.
Diffstat (limited to 'lispref')
-rw-r--r-- | lispref/Makefile.in | 19 |
1 files changed, 6 insertions, 13 deletions
diff --git a/lispref/Makefile.in b/lispref/Makefile.in index 769591cf9f9..21ed99d490c 100644 --- a/lispref/Makefile.in +++ b/lispref/Makefile.in @@ -13,17 +13,9 @@ INSTALL_INFO = install-info # Where the TeX macros are kept: texmacrodir = /usr/local/lib/tex/macros -# Where the Emacs hierarchy lives ($EMACS in the INSTALL document for Emacs.) -# For example: -# emacslibdir = /usr/local/gnu/lib/emacs - -# Directory where Emacs is installed, by default: -emacslibdir = /usr/local/emacs - -# Unless you have a nonstandard Emacs installation, these shouldn't have to -# be changed. -prefix = /usr/local -infodir = ${prefix}/info +# Standard configure variables. +prefix = @prefix@ +infodir = @infodir@ # The name of the manual: @@ -101,8 +93,9 @@ dist: -rm -rf temp -mkdir temp -mkdir temp/$(manual) - -ln README Makefile permute-index $(srcs) texinfo.tex \ - elisp.dvi elisp.aux elisp.??s elisp elisp-[0-9] elisp-[0-9][0-9] temp/$(manual) + -ln README configure.in configure Makefile.in permute-index $(srcs) \ + texinfo.tex elisp.dvi elisp.aux elisp.??s elisp elisp-[0-9] elisp-[0-9][0-9] \ + temp/$(manual) -(cd temp/$(manual); rm -f mkinstalldirs) cp mkinstalldirs temp/$(manual) (cd temp/$(manual); rm -f *~) |