aboutsummaryrefslogtreecommitdiffhomepage
path: root/win32/scintilla.mak
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2015-12-16 09:14:32 +1100
committerNeil <nyamatongwe@gmail.com>2015-12-16 09:14:32 +1100
commit579c8f3dc007c4b7f0b57c68edd7d67bc7e11b88 (patch)
tree02210792c111ba2f0b6ffc9ae146f6a7da80da68 /win32/scintilla.mak
parent497d552e0d6042a392ea21a3ba086ebb41c1b3e7 (diff)
downloadscintilla-mirror-579c8f3dc007c4b7f0b57c68edd7d67bc7e11b88.tar.gz
Don't use .DEF file as it is not needed.
Diffstat (limited to 'win32/scintilla.mak')
-rw-r--r--win32/scintilla.mak4
1 files changed, 2 insertions, 2 deletions
diff --git a/win32/scintilla.mak b/win32/scintilla.mak
index e0d16f387..9e4503b78 100644
--- a/win32/scintilla.mak
+++ b/win32/scintilla.mak
@@ -228,10 +228,10 @@ $(DIR_O)\ScintRes.res : ScintRes.rc
$(RC) -fo$@ $**
$(COMPONENT): $(SOBJS) $(DIR_O)\ScintRes.res
- $(LD) $(LDFLAGS) -DEF:Scintilla.def -DLL -OUT:$@ $** $(LIBS)
+ $(LD) $(LDFLAGS) -DLL -OUT:$@ $** $(LIBS)
$(LEXCOMPONENT): $(LOBJS) $(DIR_O)\ScintRes.res
- $(LD) $(LDFLAGS) -DEF:Scintilla.def -DLL -OUT:$@ $** $(LIBS)
+ $(LD) $(LDFLAGS) -DLL -OUT:$@ $** $(LIBS)
$(LEXLIB): $(LEXOBJS)
LIB /OUT:$@ $(LEXOBJS)