diff options
Diffstat (limited to 'nt')
-rw-r--r-- | nt/ChangeLog | 6 | ||||
-rw-r--r-- | nt/makefile.w32-in | 4 |
2 files changed, 8 insertions, 2 deletions
diff --git a/nt/ChangeLog b/nt/ChangeLog index 6aea7bdc112..b2c31b303c1 100644 --- a/nt/ChangeLog +++ b/nt/ChangeLog @@ -1,3 +1,9 @@ +2008-04-11 Eli Zaretskii <eliz@gnu.org> + + * makefile.w32-in (ALL): Move $(CLIENTRES) from here... + (all): ...to here. $(ALL) is a prerequisite of .PHONY, so having + a real file there is not a good idea. + 2008-04-10 Jason Rumney <jasonr@gnu.org> * emacsclient.rc: New file. diff --git a/nt/makefile.w32-in b/nt/makefile.w32-in index aef71cfddd9..e9ffd8f5832 100644 --- a/nt/makefile.w32-in +++ b/nt/makefile.w32-in @@ -29,7 +29,7 @@ CLIENTRES = $(BLD)/emacsclient.res XMFLAGS =
-ALL = addpm ddeclient runemacs cmdproxy addsection preprep $(CLIENTRES)
+ALL = addpm ddeclient runemacs cmdproxy addsection preprep
.PHONY: $(ALL)
@@ -86,7 +86,7 @@ $(BLD)/addpm.$(O) $(BLD)/ddeclient.$(O) $(BLD)/runemacs.$(O) $(BLD)/cmdproxy.$(O #
# Build emacs
#
-all: which-sh stamp_BLD $(ALL) maybe-bootstrap all-other-dirs-$(MAKETYPE)
+all: which-sh stamp_BLD $(ALL) $(CLIENTRES) maybe-bootstrap all-other-dirs-$(MAKETYPE)
all-other-dirs-nmake: addsection
cd ..\lib-src
|