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 | e4ca0c5f8b581d50b3a4fd858f9f0643760d6dc4 (patch) | |
tree | a9d907a88625f07cc9e08d7f9ff462e7daa5019b /Makefile.in | |
parent | f7111cbf2a1d4147442688b5a5825c4afaa0ec67 (diff) | |
download | emacs-e4ca0c5f8b581d50b3a4fd858f9f0643760d6dc4.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} \ |