diff options
| author | Karl Heuer | 1994-04-23 01:07:04 +0000 |
|---|---|---|
| committer | Karl Heuer | 1994-04-23 01:07:04 +0000 |
| commit | 9ef7f9f05b1f98af66a90bfa73d199e7830d54a4 (patch) | |
| tree | c1921643bd1dd17f8f4ba52adccc442fabbdfe14 | |
| parent | 8adce06ac51a4abb372a345c15dabab88d2bd2d6 (diff) | |
| download | emacs-9ef7f9f05b1f98af66a90bfa73d199e7830d54a4.tar.gz emacs-9ef7f9f05b1f98af66a90bfa73d199e7830d54a4.zip | |
(.PHONY, install): Kill reference to obsolete do-install.
(install-arch-dep): Install under the name $(EMACS).
| -rw-r--r-- | Makefile.in | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/Makefile.in b/Makefile.in index 5f0de13c5d6..dbfc23072a6 100644 --- a/Makefile.in +++ b/Makefile.in | |||
| @@ -176,6 +176,9 @@ INSTALL_DATA = @INSTALL_DATA@ | |||
| 176 | 176 | ||
| 177 | # ============================= Targets ============================== | 177 | # ============================= Targets ============================== |
| 178 | 178 | ||
| 179 | # What emacs should be called when installed. | ||
| 180 | EMACS = emacs | ||
| 181 | |||
| 179 | # Subdirectories to make recursively. `lisp' is not included | 182 | # Subdirectories to make recursively. `lisp' is not included |
| 180 | # because the compiled lisp files are part of the distribution | 183 | # because the compiled lisp files are part of the distribution |
| 181 | # and you cannot remake them without installing Emacs first. | 184 | # and you cannot remake them without installing Emacs first. |
| @@ -250,7 +253,7 @@ lwlib/Makefile: lwlib/Makefile.in config.status | |||
| 250 | ## On AIX, use tar xBf. | 253 | ## On AIX, use tar xBf. |
| 251 | ## On Xenix, use tar xpf. | 254 | ## On Xenix, use tar xpf. |
| 252 | 255 | ||
| 253 | .PHONY: install do-install mkdir | 256 | .PHONY: install mkdir |
| 254 | 257 | ||
| 255 | ## We delete each directory in ${COPYDESTS} before we copy into it; | 258 | ## We delete each directory in ${COPYDESTS} before we copy into it; |
| 256 | ## that way, we can reinstall over directories that have been put in | 259 | ## that way, we can reinstall over directories that have been put in |
| @@ -259,7 +262,7 @@ lwlib/Makefile: lwlib/Makefile.in config.status | |||
| 259 | ## source exists and is distinct from the destination. | 262 | ## source exists and is distinct from the destination. |
| 260 | ## We don't depend on `all', but rather on ${SUBDIR}, so that we won't | 263 | ## We don't depend on `all', but rather on ${SUBDIR}, so that we won't |
| 261 | ## ever modify src/paths.h. | 264 | ## ever modify src/paths.h. |
| 262 | install: ${SUBDIR} do-install install-arch-dep install-arch-indep; | 265 | install: ${SUBDIR} install-arch-dep install-arch-indep; |
| 263 | 266 | ||
| 264 | ### Note that we copy the DOC-* files from the build etc directory | 267 | ### Note that we copy the DOC-* files from the build etc directory |
| 265 | ### as well as lots of things from ${srcdir}/etc. | 268 | ### as well as lots of things from ${srcdir}/etc. |
| @@ -270,8 +273,8 @@ install-arch-dep: mkdir | |||
| 270 | archlibdir=${archlibdir}) | 273 | archlibdir=${archlibdir}) |
| 271 | ${INSTALL_PROGRAM} src/emacs ${bindir}/emacs-${version} | 274 | ${INSTALL_PROGRAM} src/emacs ${bindir}/emacs-${version} |
| 272 | -chmod 1755 ${bindir}/emacs-${version} | 275 | -chmod 1755 ${bindir}/emacs-${version} |
| 273 | rm -f ${bindir}/emacs | 276 | rm -f ${bindir}/$(EMACS) |
| 274 | -ln ${bindir}/emacs-${version} ${bindir}/emacs | 277 | -ln ${bindir}/emacs-${version} ${bindir}/$(EMACS) |
| 275 | 278 | ||
| 276 | ### Note that we copy the DOC-* files from the build etc directory | 279 | ### Note that we copy the DOC-* files from the build etc directory |
| 277 | ### as well as lots of things from ${srcdir}/etc. | 280 | ### as well as lots of things from ${srcdir}/etc. |