diff options
Diffstat (limited to 'win32/scintilla.mak')
| -rw-r--r-- | win32/scintilla.mak | 10 | 
1 files changed, 9 insertions, 1 deletions
| diff --git a/win32/scintilla.mak b/win32/scintilla.mak index da3c506bd..b6b4749ef 100644 --- a/win32/scintilla.mak +++ b/win32/scintilla.mak @@ -99,6 +99,7 @@ SOBJS=\  	$(DIR_O)\KeyMap.obj \  	$(DIR_O)\LineMarker.obj \  	$(DIR_O)\PlatWin.obj \ +	$(DIR_O)\PositionCache.obj \  	$(DIR_O)\PropSet.obj \  	$(DIR_O)\RESearch.obj \  	$(DIR_O)\RunStyles.obj \ @@ -193,6 +194,7 @@ LOBJS=\  	$(DIR_O)\KeyWords.obj \  	$(DIR_O)\LineMarker.obj \  	$(DIR_O)\PlatWin.obj \ +	$(DIR_O)\PositionCache.obj \  	$(DIR_O)\PropSet.obj \  	$(DIR_O)\RESearch.obj \  	$(DIR_O)\RunStyles.obj \ @@ -280,7 +282,7 @@ $(DIR_O)\Editor.obj: ../src/Editor.cxx ../include/Platform.h ../include/Scintill    ../src/Partitioning.h ../src/CellBuffer.h ../src/KeyMap.h \    ../src/RunStyles.h ../src/Indicator.h ../src/XPM.h ../src/LineMarker.h \    ../src/Style.h ../src/ViewStyle.h ../src/CharClassify.h \ -  ../src/Decoration.h ../src/Document.h ../src/Editor.h +  ../src/Decoration.h ../src/Document.h ../src/Editor.h ../src/PositionCache.h  $(DIR_O)\ExternalLexer.obj: ../src/ExternalLexer.cxx ../include/Platform.h \    ../include/Scintilla.h ../include/SciLexer.h ../include/PropSet.h \    ../include/SString.h ../include/Accessor.h ../src/DocumentAccessor.h \ @@ -427,6 +429,12 @@ $(DIR_O)\LineMarker.obj: ../src/LineMarker.cxx ../include/Platform.h \    ../include/Scintilla.h ../src/XPM.h ../src/LineMarker.h  $(DIR_O)\PlatWin.obj: PlatWin.cxx ../include/Platform.h PlatformRes.h \    ../src/UniConversion.h ../src/XPM.h +$(DIR_O)\PositionCache.obj: ../src/Editor.cxx ../include/Platform.h ../include/Scintilla.h \ +  ../src/ContractionState.h ../src/SVector.h ../src/SplitVector.h \ +  ../src/Partitioning.h ../src/CellBuffer.h ../src/KeyMap.h \ +  ../src/RunStyles.h ../src/Indicator.h ../src/XPM.h ../src/LineMarker.h \ +  ../src/Style.h ../src/ViewStyle.h ../src/CharClassify.h \ +  ../src/Decoration.h ../src/Document.h ../src/Editor.h ../src/PositionCache.h  $(DIR_O)\PropSet.obj: ../src/PropSet.cxx ../include/Platform.h ../include/PropSet.h \    ../include/SString.h  $(DIR_O)\RESearch.obj: ../src/RESearch.cxx ../src/CharClassify.h ../src/RESearch.h | 
