(CLIENTRES): New variable and build target.
authorJason Rumney <jasonr@gnu.org>
Thu, 10 Apr 2008 09:44:59 +0000 (09:44 +0000)
committerJason Rumney <jasonr@gnu.org>
Thu, 10 Apr 2008 09:44:59 +0000 (09:44 +0000)
(all): Depend on it.
($(TRES)): Use $(TRES) in rule.

nt/ChangeLog
nt/makefile.w32-in

index ae0fe4d..6aea7bd 100644 (file)
@@ -2,6 +2,10 @@
 
        * emacsclient.rc: New file.
 
+       * makefile.w32-in (CLIENTRES): New variable and build target.
+       (all): Depend on it.
+       ($(TRES)): Use $(TRES) in rule.
+
 2008-03-26  Chong Yidong  <cyd@stupidchicken.com>
 
        * Version 22.2 released.
index e6567c0..aef71cf 100644 (file)
 # FIXME: This file uses DOS EOLs.  Convert to Unix after 22.1 is out\r
 #        (and remove or replace this comment).\r
 \r
-ALL            = addpm ddeclient runemacs cmdproxy addsection preprep\r
-\r
-.PHONY: $(ALL)\r
-\r
 TRES           = $(BLD)/emacs.res\r
+CLIENTRES      = $(BLD)/emacsclient.res\r
 \r
 XMFLAGS                =\r
 \r
+ALL            = addpm ddeclient runemacs cmdproxy addsection preprep $(CLIENTRES)\r
+\r
+.PHONY: $(ALL)\r
+\r
+\r
 addpm:           stamp_BLD $(BLD)/addpm.exe\r
 $(BLD)/addpm.exe: $(BLD)/addpm.$(O)\r
                  $(LINK) $(LINK_OUT)$@ \\r
@@ -62,7 +64,10 @@ $(BLD)/preprep.exe: $(BLD)/preprep.$(O)
 # it is not necessary on later versions, it is still ok to use it.\r
 #\r
 $(TRES):       emacs.rc stamp_BLD\r
-               $(RC) $(RC_OUT)$(BLD)/emacs.res emacs.rc\r
+               $(RC) $(RC_OUT)$(TRES) emacs.rc\r
+\r
+$(CLIENTRES):  emacsclient.rc stamp_BLD\r
+               $(RC) $(RC_OUT)$(CLIENTRES) emacsclient.rc\r
 \r
 runemacs:        stamp_BLD $(BLD)/runemacs.exe\r
 $(BLD)/runemacs.exe: $(BLD)/runemacs.$(O) $(TRES)\r