diff options
Diffstat (limited to 'src/Makefile.in')
| -rw-r--r-- | src/Makefile.in | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/Makefile.in b/src/Makefile.in index 1bc9a76cde5..a2221708afa 100644 --- a/src/Makefile.in +++ b/src/Makefile.in | |||
| @@ -56,6 +56,7 @@ lwlibdir = ../lwlib | |||
| 56 | config_h = config.h $(srcdir)/conf_post.h | 56 | config_h = config.h $(srcdir)/conf_post.h |
| 57 | 57 | ||
| 58 | bootstrap_exe = ../src/bootstrap-emacs$(EXEEXT) | 58 | bootstrap_exe = ../src/bootstrap-emacs$(EXEEXT) |
| 59 | temacs_exe = ../src/temacs$(EXEEXT) | ||
| 59 | 60 | ||
| 60 | ## ns-app if HAVE_NS, else empty. | 61 | ## ns-app if HAVE_NS, else empty. |
| 61 | OTHER_FILES = @OTHER_FILES@ | 62 | OTHER_FILES = @OTHER_FILES@ |
| @@ -745,10 +746,18 @@ VCSWITNESS = | |||
| 745 | $(lispsource)/loaddefs.el: $(VCSWITNESS) | bootstrap-emacs$(EXEEXT) | 746 | $(lispsource)/loaddefs.el: $(VCSWITNESS) | bootstrap-emacs$(EXEEXT) |
| 746 | $(MAKE) -C ../lisp autoloads EMACS="$(bootstrap_exe)" | 747 | $(MAKE) -C ../lisp autoloads EMACS="$(bootstrap_exe)" |
| 747 | 748 | ||
| 749 | temacs-loaddefs: | ||
| 750 | $(MAKE) -C ../lisp temacs-loaddefs | ||
| 751 | |||
| 752 | .PHONY: temacs-loaddefs | ||
| 753 | |||
| 748 | ## Dump an Emacs executable named bootstrap-emacs containing the | 754 | ## Dump an Emacs executable named bootstrap-emacs containing the |
| 749 | ## files from loadup.el in source form. | 755 | ## files from loadup.el in source form. |
| 750 | bootstrap-emacs$(EXEEXT): temacs$(EXEEXT) | 756 | bootstrap-emacs$(EXEEXT): temacs$(EXEEXT) |
| 751 | $(MAKE) -C ../lisp update-subdirs | 757 | $(MAKE) -C ../lisp update-subdirs |
| 758 | if test ! -f $(lispsource)/loaddefs.el; then \ | ||
| 759 | $(MAKE) temacs-loaddefs; \ | ||
| 760 | fi | ||
| 752 | ifeq ($(CANNOT_DUMP),yes) | 761 | ifeq ($(CANNOT_DUMP),yes) |
| 753 | ln -f temacs$(EXEEXT) $@ | 762 | ln -f temacs$(EXEEXT) $@ |
| 754 | else | 763 | else |