aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1996-03-17 15:24:35 +0000
committerRichard M. Stallman1996-03-17 15:24:35 +0000
commitd7ce568fabffcbee25e796a704671feaa9e08e3f (patch)
treebfcf8b5c1ffd3e00480b576fa5d5a28458750255
parent4fd8de53a19ff6f8b19dc4a7ec61d3f04eca0d70 (diff)
downloademacs-d7ce568fabffcbee25e796a704671feaa9e08e3f.tar.gz
emacs-d7ce568fabffcbee25e796a704671feaa9e08e3f.zip
(install-arch-dep): Don't depend on install-arch-indep.
-rw-r--r--Makefile.in8
1 files changed, 5 insertions, 3 deletions
diff --git a/Makefile.in b/Makefile.in
index ea58c3bc1f4..81de57e11a5 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -294,13 +294,15 @@ 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.
297### We do install-arch-indep first because
298### the executable needs the Lisp files and DOC file to work properly.
297install: ${SUBDIR} install-arch-indep install-arch-dep blessmail 299install: ${SUBDIR} install-arch-indep install-arch-dep blessmail
298 @true 300 @true
299 301
300### Install the executables that were compiled specifically for this machine. 302### Install the executables that were compiled specifically for this machine.
301### This depends on install-arch-indep because 303### It would be nice to do something for a parallel make
302### the executable needs the Lisp files and DOC file to work properly. 304### to ensure that install-arch-indep finishes before this starts.
303install-arch-dep: mkdir install-arch-indep 305install-arch-dep: mkdir
304 (cd lib-src; \ 306 (cd lib-src; \
305 $(MAKE) install $(MFLAGS) prefix=${prefix} \ 307 $(MAKE) install $(MFLAGS) prefix=${prefix} \
306 exec_prefix=${exec_prefix} bindir=${bindir} \ 308 exec_prefix=${exec_prefix} bindir=${bindir} \