diff options
author | Neil <nyamatongwe@gmail.com> | 2019-12-31 20:19:24 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2019-12-31 20:19:24 +1100 |
commit | 0af155eae811e515b7d4fbad8e198cdf01f6ff2f (patch) | |
tree | 39e4b88da4736d3c6556cf1b39ca2e01b9e1a789 /win32/makefile | |
parent | eed707bb9ad6da944af207a51e4a8d460d6c6846 (diff) | |
download | scintilla-mirror-0af155eae811e515b7d4fbad8e198cdf01f6ff2f.tar.gz |
Implement SCI_SETILEXER.
Diffstat (limited to 'win32/makefile')
-rw-r--r-- | win32/makefile | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/win32/makefile b/win32/makefile index 30ae527fb..45c9c525b 100644 --- a/win32/makefile +++ b/win32/makefile @@ -100,6 +100,7 @@ SRC_OBJS = \ MarginView.o \ PerLine.o \ PositionCache.o \ + PropSetSimple.o \ RESearch.o \ RunStyles.o \ Selection.o \ @@ -112,13 +113,12 @@ SRC_OBJS = \ # Required by lexers LEXLIB_OBJS = \ Accessor.o \ - Catalogue.o \ + CatalogueL.o \ DefaultLexer.o \ ExternalLexer.o \ LexerBase.o \ LexerModule.o \ LexerSimple.o \ - PropSetSimple.o \ StyleContext.o \ WordList.o @@ -134,12 +134,18 @@ SCILEX_OBJS=\ COMPONENT_OBJS = \ $(SRC_OBJS) \ + Accessor.o \ + Catalogue.o \ HanjaDic.o \ + LexerBase.o \ + LexerModule.o \ + LexerSimple.o \ PlatWin.o \ ScintillaBase.o \ ScintillaDLL.o \ ScintillaWin.o \ - ScintRes.o + ScintRes.o \ + WordList.o LEXCOMPONENT_OBJS = \ $(SCILEX_OBJS) \ @@ -162,6 +168,12 @@ include deps.mak ScintillaBaseL.o: $(CXX) $(CXX_ALL_FLAGS) $(CXXFLAGS) -D SCI_LEXER -c $< -o $@ +Catalogue.o: Catalogue.cxx + $(CXX) $(CXX_ALL_FLAGS) $(CXXFLAGS) -D SCI_LEXER -D SCI_EMPTYCATALOGUE -c $< -o $@ + +CatalogueL.o: Catalogue.cxx + $(CXX) $(CXX_ALL_FLAGS) $(CXXFLAGS) -D SCI_LEXER -c $< -o $@ + ScintRes.o: ScintRes.rc $(WINDRES) ScintRes.rc $@ |