diff options
| author | Daniel Colascione | 2018-02-26 09:18:02 -0800 |
|---|---|---|
| committer | Daniel Colascione | 2018-02-26 09:18:11 -0800 |
| commit | 25271a63a01f5cfd7983713fb7a67b21c3c72b1c (patch) | |
| tree | 31e4634a1796572c5846a25d820f3ab1bdde376b | |
| parent | 7df482a82065f3c4ea78a4f53462c627fa820860 (diff) | |
| download | emacs-25271a63a01f5cfd7983713fb7a67b21c3c72b1c.tar.gz emacs-25271a63a01f5cfd7983713fb7a67b21c3c72b1c.zip | |
Make bare "make" in src actually build emacs again
* src/Makefile.in (all): Move target ahead of dep-file inclusion.
| -rw-r--r-- | src/Makefile.in | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/Makefile.in b/src/Makefile.in index 1f1ae40efef..1d23425969c 100644 --- a/src/Makefile.in +++ b/src/Makefile.in | |||
| @@ -442,6 +442,10 @@ otherobj= $(TERMCAP_OBJ) $(PRE_ALLOC_OBJ) $(GMALLOC_OBJ) $(RALLOC_OBJ) \ | |||
| 442 | FIRSTFILE_OBJ=@FIRSTFILE_OBJ@ | 442 | FIRSTFILE_OBJ=@FIRSTFILE_OBJ@ |
| 443 | ALLOBJS = $(FIRSTFILE_OBJ) $(VMLIMIT_OBJ) $(obj) $(otherobj) | 443 | ALLOBJS = $(FIRSTFILE_OBJ) $(VMLIMIT_OBJ) $(obj) $(otherobj) |
| 444 | 444 | ||
| 445 | # Must be first, before dep inclusion! | ||
| 446 | all: emacs$(EXEEXT) $(OTHER_FILES) | ||
| 447 | .PHONY: all | ||
| 448 | |||
| 445 | AUTO_DEPEND = @AUTO_DEPEND@ | 449 | AUTO_DEPEND = @AUTO_DEPEND@ |
| 446 | DEPDIR = deps | 450 | DEPDIR = deps |
| 447 | ifeq ($(AUTO_DEPEND),yes) | 451 | ifeq ($(AUTO_DEPEND),yes) |
| @@ -452,9 +456,6 @@ else | |||
| 452 | include $(srcdir)/deps.mk | 456 | include $(srcdir)/deps.mk |
| 453 | endif | 457 | endif |
| 454 | 458 | ||
| 455 | all: emacs$(EXEEXT) $(OTHER_FILES) | ||
| 456 | .PHONY: all | ||
| 457 | |||
| 458 | ## This is the list of all Lisp files that might be loaded into the | 459 | ## This is the list of all Lisp files that might be loaded into the |
| 459 | ## dumped Emacs. Some of them are not loaded on all platforms, but | 460 | ## dumped Emacs. Some of them are not loaded on all platforms, but |
| 460 | ## the DOC file on every platform uses them (because the DOC file is | 461 | ## the DOC file on every platform uses them (because the DOC file is |