diff options
author | Richard M. Stallman <rms@gnu.org> | 1996-02-23 21:44:18 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1996-02-23 21:44:18 +0000 |
commit | 1c7e66d07d50367a91493daa6160baae3edfe78f (patch) | |
tree | 93d21d6ef3386393381f4c6f4d2533e6c97ed13a /Makefile.in | |
parent | 3a0740053cf7991785a39896997a6e92d43ba990 (diff) | |
download | emacs-1c7e66d07d50367a91493daa6160baae3edfe78f.tar.gz |
(install-arch-dep): Depend on install-arch-indep.
(install): Put install-arch-indep before install-arch-dep.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in index ea322f3c507..ea58c3bc1f4 100644 --- a/Makefile.in +++ b/Makefile.in @@ -294,11 +294,13 @@ lwlib/Makefile: lwlib/Makefile.in config.status ## source exists and is distinct from the destination. ## We don't depend on `all', but rather on ${SUBDIR}, so that we won't ## ever modify src/paths.h. -install: ${SUBDIR} install-arch-dep install-arch-indep blessmail +install: ${SUBDIR} install-arch-indep install-arch-dep blessmail @true ### Install the executables that were compiled specifically for this machine. -install-arch-dep: mkdir +### This depends on install-arch-indep because +### the executable needs the Lisp files and DOC file to work properly. +install-arch-dep: mkdir install-arch-indep (cd lib-src; \ $(MAKE) install $(MFLAGS) prefix=${prefix} \ exec_prefix=${exec_prefix} bindir=${bindir} \ |