diff options
Diffstat (limited to 'win32/makefile')
-rw-r--r-- | win32/makefile | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/win32/makefile b/win32/makefile index 8874825cd..b0e5d0609 100644 --- a/win32/makefile +++ b/win32/makefile @@ -39,15 +39,16 @@ LEXOBJS = LexAVE.o LexConf.o LexCPP.o LexHTML.o LexLua.o LexOthers.o \ 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 Style.o \ - ViewStyle.o AutoComplete.o UniConversion.o + ScintRes.o PlatWin.o KeyMap.o Indicator.o LineMarker.o PosRegExp.o \ + Style.o ViewStyle.o AutoComplete.o UniConversion.o $(COMPONENT): $(SOBJS) $(DLLWRAP) --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 Style.o ViewStyle.o \ - AutoComplete.o UniConversion.o KeyWords.o DocumentAccessor.o PropSet.o $(LEXOBJS) + ScintRes.o PlatWin.o KeyMap.o Indicator.o LineMarker.o PosRegExp.o \ + Style.o ViewStyle.o AutoComplete.o UniConversion.o KeyWords.o \ + DocumentAccessor.o PropSet.o $(LEXOBJS) $(LEXCOMPONENT): $(LOBJS) $(DLLWRAP) --target i386-mingw32 -o $@ $(LOBJS) $(LDFLAGS) -s --relocatable @@ -55,8 +56,9 @@ AutoComplete.o: AutoComplete.cxx Platform.h AutoComplete.h CallTip.o: CallTip.cxx Platform.h CallTip.h CellBuffer.o: CellBuffer.cxx Platform.h Scintilla.h CellBuffer.h ContractionState.o: ContractionState.cxx Platform.h ContractionState.h -Document.o: Document.cxx Platform.h Scintilla.h CellBuffer.h \ +Document.o: Document.cxx Platform.h Scintilla.h PosRegExp.h CellBuffer.h \ Document.h +PosRegExp.o: PosRegExp.cxx PosRegExp.h DocumentAccessor.o: DocumentAccessor.cxx Platform.h PropSet.h \ SString.h Accessor.h DocumentAccessor.h Scintilla.h Editor.o: Editor.cxx Platform.h Scintilla.h ContractionState.h \ |