aboutsummaryrefslogtreecommitdiffstats
path: root/src/Makefile.in
diff options
context:
space:
mode:
authorJoakim Verona2013-09-10 23:52:26 +0200
committerJoakim Verona2013-09-10 23:52:26 +0200
commit63dae8e97d343fd4ebfe3dc08f0e8dc932630a4c (patch)
treee5078c5545c777e21944a9ee4199a6f2c6d25ca9 /src/Makefile.in
parent92aeabcc8a007f521a664e3aee092eb80ad0f49a (diff)
downloademacs-63dae8e97d343fd4ebfe3dc08f0e8dc932630a4c.tar.gz
emacs-63dae8e97d343fd4ebfe3dc08f0e8dc932630a4c.zip
merge upstream
Diffstat (limited to 'src/Makefile.in')
-rw-r--r--src/Makefile.in16
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
26SHELL = /bin/sh 26SHELL = @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
561doc.o: buildobj.h 556doc.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.
667VCSWITNESS =
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