diff options
| author | Jim Blandy | 1992-11-07 06:59:14 +0000 |
|---|---|---|
| committer | Jim Blandy | 1992-11-07 06:59:14 +0000 |
| commit | 43a904c120388747ac94d317aff0df94fe66099b (patch) | |
| tree | 7ab452ef95f0cfa2dc7f7ea79845f462c6fdfaad /src | |
| parent | 2e0e5cb7e5053e27483e06e327af219e652b1bc6 (diff) | |
| download | emacs-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.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 | |||
| 12 | # Just to avoid uncertainty. | 12 | # Just to avoid uncertainty. |
| 13 | SHELL = /bin/sh | 13 | SHELL = /bin/sh |
| 14 | 14 | ||
| 15 | all: xmakefile doall | 15 | all: doall |
| 16 | 16 | ||
| 17 | doall: | 17 | doall: 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: | |||
| 25 | clean: | 25 | clean: |
| 26 | -rm -f temacs xemacs xmakefile* core \#* *.o | 26 | -rm -f temacs xemacs xmakefile* core \#* *.o |
| 27 | 27 | ||
| 28 | xemacs: xmakefile doxemacs | 28 | xemacs: doxemacs |
| 29 | 29 | ||
| 30 | doxemacs: | 30 | doxemacs: xmakefile |
| 31 | $(MAKE) -f xmakefile ${MFLAGS} xemacs | 31 | $(MAKE) -f xmakefile ${MFLAGS} xemacs |
| 32 | 32 | ||
| 33 | temacs: xmakefile dotemacs | 33 | temacs: dotemacs |
| 34 | 34 | ||
| 35 | dotemacs: | 35 | dotemacs: 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 |