diff options
author | 2010-08-17 00:28:31 -0400 | |
---|---|---|
committer | 2010-08-17 00:28:31 -0400 | |
commit | 3d4c3dc0cba751e6a765ea33f6780f8d1a3fca21 (patch) | |
tree | f86a91034ba90fe049cf4b73dac7c4883383d320 /src | |
parent | 63bc0f15b6f475b53e86e31e88119781c560ba77 (diff) | |
download | textadept-3d4c3dc0cba751e6a765ea33f6780f8d1a3fca21.tar.gz textadept-3d4c3dc0cba751e6a765ea33f6780f8d1a3fca21.zip |
Upgraded to Scintilla/SciTE 2.20.
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile | 20 |
1 files changed, 12 insertions, 8 deletions
diff --git a/src/Makefile b/src/Makefile index 382b5021..8d75dcaf 100644 --- a/src/Makefile +++ b/src/Makefile @@ -59,14 +59,17 @@ GCOCOADIALOG = gcocoadialog.o SCI_CXXFLAGS = $(DEBUG_FLAG) -pedantic -Os $(PLAT_FLAGS) -DSCI_LEXER \ $(SCI_THREAD_FLAG) $(INCLUDEDIRS) -Iscintillua/src -Iscintillua/gtk \ - -Wall -Wno-missing-braces -Wno-char-subscripts + -Iscintillua/lexlib \ + -Wall -Wno-missing-braces -Wno-char-subscripts -Wno-long-long -SCINTILLA_OBJS = AutoComplete.o CallTip.o CellBuffer.o CharClassify.o \ - ContractionState.o Decoration.o Document.o DocumentAccessor.o Editor.o \ - ExternalLexer.o Indicator.o KeyMap.o KeyWords.o LexLPeg.o LineMarker.o \ - PerLine.o PositionCache.o PropSet.o RESearch.o RunStyles.o ScintillaBase.o \ - Selection.o Style.o StyleContext.o UniConversion.o ViewStyle.o \ - WindowAccessor.o XPM.o \ +SCINTILLA_OBJS = AutoComplete.o CallTip.o Catalogue.o CellBuffer.o \ + CharClassify.o ContractionState.o Decoration.o Document.o Editor.o \ + ExternalLexer.o Indicator.o KeyMap.o LineMarker.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 \ + LexLPeg.o \ PlatGTK.o ScintillaGTK.o SCINTILLA_MARSHALLER = scintilla-marshal.o @@ -74,7 +77,8 @@ SCINTILLA_MARSHALLER = scintilla-marshal.o all: $(TEXTADEPT) -$(SCINTILLA_OBJS): scintillua/gtk/*.cxx scintillua/src/*.cxx +$(SCINTILLA_OBJS): scintillua/gtk/*.cxx scintillua/src/*.cxx \ + scintillua/lexlib/*.cxx scintillua/lexers/LexLPeg.cxx $(CPP) $(SCI_CXXFLAGS) $(GTKFLAGS) -c $^ $(SCINTILLA_MARSHALLER): scintillua/gtk/scintilla-marshal.c $(CC) $(SCI_CXXFLAGS) $(GTKFLAGS) -w -c $^ |