diff options
| author | Kenichi Handa | 1997-07-02 06:45:51 +0000 |
|---|---|---|
| committer | Kenichi Handa | 1997-07-02 06:45:51 +0000 |
| commit | 24127cf7ec323dbf642226ce75aea41df6280c27 (patch) | |
| tree | 22bbf761295e47dd0af227472657a7c6be001041 | |
| parent | b560c39793615ec7357ed31c3119c0f4a8b69113 (diff) | |
| download | emacs-24127cf7ec323dbf642226ce75aea41df6280c27.tar.gz emacs-24127cf7ec323dbf642226ce75aea41df6280c27.zip | |
(install-leim): New target.
| -rw-r--r-- | Makefile.in | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/Makefile.in b/Makefile.in index 2bca691fa1f..131ef7ba10b 100644 --- a/Makefile.in +++ b/Makefile.in | |||
| @@ -274,7 +274,7 @@ leim/Makefile: leim/Makefile.in config.status | |||
| 274 | ## source exists and is distinct from the destination. | 274 | ## source exists and is distinct from the destination. |
| 275 | ### We do install-arch-indep first because | 275 | ### We do install-arch-indep first because |
| 276 | ### the executable needs the Lisp files and DOC file to work properly. | 276 | ### the executable needs the Lisp files and DOC file to work properly. |
| 277 | install: all install-arch-indep install-arch-dep blessmail | 277 | install: all install-arch-indep install-arch-dep blessmail install-leim |
| 278 | @true | 278 | @true |
| 279 | 279 | ||
| 280 | ### Install the executables that were compiled specifically for this machine. | 280 | ### Install the executables that were compiled specifically for this machine. |
| @@ -294,11 +294,11 @@ install-arch-dep: mkdir | |||
| 294 | ### Install the files that are machine-independent. | 294 | ### Install the files that are machine-independent. |
| 295 | ### Most of them come straight from the distribution; | 295 | ### Most of them come straight from the distribution; |
| 296 | ### the exception is the DOC-* files, which are copied | 296 | ### the exception is the DOC-* files, which are copied |
| 297 | ### from the build directory. | 297 | ## from the build directory. |
| 298 | 298 | ||
| 299 | ### Note that we copy DOC* and then delete DOC | 299 | ## Note that we copy DOC* and then delete DOC |
| 300 | ### as a workaround for a bug in tar on Ultrix 4.2. | 300 | ## as a workaround for a bug in tar on Ultrix 4.2. |
| 301 | install-arch-indep: mkdir | 301 | nstall-arch-indep: mkdir |
| 302 | -set ${COPYDESTS} ; \ | 302 | -set ${COPYDESTS} ; \ |
| 303 | for dir in ${COPYDIR} ; do \ | 303 | for dir in ${COPYDIR} ; do \ |
| 304 | if [ `(cd $$1 && /bin/pwd)` != `(cd $${dir} && /bin/pwd)` ] ; then \ | 304 | if [ `(cd $$1 && /bin/pwd)` != `(cd $${dir} && /bin/pwd)` ] ; then \ |
| @@ -368,6 +368,13 @@ install-arch-indep: mkdir | |||
| 368 | chmod a+r ${man1dir}/$${page}${manext}); \ | 368 | chmod a+r ${man1dir}/$${page}${manext}); \ |
| 369 | done | 369 | done |
| 370 | 370 | ||
| 371 | ### Install LEIM files. Although they are machine-independent, we | ||
| 372 | ### have separate target here instead of including it in | ||
| 373 | ### `install-arch-indep'. People who extracted LEIM files after they | ||
| 374 | ### insalled Emacs itself can install only LEIM files by this target. | ||
| 375 | install-leim: leim/Makefile | ||
| 376 | cd leim; $(MAKE) install | ||
| 377 | |||
| 371 | ### Build Emacs and install it, stripping binaries while installing them. | 378 | ### Build Emacs and install it, stripping binaries while installing them. |
| 372 | install-strip: | 379 | install-strip: |
| 373 | $(MAKE) INSTALL_STRIP=-s | 380 | $(MAKE) INSTALL_STRIP=-s |