diff options
| author | nyamatongwe <unknown> | 2002-07-20 10:57:45 +0000 |
|---|---|---|
| committer | nyamatongwe <unknown> | 2002-07-20 10:57:45 +0000 |
| commit | 5b3026985488c90e95000a1e2be7c044e5296fbb (patch) | |
| tree | 31a752902e0fd4c7fd6cdb7332a78824a1784dd6 /win32/makefile | |
| parent | d9901647bd563c3c738e76a2f58888eda57e7e7b (diff) | |
| download | scintilla-mirror-5b3026985488c90e95000a1e2be7c044e5296fbb.tar.gz | |
Exporting direct calling function from DLLs.
Diffstat (limited to 'win32/makefile')
| -rw-r--r-- | win32/makefile | 8 |
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 |
