comparison Makefile.in @ 2225:19e1e3cb7415

Added `Developer's configuration' section.
author Eric S. Raymond <esr@snark.thyrsus.com>
date Wed, 17 Mar 1993 13:23:14 +0000
parents 2345bb83831a
children 17cbbc48a154
comparison
equal deleted inserted replaced
2224:49bda4cf498c 2225:19e1e3cb7415
104 # ==================== Emacs-specific directories ==================== 104 # ==================== Emacs-specific directories ====================
105 105
106 # These variables hold the values Emacs will actually use. They are 106 # These variables hold the values Emacs will actually use. They are
107 # based on the values of the standard Make variables above. 107 # based on the values of the standard Make variables above.
108 108
109 # Where to install the elisp files distributed with Emacs. This 109 # Where to install the lisp files distributed with Emacs. This
110 # includes the Emacs version, so that the lisp files for different 110 # includes the Emacs version, so that the lisp files for different
111 # versions of Emacs will install themselves in separate directories. 111 # versions of Emacs will install themselves in separate directories.
112 lispdir=${datadir}/emacs/${version}/lisp 112 lispdir=${datadir}/emacs/${version}/lisp
113 113
114 # Where to install the elisp files which are distributed with Emacs 114 # Where to install the lisp files which are distributed with Emacs
115 # but not maintained by the FSF. This includes the Emacs version, so 115 # but not maintained by the FSF. This includes the Emacs version, so
116 # that the lisp files for different versions of Emacs will install 116 # that the lisp files for different versions of Emacs will install
117 # themselves in separate directories. 117 # themselves in separate directories.
118 externallispdir=${datadir}/emacs/${version}/external-lisp 118 externallispdir=${datadir}/emacs/${version}/external-lisp
119 119
120 # Directories Emacs should search for elisp files specific to this 120 # Directories Emacs should search for lisp files specific to this
121 # site (i.e. customizations), before consulting ${lispdir}. This 121 # site (i.e. customizations), before consulting ${lispdir}. This
122 # should be a colon-separated list of directories. 122 # should be a colon-separated list of directories.
123 locallisppath=${datadir}/emacs/site-lisp 123 locallisppath=${datadir}/emacs/site-lisp
124 124
125 # Where Emacs will search to find its elisp files. Before changing 125 # Where Emacs will search to find its lisp files. Before changing
126 # this, check to see if your purpose wouldn't better be served by 126 # this, check to see if your purpose wouldn't better be served by
127 # changing locallisppath. This should be a colon-separated list of 127 # changing locallisppath. This should be a colon-separated list of
128 # directories. 128 # directories.
129 lisppath=${locallisppath}:${lispdir} 129 lisppath=${locallisppath}:${lispdir}
130 130
131 # Where Emacs will search for its elisp files while building. This is 131 # Where Emacs will search for its lisp files while building. This is
132 # only used during the process of compiling Emacs, to help Emacs find 132 # only used during the process of compiling Emacs, to help Emacs find
133 # its lisp files before they've been installed in their final 133 # its lisp files before they've been installed in their final
134 # location. It's usually identical to lisppath, except that the entry 134 # location. It's usually identical to lisppath, except that the entry
135 # for the directory containing the installed lisp files has been 135 # for the directory containing the installed lisp files has been
136 # replaced with ../lisp. This should be a colon-separated list of 136 # replaced with ../lisp. This should be a colon-separated list of
151 # Where to put executables to be run by Emacs rather than the user. 151 # Where to put executables to be run by Emacs rather than the user.
152 # This path usually includes the Emacs version and configuration name, 152 # This path usually includes the Emacs version and configuration name,
153 # so that multiple configurations for multiple versions of Emacs may 153 # so that multiple configurations for multiple versions of Emacs may
154 # be installed at once. 154 # be installed at once.
155 archlibdir=${libdir}/emacs/${version}/${configname} 155 archlibdir=${libdir}/emacs/${version}/${configname}
156
157 # ====================== Developer's configuration =======================
158
159 # The following assignments make sense if you're running Emacs on a single
160 # machine, one version at a time, and you want changes to the lisp and etc
161 # directories in the source tree to show up immediately in your working
162 # environment. It saves a great deal of disk space by not duplicating the
163 # lisp and etc directories.
164 #
165 # lispdir=${srcdir}/lisp
166 # externallispdir=${srcdir}/externallisp
167 # locallisppath=${srcdir}/site-lisp
168 # etcdir=${srcdir}/etc
169 # lockdir=${srcdir}/lock
170 # archlibdir=${srcdir}/etc
171 # infodir=${srcdir}/info
156 172
157 # ==================== Utility Programs for the Build ==================== 173 # ==================== Utility Programs for the Build ====================
158 174
159 # Allow the user to specify the install program. 175 # Allow the user to specify the install program.
160 INSTALL = install 176 INSTALL = install