aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJim Blandy1992-11-07 06:59:14 +0000
committerJim Blandy1992-11-07 06:59:14 +0000
commit43a904c120388747ac94d317aff0df94fe66099b (patch)
tree7ab452ef95f0cfa2dc7f7ea79845f462c6fdfaad /src
parent2e0e5cb7e5053e27483e06e327af219e652b1bc6 (diff)
downloademacs-43a904c120388747ac94d317aff0df94fe66099b.tar.gz
emacs-43a904c120388747ac94d317aff0df94fe66099b.zip
* Makefile.in: Rearrange dependencies to make sure that xmakefile
is built before we try to use it, even using a parallel make.
Diffstat (limited to 'src')
-rw-r--r--src/Makefile.in12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/Makefile.in b/src/Makefile.in
index 045d3a439e3..1ef3f18009b 100644
--- a/src/Makefile.in
+++ b/src/Makefile.in
@@ -12,9 +12,9 @@ CPP = $(CC) -E -Is -Im
12# Just to avoid uncertainty. 12# Just to avoid uncertainty.
13SHELL = /bin/sh 13SHELL = /bin/sh
14 14
15all: xmakefile doall 15all: doall
16 16
17doall: 17doall: xmakefile
18 $(MAKE) CC='${CC}' -f xmakefile ${MFLAGS} all 18 $(MAKE) CC='${CC}' -f xmakefile ${MFLAGS} all
19 19
20#This is used in making a distribution. 20#This is used in making a distribution.
@@ -25,14 +25,14 @@ distclean:
25clean: 25clean:
26 -rm -f temacs xemacs xmakefile* core \#* *.o 26 -rm -f temacs xemacs xmakefile* core \#* *.o
27 27
28xemacs: xmakefile doxemacs 28xemacs: doxemacs
29 29
30doxemacs: 30doxemacs: xmakefile
31 $(MAKE) -f xmakefile ${MFLAGS} xemacs 31 $(MAKE) -f xmakefile ${MFLAGS} xemacs
32 32
33temacs: xmakefile dotemacs 33temacs: dotemacs
34 34
35dotemacs: 35dotemacs: xmakefile
36 $(MAKE) -f xmakefile ${MFLAGS} temacs 36 $(MAKE) -f xmakefile ${MFLAGS} temacs
37 37
38# If you have a problem with cc -E here, changing 38# If you have a problem with cc -E here, changing