diff options
author | nyamatongwe <unknown> | 2010-11-10 22:15:14 +1100 |
---|---|---|
committer | nyamatongwe <unknown> | 2010-11-10 22:15:14 +1100 |
commit | 48c7024f089d44983851e5f11ad3dcbea3b65a1a (patch) | |
tree | 444e938aae68ffe940e372ab9f8bb1fe7a18f39c /src/LexGen.py | |
parent | c9ccf7798b07cf7ba6fe8ac5bc4fbc2f30398b74 (diff) | |
download | scintilla-mirror-48c7024f089d44983851e5f11ad3dcbea3b65a1a.tar.gz |
Remove support for Borland C++.
Use a library for the lexers with MSVC to simplify SciTE makefile.
Diffstat (limited to 'src/LexGen.py')
-rw-r--r-- | src/LexGen.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/LexGen.py b/src/LexGen.py index 5084596c6..d4ff21555 100644 --- a/src/LexGen.py +++ b/src/LexGen.py @@ -295,8 +295,8 @@ def RegenerateAll(): Regenerate(root + "scintilla/win32/scintilla.mak", "#", NATIVE, lexFiles) Regenerate(root + "scintilla/win32/scintilla_vc6.mak", "#", NATIVE, lexFiles) if os.path.exists(root + "scite"): - Regenerate(root + "scite/win32/makefile", "#", NATIVE, lexFiles, propFiles) - Regenerate(root + "scite/win32/scite.mak", "#", NATIVE, lexFiles, propFiles) + Regenerate(root + "scite/win32/makefile", "#", NATIVE, propFiles) + Regenerate(root + "scite/win32/scite.mak", "#", NATIVE, propFiles) Regenerate(root + "scite/src/SciTEProps.cxx", "//", NATIVE, lexerProperties) Regenerate(root + "scite/doc/SciTEDoc.html", "<!--", NATIVE, propertiesHTML) Generate(root + "scite/boundscheck/vcproj.gen", |