]> git.eshelyaron.com Git - emacs.git/commitdiff
Put default action first in src/Makefile
authorPaul Eggert <eggert@cs.ucla.edu>
Sat, 23 May 2015 22:07:17 +0000 (15:07 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Sat, 23 May 2015 22:08:19 +0000 (15:08 -0700)
* src/Makefile.in (all): Put this rule before lisp.mk.
That way, plain 'make' works in the src directory again.

src/Makefile.in

index d0df3260356096abf4ec84d1bb56ffe37a9f12c8..ad235bbcd4d5d6b1fbbac0d1a2c20f22b9c45ddf 100644 (file)
@@ -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)"