aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1996-02-23 21:44:18 +0000
committerRichard M. Stallman1996-02-23 21:44:18 +0000
commite4ca0c5f8b581d50b3a4fd858f9f0643760d6dc4 (patch)
treea9d907a88625f07cc9e08d7f9ff462e7daa5019b
parentf7111cbf2a1d4147442688b5a5825c4afaa0ec67 (diff)
downloademacs-e4ca0c5f8b581d50b3a4fd858f9f0643760d6dc4.tar.gz
emacs-e4ca0c5f8b581d50b3a4fd858f9f0643760d6dc4.zip
(install-arch-dep): Depend on install-arch-indep.
(install): Put install-arch-indep before install-arch-dep.
-rw-r--r--Makefile.in6
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
294## source exists and is distinct from the destination. 294## source exists and is distinct from the destination.
295## We don't depend on `all', but rather on ${SUBDIR}, so that we won't 295## We don't depend on `all', but rather on ${SUBDIR}, so that we won't
296## ever modify src/paths.h. 296## ever modify src/paths.h.
297install: ${SUBDIR} install-arch-dep install-arch-indep blessmail 297install: ${SUBDIR} install-arch-indep install-arch-dep blessmail
298 @true 298 @true
299 299
300### Install the executables that were compiled specifically for this machine. 300### Install the executables that were compiled specifically for this machine.
301install-arch-dep: mkdir 301### This depends on install-arch-indep because
302### the executable needs the Lisp files and DOC file to work properly.
303install-arch-dep: mkdir install-arch-indep
302 (cd lib-src; \ 304 (cd lib-src; \
303 $(MAKE) install $(MFLAGS) prefix=${prefix} \ 305 $(MAKE) install $(MFLAGS) prefix=${prefix} \
304 exec_prefix=${exec_prefix} bindir=${bindir} \ 306 exec_prefix=${exec_prefix} bindir=${bindir} \