diff options
| author | Joakim Verona | 2013-09-10 23:52:26 +0200 |
|---|---|---|
| committer | Joakim Verona | 2013-09-10 23:52:26 +0200 |
| commit | 63dae8e97d343fd4ebfe3dc08f0e8dc932630a4c (patch) | |
| tree | e5078c5545c777e21944a9ee4199a6f2c6d25ca9 /src/Makefile.in | |
| parent | 92aeabcc8a007f521a664e3aee092eb80ad0f49a (diff) | |
| download | emacs-63dae8e97d343fd4ebfe3dc08f0e8dc932630a4c.tar.gz emacs-63dae8e97d343fd4ebfe3dc08f0e8dc932630a4c.zip | |
merge upstream
Diffstat (limited to 'src/Makefile.in')
| -rw-r--r-- | src/Makefile.in | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/src/Makefile.in b/src/Makefile.in index 76a4e0c5703..aa51108ffc2 100644 --- a/src/Makefile.in +++ b/src/Makefile.in | |||
| @@ -23,7 +23,7 @@ | |||
| 23 | # script may need modifying in sync with changes made here. Try to | 23 | # script may need modifying in sync with changes made here. Try to |
| 24 | # avoid shell-ism because the DOS build has to use the DOS shell. | 24 | # avoid shell-ism because the DOS build has to use the DOS shell. |
| 25 | 25 | ||
| 26 | SHELL = /bin/sh | 26 | SHELL = @SHELL@ |
| 27 | 27 | ||
| 28 | # Here are the things that we expect ../configure to edit. | 28 | # Here are the things that we expect ../configure to edit. |
| 29 | # We use $(srcdir) explicitly in dependencies so as not to depend on VPATH. | 29 | # We use $(srcdir) explicitly in dependencies so as not to depend on VPATH. |
| @@ -548,14 +548,9 @@ stamp-oldxmenu: $(OLDXMENU_DEPS) | |||
| 548 | 548 | ||
| 549 | $(OLDXMENU): $(OLDXMENU_TARGET) | 549 | $(OLDXMENU): $(OLDXMENU_TARGET) |
| 550 | 550 | ||
| 551 | ../config.status:: epaths.in | 551 | ../config.status: config.in epaths.in |
| 552 | @echo "The file epaths.h needs to be set up from epaths.in." | 552 | @echo "The file ${?:.in=.h} needs to be set up from $?." |
| 553 | @echo "Please run the `configure' script again." | 553 | @echo "Please run the 'configure' script again." |
| 554 | exit 1 | ||
| 555 | |||
| 556 | ../config.status:: config.in | ||
| 557 | @echo "The file config.h needs to be set up from config.in." | ||
| 558 | @echo "Please run the `configure' script again." | ||
| 559 | exit 1 | 554 | exit 1 |
| 560 | 555 | ||
| 561 | doc.o: buildobj.h | 556 | doc.o: buildobj.h |
| @@ -668,6 +663,9 @@ $(lisp): $(BOOTSTRAPEMACS) | |||
| 668 | 663 | ||
| 669 | ## VCSWITNESS points to the file that holds info about the current checkout. | 664 | ## VCSWITNESS points to the file that holds info about the current checkout. |
| 670 | ## We use it as a heuristic to decide when to rebuild loaddefs.el. | 665 | ## We use it as a heuristic to decide when to rebuild loaddefs.el. |
| 666 | ## If empty it is ignored; the parent makefile can set it to some other value. | ||
| 667 | VCSWITNESS = | ||
| 668 | |||
| 671 | $(lispsource)/loaddefs.el: $(BOOTSTRAPEMACS) $(VCSWITNESS) | 669 | $(lispsource)/loaddefs.el: $(BOOTSTRAPEMACS) $(VCSWITNESS) |
| 672 | cd ../lisp; $(MAKE) $(MFLAGS) autoloads EMACS=$(bootstrap_exe) | 670 | cd ../lisp; $(MAKE) $(MFLAGS) autoloads EMACS=$(bootstrap_exe) |
| 673 | 671 | ||