diff options
Diffstat (limited to 'gtk')
| -rw-r--r-- | gtk/makefile | 6 | ||||
| -rw-r--r-- | gtk/scintilla.mak | 10 | 
2 files changed, 8 insertions, 8 deletions
| diff --git a/gtk/makefile b/gtk/makefile index 7ee7a70db..7e5967f8d 100644 --- a/gtk/makefile +++ b/gtk/makefile @@ -35,7 +35,7 @@ all: $(COMPLIB) $(LEXOBJS)  $(COMPLIB): DocumentAccessor.o WindowAccessor.o KeyWords.o Document.o CallTip.o \  	ScintillaBase.o ContractionState.o Editor.o PropSet.o PlatGTK.o \  	KeyMap.o LineMarker.o ScintillaGTK.o CellBuffer.o ViewStyle.o \ -	PosRegExp.o Style.o Indicator.o AutoComplete.o +	RESearch.o Style.o Indicator.o AutoComplete.o  	$(AR) rc $@ $^  AutoComplete.o: AutoComplete.cxx Platform.h AutoComplete.h @@ -43,7 +43,7 @@ CallTip.o: CallTip.cxx Platform.h CallTip.h  CellBuffer.o: CellBuffer.cxx Platform.h Scintilla.h WinDefs.h \   CellBuffer.h  ContractionState.o: ContractionState.cxx Platform.h ContractionState.h -Document.o: Document.cxx Platform.h Scintilla.h WinDefs.h PosRegExp.h \
 +Document.o: Document.cxx Platform.h Scintilla.h WinDefs.h RESearch.h \
   CellBuffer.h Document.h  DocumentAccessor.o: DocumentAccessor.cxx Platform.h PropSet.h SString.h \   Accessor.h DocumentAccessor.h Scintilla.h WinDefs.h @@ -80,8 +80,8 @@ LexVB.o: LexVB.cxx Platform.h PropSet.h SString.h \  LineMarker.o: LineMarker.cxx Platform.h Scintilla.h WinDefs.h \   LineMarker.h  PlatGTK.o: PlatGTK.cxx Platform.h Scintilla.h ScintillaWidget.h WinDefs.h -PosRegExp.o: PosRegExp.cxx PosRegExp.h  PropSet.o: PropSet.cxx Platform.h PropSet.h SString.h +RESearch.o: RESearch.cxx RESearch.h  SciTEBase.o: SciTEBase.cxx Platform.h WinDefs.h SciTE.h PropSet.h \   SString.h Accessor.h KeyWords.h Scintilla.h SciLexer.h SciTEBase.h  SciTEGTK.o: SciTEGTK.cxx Platform.h WinDefs.h SciTE.h PropSet.h \ diff --git a/gtk/scintilla.mak b/gtk/scintilla.mak index 0d813f63a..ceba4c777 100644 --- a/gtk/scintilla.mak +++ b/gtk/scintilla.mak @@ -107,7 +107,7 @@ SOBJS=\  	$(DIR_O)\KeyMap.obj \  	$(DIR_O)\LineMarker.obj \  	$(DIR_O)\PlatGTK.obj \ -	$(DIR_O)\PosRegExp.obj \ +	$(DIR_O)\RESearch.obj \  	$(DIR_O)\ScintillaBase.obj \  	$(DIR_O)\ScintillaGTK.obj \  	$(DIR_O)\Style.obj \ @@ -139,7 +139,7 @@ LOBJS=\  	$(DIR_O)\KeyWords.obj \  	$(DIR_O)\LineMarker.obj \  	$(DIR_O)\PlatGTK.obj \ -	$(DIR_O)\PosRegExp.obj \ +	$(DIR_O)\RESearch.obj \  	$(DIR_O)\PropSet.obj \  	$(DIR_O)\ScintillaBaseL.obj \  	$(DIR_O)\ScintillaGTKL.obj \ @@ -205,7 +205,7 @@ $(DIR_O)\CellBuffer.obj: ..\src\CellBuffer.cxx ..\include\Platform.h ..\include\  $(DIR_O)\ContractionState.obj: ..\src\ContractionState.cxx ..\include\Platform.h ..\src\ContractionState.h -$(DIR_O)\Document.obj: ..\src\Document.cxx ..\include\Platform.h ..\include\Scintilla.h ..\include\PosRegExp.h \ +$(DIR_O)\Document.obj: ..\src\Document.cxx ..\include\Platform.h ..\include\Scintilla.h ..\src\RESearch.h \   ..\src\CellBuffer.h ..\src\Document.h  $(DIR_O)\DocumentAccessor.obj: ..\src\DocumentAccessor.cxx ..\include\Platform.h ..\include\PropSet.h ..\include\Accessor.h ..\src\DocumentAccessor.h ..\include\Scintilla.h @@ -255,10 +255,10 @@ $(DIR_O)\LineMarker.obj: ..\src\LineMarker.cxx ..\include\Platform.h ..\include\  $(DIR_O)\PlatWin.obj: PlatWin.cxx ..\include\Platform.h PlatformRes.h ..\src\UniConversion.h -$(DIR_O)\PosRegExp.obj: ..\src\PosRegExp.cxx ..\include\PosRegExp.h -  $(DIR_O)\PropSet.obj: ..\src\PropSet.cxx ..\include\Platform.h ..\include\PropSet.h +$(DIR_O)\RESearch.obj: ..\src\RESearch.cxx ..\src\RESearch.h +  $(DIR_O)\ScintillaBase.obj: ..\src\ScintillaBase.cxx ..\include\Platform.h ..\include\Scintilla.h \   ..\src\ContractionState.h ..\src\CellBuffer.h ..\src\CallTip.h ..\src\KeyMap.h ..\src\Indicator.h \   ..\src\LineMarker.h ..\src\Style.h ..\src\ViewStyle.h ..\src\AutoComplete.h ..\src\Document.h ..\src\Editor.h \ | 
