From: Paul Eggert Date: Sat, 23 May 2015 22:07:17 +0000 (-0700) Subject: Put default action first in src/Makefile X-Git-Tag: emacs-25.0.90~1995 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=fa658b2e9075f6990e52c2f08a70586c87e98d22;p=emacs.git Put default action first in src/Makefile * src/Makefile.in (all): Put this rule before lisp.mk. That way, plain 'make' works in the src directory again. --- diff --git a/src/Makefile.in b/src/Makefile.in index d0df3260356..ad235bbcd4d 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -422,6 +422,9 @@ otherobj= $(TERMCAP_OBJ) $(PRE_ALLOC_OBJ) $(GMALLOC_OBJ) $(RALLOC_OBJ) \ FIRSTFILE_OBJ=@FIRSTFILE_OBJ@ ALLOBJS = $(FIRSTFILE_OBJ) $(VMLIMIT_OBJ) $(obj) $(otherobj) +all: emacs$(EXEEXT) $(OTHER_FILES) +.PHONY: all + ## This is the list of all Lisp files that might be loaded into the ## dumped Emacs. Some of them are not loaded on all platforms, but ## the DOC file on every platform uses them (because the DOC file is @@ -466,9 +469,6 @@ LIBES = $(LIBS) $(W32_LIBS) $(LIBS_GNUSTEP) $(LIBX_BASE) $(LIBIMAGE) \ $(LIBGNUTLS_LIBS) $(LIB_PTHREAD) \ $(GFILENOTIFY_LIBS) $(LIB_MATH) $(LIBZ) -all: emacs$(EXEEXT) $(OTHER_FILES) -.PHONY: all - $(leimdir)/leim-list.el: bootstrap-emacs$(EXEEXT) $(MAKE) -C ../leim leim-list.el EMACS="$(bootstrap_exe)"