aboutsummaryrefslogtreecommitdiffstats
path: root/nt
diff options
context:
space:
mode:
authorMiles Bader2008-04-23 05:55:42 +0000
committerMiles Bader2008-04-23 05:55:42 +0000
commita113b3ca322fd73d97d0d9d69c9f48dc13fb326a (patch)
tree37b3ad22a198a83f68738ef86aec187bb6d926d9 /nt
parente96a8d6dc0ffc35cf6c02924de2453c69fa8f6fe (diff)
parent81fe843b5a3cc7708e0800aeb5bc0dbe448e800a (diff)
downloademacs-a113b3ca322fd73d97d0d9d69c9f48dc13fb326a.tar.gz
emacs-a113b3ca322fd73d97d0d9d69c9f48dc13fb326a.zip
Merge from emacs--rel--22
Revision: emacs@sv.gnu.org/emacs--devo--0--patch-1121
Diffstat (limited to 'nt')
-rw-r--r--nt/ChangeLog12
-rw-r--r--nt/makefile.w32-in15
2 files changed, 22 insertions, 5 deletions
diff --git a/nt/ChangeLog b/nt/ChangeLog
index 4adb653464a..075814f120e 100644
--- a/nt/ChangeLog
+++ b/nt/ChangeLog
@@ -1,3 +1,15 @@
12008-04-23 Eli Zaretskii <eliz@gnu.org>
2
3 * makefile.w32-in (ALL): Move $(CLIENTRES) from here...
4 (all): ...to here. $(ALL) is a prerequisite of .PHONY, so having
5 a real file there is not a good idea.
6
72008-04-23 Jason Rumney <jasonr@gnu.org>
8
9 * makefile.w32-in (CLIENTRES): New variable and build target.
10 (all): Depend on it.
11 ($(TRES)): Use $(TRES) in rule.
12
12008-04-21 Jason Rumney <jasonr@gnu.org> 132008-04-21 Jason Rumney <jasonr@gnu.org>
2 14
3 * configure.bat (success): Print "make" rather than "gmake", as that 15 * configure.bat (success): Print "make" rather than "gmake", as that
diff --git a/nt/makefile.w32-in b/nt/makefile.w32-in
index ddf279cbdf7..053961a0c58 100644
--- a/nt/makefile.w32-in
+++ b/nt/makefile.w32-in
@@ -24,13 +24,15 @@
24# FIXME: This file uses DOS EOLs. Convert to Unix after 22.1 is out 24# FIXME: This file uses DOS EOLs. Convert to Unix after 22.1 is out
25# (and remove or replace this comment). 25# (and remove or replace this comment).
26 26
27TRES = $(BLD)/emacs.res
28CLIENTRES = $(BLD)/emacsclient.res
29
30XMFLAGS =
31
27ALL = addpm ddeclient runemacs cmdproxy addsection preprep 32ALL = addpm ddeclient runemacs cmdproxy addsection preprep
28 33
29.PHONY: $(ALL) 34.PHONY: $(ALL)
30 35
31TRES = $(BLD)/emacs.res
32
33XMFLAGS =
34 36
35addpm: stamp_BLD $(BLD)/addpm.exe 37addpm: stamp_BLD $(BLD)/addpm.exe
36$(BLD)/addpm.exe: $(BLD)/addpm.$(O) 38$(BLD)/addpm.exe: $(BLD)/addpm.$(O)
@@ -62,7 +64,10 @@ $(BLD)/preprep.exe: $(BLD)/preprep.$(O)
62# it is not necessary on later versions, it is still ok to use it. 64# it is not necessary on later versions, it is still ok to use it.
63# 65#
64$(TRES): emacs.rc icons/emacs.ico emacs.manifest stamp_BLD 66$(TRES): emacs.rc icons/emacs.ico emacs.manifest stamp_BLD
65 $(RC) $(RC_OUT)$(BLD)/emacs.res emacs.rc 67 $(RC) $(RC_OUT)$(TRES) emacs.rc
68
69$(CLIENTRES): emacsclient.rc stamp_BLD
70 $(RC) $(RC_OUT)$(CLIENTRES) emacsclient.rc
66 71
67runemacs: stamp_BLD $(BLD)/runemacs.exe 72runemacs: stamp_BLD $(BLD)/runemacs.exe
68$(BLD)/runemacs.exe: $(BLD)/runemacs.$(O) $(TRES) 73$(BLD)/runemacs.exe: $(BLD)/runemacs.$(O) $(TRES)
@@ -81,7 +86,7 @@ $(BLD)/addpm.$(O) $(BLD)/ddeclient.$(O) $(BLD)/runemacs.$(O) $(BLD)/cmdproxy.$(O
81# 86#
82# Build emacs 87# Build emacs
83# 88#
84all: which-sh stamp_BLD $(ALL) maybe-bootstrap all-other-dirs-$(MAKETYPE) 89all: which-sh stamp_BLD $(ALL) $(CLIENTRES) maybe-bootstrap all-other-dirs-$(MAKETYPE)
85 90
86all-other-dirs-nmake: addsection 91all-other-dirs-nmake: addsection
87 cd ..\lib-src 92 cd ..\lib-src