diff options
author | Neil <nyamatongwe@gmail.com> | 2021-07-03 08:28:56 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2021-07-03 08:28:56 +1000 |
commit | c15fc57b0be7d5a81b8e67a943a4db8e80898e06 (patch) | |
tree | 7dbd9b5f52e6b8fcdd1addc6767eba069388734b /win32/DepGen.py | |
parent | 7b646db9fbfb71c41c477b01d99e1e1c6c85cef8 (diff) | |
download | scintilla-mirror-c15fc57b0be7d5a81b8e67a943a4db8e80898e06.tar.gz |
Remove remnants of support for including lexers in Scintilla.
Diffstat (limited to 'win32/DepGen.py')
-rw-r--r-- | win32/DepGen.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/win32/DepGen.py b/win32/DepGen.py index 72ae027a5..f2cbb4838 100644 --- a/win32/DepGen.py +++ b/win32/DepGen.py @@ -19,12 +19,6 @@ def Generate(): # Create the dependencies file for g++ deps = Dependencies.FindDependencies(["../win32/*.cxx"] + sources, ["../win32"] + includes, ".o", "../win32/") - # Add ScintillaBaseL as the same as ScintillaBase - deps = Dependencies.InsertSynonym(deps, "ScintillaBase.o", "ScintillaBaseL.o") - - # Add CatalogueL as the same as Catalogue - deps = Dependencies.InsertSynonym(deps, "Catalogue.o", "CatalogueL.o") - Dependencies.UpdateDependencies("../win32/deps.mak", deps, topComment) # Create the dependencies file for MSVC |