diff options
author | Neil <nyamatongwe@gmail.com> | 2019-12-13 10:15:42 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2019-12-13 10:15:42 +1100 |
commit | 54c7ef44396c43b964060cb15e2ebdbf7359cb02 (patch) | |
tree | 19e0aaa84f43dff55da2a4adefbbccdcc543a201 /win32/deps.mak | |
parent | 9f57c6efaee18d374da2abdb2e556830f2beb592 (diff) | |
download | scintilla-mirror-54c7ef44396c43b964060cb15e2ebdbf7359cb02.tar.gz |
Move SCI_LOADLEXERLIBRARY from platform layers to ScintillaBase.cxx.
This allows removal of related #include statements.
Diffstat (limited to 'win32/deps.mak')
-rw-r--r-- | win32/deps.mak | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/win32/deps.mak b/win32/deps.mak index 4f45f64c4..b7f4024cd 100644 --- a/win32/deps.mak +++ b/win32/deps.mak @@ -23,9 +23,7 @@ ScintillaWin.o: \ ../include/Sci_Position.h \ ../include/ILexer.h \ ../include/Scintilla.h \ - ../include/SciLexer.h \ ../lexlib/CharacterCategory.h \ - ../lexlib/LexerModule.h \ ../src/Position.h \ ../src/UniqueString.h \ ../src/SplitVector.h \ @@ -54,7 +52,6 @@ ScintillaWin.o: \ ../src/ElapsedPeriod.h \ ../src/AutoComplete.h \ ../src/ScintillaBase.h \ - ../src/ExternalLexer.h \ PlatWin.h \ HanjaDic.h \ ScintillaWin.h @@ -65,9 +62,7 @@ ScintillaWinL.o: \ ../include/Sci_Position.h \ ../include/ILexer.h \ ../include/Scintilla.h \ - ../include/SciLexer.h \ ../lexlib/CharacterCategory.h \ - ../lexlib/LexerModule.h \ ../src/Position.h \ ../src/UniqueString.h \ ../src/SplitVector.h \ @@ -96,7 +91,6 @@ ScintillaWinL.o: \ ../src/ElapsedPeriod.h \ ../src/AutoComplete.h \ ../src/ScintillaBase.h \ - ../src/ExternalLexer.h \ PlatWin.h \ HanjaDic.h \ ScintillaWin.h @@ -437,7 +431,8 @@ ScintillaBase.o: \ ../src/EditView.h \ ../src/Editor.h \ ../src/AutoComplete.h \ - ../src/ScintillaBase.h + ../src/ScintillaBase.h \ + ../src/ExternalLexer.h ScintillaBaseL.o: \ ../src/ScintillaBase.cxx \ ../include/Platform.h \ @@ -474,7 +469,8 @@ ScintillaBaseL.o: \ ../src/EditView.h \ ../src/Editor.h \ ../src/AutoComplete.h \ - ../src/ScintillaBase.h + ../src/ScintillaBase.h \ + ../src/ExternalLexer.h Selection.o: \ ../src/Selection.cxx \ ../include/Platform.h \ |