aboutsummaryrefslogtreecommitdiffhomepage
path: root/win32/makefile
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2002-07-20 10:57:45 +0000
committernyamatongwe <devnull@localhost>2002-07-20 10:57:45 +0000
commit99c2452f81122cf1797b14dcceb468adf6384dc8 (patch)
tree31a752902e0fd4c7fd6cdb7332a78824a1784dd6 /win32/makefile
parent8ae897b847a44d0115402f0b1dde28cd03cedac8 (diff)
downloadscintilla-mirror-99c2452f81122cf1797b14dcceb468adf6384dc8.tar.gz
Exporting direct calling function from DLLs.
Diffstat (limited to 'win32/makefile')
-rw-r--r--win32/makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/win32/makefile b/win32/makefile
index 5464740f0..0a7b5203b 100644
--- a/win32/makefile
+++ b/win32/makefile
@@ -49,16 +49,16 @@ SOBJS = ScintillaWin.o ScintillaBase.o Editor.o Document.o \
ContractionState.o CellBuffer.o CallTip.o \
ScintRes.o PlatWin.o KeyMap.o Indicator.o LineMarker.o RESearch.o \
Style.o ViewStyle.o AutoComplete.o UniConversion.o PropSet.o
-$(COMPONENT): $(SOBJS)
- $(DLLWRAP) --target i386-mingw32 -o $@ $(SOBJS) $(LDFLAGS) -s --relocatable
+$(COMPONENT): $(SOBJS) Scintilla.def
+ $(DLLWRAP) --add-stdcall-alias --target i386-mingw32 -o $@ $(SOBJS) $(LDFLAGS) -s --relocatable
LOBJS = ScintillaWinL.o ScintillaBaseL.o Editor.o Document.o \
ContractionState.o CellBuffer.o CallTip.o \
ScintRes.o PlatWin.o KeyMap.o Indicator.o LineMarker.o RESearch.o \
Style.o ViewStyle.o AutoComplete.o UniConversion.o KeyWords.o \
DocumentAccessor.o PropSet.o ExternalLexer.o StyleContext.o $(LEXOBJS)
-$(LEXCOMPONENT): $(LOBJS)
- $(DLLWRAP) --target i386-mingw32 -o $@ $(LOBJS) $(LDFLAGS) -s --relocatable
+$(LEXCOMPONENT): $(LOBJS) Scintilla.def
+ $(DLLWRAP) --add-stdcall-alias --target i386-mingw32 -o $@ $(LOBJS) $(LDFLAGS) -s --relocatable
# Automatically generate dependencies for most files with "make deps"
include deps.mak