diff options
author | Richard M. Stallman <rms@gnu.org> | 1996-03-17 15:24:35 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1996-03-17 15:24:35 +0000 |
commit | 4b064b5b661a16221b87bceeb29944199622d540 (patch) | |
tree | c768f92757cb5611ce10a06e1a24033dd78ba618 /Makefile.in | |
parent | 81da5517f2f4938a06c29f418962f9c2932fee97 (diff) | |
download | emacs-4b064b5b661a16221b87bceeb29944199622d540.tar.gz |
(install-arch-dep): Don't depend on install-arch-indep.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 8 |
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 ## 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. +### We do install-arch-indep first because +### the executable needs the Lisp files and DOC file to work properly. install: ${SUBDIR} install-arch-indep install-arch-dep blessmail @true ### Install the executables that were compiled specifically for this machine. -### 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 +### It would be nice to do something for a parallel make +### to ensure that install-arch-indep finishes before this starts. +install-arch-dep: mkdir (cd lib-src; \ $(MAKE) install $(MFLAGS) prefix=${prefix} \ exec_prefix=${exec_prefix} bindir=${bindir} \ |