diff options
-rw-r--r-- | win32/scintilla.mak | 21 |
1 files changed, 15 insertions, 6 deletions
diff --git a/win32/scintilla.mak b/win32/scintilla.mak index abc00b1e6..ff2760c15 100644 --- a/win32/scintilla.mak +++ b/win32/scintilla.mak @@ -338,7 +338,6 @@ $(DIR_O)\CellBuffer.obj: \ ../src/UniConversion.h $(DIR_O)\CharacterCategory.obj: \ ../lexlib/CharacterCategory.cxx \ - ../lexlib/StringCopy.h \ ../lexlib/CharacterCategory.h $(DIR_O)\CharacterSet.obj: \ ../lexlib/CharacterSet.cxx \ @@ -401,7 +400,8 @@ $(DIR_O)\Document.obj: \ ../src/CaseFolder.h \ ../src/Document.h \ ../src/RESearch.h \ - ../src/UniConversion.h + ../src/UniConversion.h \ + ../src/ElapsedPeriod.h $(DIR_O)\EditModel.obj: \ ../src/EditModel.cxx \ ../include/Platform.h \ @@ -438,6 +438,7 @@ $(DIR_O)\Editor.obj: \ ../include/ILexer.h \ ../include/Scintilla.h \ ../lexlib/StringCopy.h \ + ../lexlib/CharacterSet.h \ ../src/Position.h \ ../src/UniqueString.h \ ../src/SplitVector.h \ @@ -493,7 +494,8 @@ $(DIR_O)\EditView.obj: \ ../src/PositionCache.h \ ../src/EditModel.h \ ../src/MarginView.h \ - ../src/EditView.h + ../src/EditView.h \ + ../src/ElapsedPeriod.h $(DIR_O)\ExternalLexer.obj: \ ../src/ExternalLexer.cxx \ ../include/Platform.h \ @@ -957,7 +959,10 @@ $(DIR_O)\ScintillaBaseL.obj: \ ../src/AutoComplete.h \ ../src/ScintillaBase.h $(DIR_O)\ScintillaDLL.obj: \ - ScintillaDLL.cxx + ScintillaDLL.cxx \ + ../include/Scintilla.h \ + ../include/Sci_Position.h \ + ScintillaWin.h $(DIR_O)\ScintillaWin.obj: \ ScintillaWin.cxx \ ../include/Platform.h \ @@ -991,10 +996,12 @@ $(DIR_O)\ScintillaWin.obj: \ ../src/MarginView.h \ ../src/EditView.h \ ../src/Editor.h \ + ../src/ElapsedPeriod.h \ ../src/AutoComplete.h \ ../src/ScintillaBase.h \ PlatWin.h \ - HanjaDic.h + HanjaDic.h \ + ScintillaWin.h $(DIR_O)\ScintillaWinL.obj: \ ScintillaWin.cxx \ ../include/Platform.h \ @@ -1028,10 +1035,12 @@ $(DIR_O)\ScintillaWinL.obj: \ ../src/MarginView.h \ ../src/EditView.h \ ../src/Editor.h \ + ../src/ElapsedPeriod.h \ ../src/AutoComplete.h \ ../src/ScintillaBase.h \ PlatWin.h \ - HanjaDic.h + HanjaDic.h \ + ScintillaWin.h $(DIR_O)\Selection.obj: \ ../src/Selection.cxx \ ../include/Platform.h \ |