]> git.eshelyaron.com Git - emacs.git/commitdiff
Move pdumper stuff below all target in src Makefile
authorDaniel Colascione <dancol@dancol.org>
Mon, 26 Feb 2018 17:29:20 +0000 (09:29 -0800)
committerDaniel Colascione <dancol@dancol.org>
Mon, 26 Feb 2018 17:29:20 +0000 (09:29 -0800)
src/Makefile.in

index ba5133372b6ef7f7ef3d0370abffde43ffa0b0d3..663748099bd1eba86b395e7e0c6cc5042de3b4b8 100644 (file)
@@ -411,14 +411,6 @@ base_obj = dispnew.o frame.o scroll.o xdisp.o menu.o $(XMENU_OBJ) window.o \
        $(W32_OBJ) $(WINDOW_SYSTEM_OBJ) $(XGSELOBJ) $(JSON_OBJ)
 obj = $(base_obj) $(NS_OBJC_OBJ)
 
-dmpstruct_headers=$(srcdir)/lisp.h $(srcdir)/buffer.h \
-       $(srcdir)/intervals.h $(srcdir)/charset.h
-pdumper.o: dmpstruct.h
-dmpstruct.h: $(srcdir)/dmpstruct.awk
-dmpstruct.h: $(libsrc)/make-fingerprint$(EXEEXT) $(dmpstruct_headers)
-       POSIXLY_CORRECT=1 awk -f $(srcdir)/dmpstruct.awk \
-               $(dmpstruct_headers) > $@
-
 ## Object files used on some machine or other.
 ## These go in the DOC file on all machines in case they are needed.
 ## Some of them have no DOC entries, but it does no harm to have them
@@ -459,6 +451,14 @@ ALLOBJS = $(FIRSTFILE_OBJ) $(VMLIMIT_OBJ) $(obj) $(otherobj)
 all: emacs$(EXEEXT) $(OTHER_FILES)
 .PHONY: all
 
+dmpstruct_headers=$(srcdir)/lisp.h $(srcdir)/buffer.h \
+       $(srcdir)/intervals.h $(srcdir)/charset.h
+pdumper.o: dmpstruct.h
+dmpstruct.h: $(srcdir)/dmpstruct.awk
+dmpstruct.h: $(libsrc)/make-fingerprint$(EXEEXT) $(dmpstruct_headers)
+       POSIXLY_CORRECT=1 awk -f $(srcdir)/dmpstruct.awk \
+               $(dmpstruct_headers) > $@
+
 AUTO_DEPEND = @AUTO_DEPEND@
 DEPDIR = deps
 ifeq ($(AUTO_DEPEND),yes)