diff options
author | Eli Zaretskii <eliz@gnu.org> | 2006-12-24 07:22:10 +0000 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2006-12-24 07:22:10 +0000 |
commit | 2126efcc179485b8a3a40e8b021b3466f8c5c6c1 (patch) | |
tree | a0a952a1ed31a54bc87c1683b802b1c5cbd3aee1 /nt | |
parent | 3442bbbb30500386f02b1f47c0e61614ccaff907 (diff) | |
download | emacs-2126efcc179485b8a3a40e8b021b3466f8c5c6c1.tar.gz |
($(TRES)): Don't use $<, as nmake supports it only in implicit rules.
Use literal "emacs.rc" instead.
Diffstat (limited to 'nt')
-rw-r--r-- | nt/makefile.w32-in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nt/makefile.w32-in b/nt/makefile.w32-in index cc707cd30bb..90c1ab90a17 100644 --- a/nt/makefile.w32-in +++ b/nt/makefile.w32-in @@ -59,7 +59,7 @@ $(BLD)/preprep.exe: $(BLD)/preprep.$(O) # it is not necessary on later versions, it is still ok to use it.
#
$(TRES): emacs.rc stamp_BLD
- $(RC) $(RC_OUT)$(BLD)/emacs.res $<
+ $(RC) $(RC_OUT)$(BLD)/emacs.res emacs.rc
runemacs: stamp_BLD $(BLD)/runemacs.exe
$(BLD)/runemacs.exe: $(BLD)/runemacs.$(O) $(TRES)
|