aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2002-03-29 06:31:33 +0000
committernyamatongwe <devnull@localhost>2002-03-29 06:31:33 +0000
commit8947d717a43f3026cf3d246e43698d7ba266feaf (patch)
treed3f10d6072762e26ee91fa8889892c38eb278d1e
parentd432b53e3057891fb25eef60ae431d385d67a6f1 (diff)
downloadscintilla-mirror-8947d717a43f3026cf3d246e43698d7ba266feaf.tar.gz
Patch from Ralf Wagner to ensure DIR_O used for resource files.
-rw-r--r--win32/scintilla.mak8
1 files changed, 4 insertions, 4 deletions
diff --git a/win32/scintilla.mak b/win32/scintilla.mak
index 9fac9a7c8..3bc63f0af 100644
--- a/win32/scintilla.mak
+++ b/win32/scintilla.mak
@@ -162,14 +162,14 @@ $(LEXCOMPONENT): $(LOBJS) $(DIR_O)\ScintRes.res
!ELSE
-$(COMPONENT): $(SOBJS) ScintRes.res
- $(LD) $(LDFLAGS) -Tpd -c c0d32 $(SOBJS), $@, , $(LIBS), , ScintRes.res
+$(COMPONENT): $(SOBJS) $(DIR_O)\ScintRes.res
+ $(LD) $(LDFLAGS) -Tpd -c c0d32 $(SOBJS), $@, , $(LIBS), , $(DIR_O)\ScintRes.res
$(DIR_O)\ScintRes.res: ScintRes.rc
$(RC) $*.rc
-$(LEXCOMPONENT): $(LOBJS)
- $(LD) $(LDFLAGS) -Tpd -c c0d32 $(LOBJS), $@, , $(LIBS), , ScintRes.res
+$(LEXCOMPONENT): $(LOBJS) $(DIR_O)\ScintRes.res
+ $(LD) $(LDFLAGS) -Tpd -c c0d32 $(LOBJS), $@, , $(LIBS), , $(DIR_O)\ScintRes.res
!ENDIF