diff options
author | nyamatongwe <devnull@localhost> | 2013-05-23 16:07:54 +1000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2013-05-23 16:07:54 +1000 |
commit | 413444468f55e977a7b60a928c53e66cfe305460 (patch) | |
tree | c56e6dee6f32a9ef596de9699ab94a65009f943c /win32/scintilla.mak | |
parent | b77531466b99bf70358658e0e33b4288be436fea (diff) | |
download | scintilla-mirror-413444468f55e977a7b60a928c53e66cfe305460.tar.gz |
Feature: [feature-requests:#959]. Added lexer and folder for Structured Text language.
from Pavel Bulochkin
Diffstat (limited to 'win32/scintilla.mak')
-rw-r--r-- | win32/scintilla.mak | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/win32/scintilla.mak b/win32/scintilla.mak index a943609b1..708aac07d 100644 --- a/win32/scintilla.mak +++ b/win32/scintilla.mak @@ -164,6 +164,7 @@ LEXOBJS=\ $(DIR_O)\LexSpecman.obj \ $(DIR_O)\LexSpice.obj \ $(DIR_O)\LexSQL.obj \ + $(DIR_O)\LexSTTXT.obj \ $(DIR_O)\LexTACL.obj \ $(DIR_O)\LexTADS3.obj \ $(DIR_O)\LexTAL.obj \ @@ -446,6 +447,8 @@ $(DIR_O)\LexSpice.obj: ..\lexers\LexSpice.cxx $(LEX_HEADERS) $(DIR_O)\LexSQL.obj: ..\lexers\LexSQL.cxx $(LEX_HEADERS) +$(DIR_O)\LexSTTXT.obj: ..\lexers\LexSTTXT.cxx $(LEX_HEADERS) + $(DIR_O)\LexTACL.obj: ..\lexers\LexTACL.cxx $(LEX_HEADERS) $(DIR_O)\LexTADS3.obj: ..\lexers\LexTADS3.cxx $(LEX_HEADERS) |