diff options
| author | Eric S. Raymond | 1993-03-17 13:23:14 +0000 |
|---|---|---|
| committer | Eric S. Raymond | 1993-03-17 13:23:14 +0000 |
| commit | a34902abb85407cfe0ffa68e7793157b9b4ab041 (patch) | |
| tree | 6139e02c2eb5b2b41fdff799685c37376e83d386 | |
| parent | 1dd40212a5e2fe8fd3b03d870bc38f21199901bb (diff) | |
| download | emacs-a34902abb85407cfe0ffa68e7793157b9b4ab041.tar.gz emacs-a34902abb85407cfe0ffa68e7793157b9b4ab041.zip | |
Added `Developer's configuration' section.
| -rw-r--r-- | Makefile.in | 26 |
1 files changed, 21 insertions, 5 deletions
diff --git a/Makefile.in b/Makefile.in index d246e82138c..5942d85d5c6 100644 --- a/Makefile.in +++ b/Makefile.in | |||
| @@ -106,29 +106,29 @@ srcdir=. | |||
| 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 |
| @@ -154,6 +154,22 @@ lockdir=${statedir}/emacs/lock | |||
| 154 | # be installed at once. | 154 | # be installed at once. |
| 155 | archlibdir=${libdir}/emacs/${version}/${configname} | 155 | archlibdir=${libdir}/emacs/${version}/${configname} |
| 156 | 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 | ||
| 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. |