diff options
author | Jim Blandy <jimb@redhat.com> | 1992-11-07 06:59:14 +0000 |
---|---|---|
committer | Jim Blandy <jimb@redhat.com> | 1992-11-07 06:59:14 +0000 |
commit | 43a904c120388747ac94d317aff0df94fe66099b (patch) | |
tree | 7ab452ef95f0cfa2dc7f7ea79845f462c6fdfaad /src/Makefile.in | |
parent | 2e0e5cb7e5053e27483e06e327af219e652b1bc6 (diff) | |
download | emacs-43a904c120388747ac94d317aff0df94fe66099b.tar.gz |
* 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/Makefile.in')
-rw-r--r-- | src/Makefile.in | 12 |
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 # Just to avoid uncertainty. SHELL = /bin/sh -all: xmakefile doall +all: doall -doall: +doall: xmakefile $(MAKE) CC='${CC}' -f xmakefile ${MFLAGS} all #This is used in making a distribution. @@ -25,14 +25,14 @@ distclean: clean: -rm -f temacs xemacs xmakefile* core \#* *.o -xemacs: xmakefile doxemacs +xemacs: doxemacs -doxemacs: +doxemacs: xmakefile $(MAKE) -f xmakefile ${MFLAGS} xemacs -temacs: xmakefile dotemacs +temacs: dotemacs -dotemacs: +dotemacs: xmakefile $(MAKE) -f xmakefile ${MFLAGS} temacs # If you have a problem with cc -E here, changing |