diff options
author | mitchell <unknown> | 2018-03-14 15:32:31 -0400 |
---|---|---|
committer | mitchell <unknown> | 2018-03-14 15:32:31 -0400 |
commit | 2f2d53095329c93a33aa2de1ac15a451861b6921 (patch) | |
tree | c8173f5b1d753f79eba25fa36da0f5b33d2b5bd5 | |
parent | e2ac8b7e987becbdeb6333f07d4627bce168cb55 (diff) | |
download | scintilla-mirror-2f2d53095329c93a33aa2de1ac15a451861b6921.tar.gz |
Added DefaultLexer class to curses platform Makefile.
-rw-r--r-- | curses/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/curses/Makefile b/curses/Makefile index a21eae1c2..423353193 100644 --- a/curses/Makefile +++ b/curses/Makefile @@ -22,8 +22,9 @@ sci = AutoComplete.o CallTip.o CaseConvert.o CaseFolder.o Catalogue.o \ ExternalLexer.o Indicator.o KeyMap.o LineMarker.o MarginView.o PerLine.o \ PositionCache.o RESearch.o RunStyles.o ScintillaBase.o Selection.o \ Style.o UniConversion.o ViewStyle.o XPM.o \ - Accessor.o CharacterSet.o LexerBase.o LexerModule.o LexerNoExceptions.o \ - LexerSimple.o PropSetSimple.o StyleContext.o WordList.o + Accessor.o CharacterSet.o DefaultLexer.o LexerBase.o LexerModule.o \ + LexerNoExceptions.o LexerSimple.o PropSetSimple.o StyleContext.o \ + WordList.o lexers = $(addsuffix .o,$(basename $(sort $(notdir $(wildcard ../lexers/Lex*.cxx))))) ifdef LPEG_LEXER CXXFLAGS += -DLPEG_LEXER -I ../lua/src |