diff options
author | Kenichi Handa <handa@m17n.org> | 1997-07-02 06:45:51 +0000 |
---|---|---|
committer | Kenichi Handa <handa@m17n.org> | 1997-07-02 06:45:51 +0000 |
commit | 91c05e049fedce3fac14ba7b472d637777d62285 (patch) | |
tree | 763b82bfe19aec300f80a7b6f7e571911b68d3ce /Makefile.in | |
parent | 1779abc93e7f73a3d92323a4012417cb29816e99 (diff) | |
download | emacs-91c05e049fedce3fac14ba7b472d637777d62285.tar.gz |
(install-leim): New target.
Diffstat (limited to 'Makefile.in')
-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 ## source exists and is distinct from the destination. ### We do install-arch-indep first because ### the executable needs the Lisp files and DOC file to work properly. -install: all install-arch-indep install-arch-dep blessmail +install: all install-arch-indep install-arch-dep blessmail install-leim @true ### Install the executables that were compiled specifically for this machine. @@ -294,11 +294,11 @@ install-arch-dep: mkdir ### Install the files that are machine-independent. ### Most of them come straight from the distribution; ### the exception is the DOC-* files, which are copied -### from the build directory. +## from the build directory. -### Note that we copy DOC* and then delete DOC -### as a workaround for a bug in tar on Ultrix 4.2. -install-arch-indep: mkdir +## Note that we copy DOC* and then delete DOC +## as a workaround for a bug in tar on Ultrix 4.2. +nstall-arch-indep: mkdir -set ${COPYDESTS} ; \ for dir in ${COPYDIR} ; do \ if [ `(cd $$1 && /bin/pwd)` != `(cd $${dir} && /bin/pwd)` ] ; then \ @@ -368,6 +368,13 @@ install-arch-indep: mkdir chmod a+r ${man1dir}/$${page}${manext}); \ done +### Install LEIM files. Although they are machine-independent, we +### have separate target here instead of including it in +### `install-arch-indep'. People who extracted LEIM files after they +### insalled Emacs itself can install only LEIM files by this target. +install-leim: leim/Makefile + cd leim; $(MAKE) install + ### Build Emacs and install it, stripping binaries while installing them. install-strip: $(MAKE) INSTALL_STRIP=-s |