diff options
author | nyamatongwe <devnull@localhost> | 2001-04-03 12:45:38 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2001-04-03 12:45:38 +0000 |
commit | a1e68d0148853c74ec7f8cb0b10a5f810a0262b5 (patch) | |
tree | 9af75d238ed93765984a8d5c3663c6b88ffac1f5 /gtk | |
parent | 8a44372b918d6bf8fcfa238633a38d7dac4c0dd6 (diff) | |
download | scintilla-mirror-a1e68d0148853c74ec7f8cb0b10a5f810a0262b5.tar.gz |
Regular expression find support.
Diffstat (limited to 'gtk')
-rw-r--r-- | gtk/makefile | 7 | ||||
-rw-r--r-- | gtk/scintilla.mak | 8 |
2 files changed, 10 insertions, 5 deletions
diff --git a/gtk/makefile b/gtk/makefile index 77d7225e3..7ee7a70db 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 \ - Style.o Indicator.o AutoComplete.o + PosRegExp.o Style.o Indicator.o AutoComplete.o $(AR) rc $@ $^ AutoComplete.o: AutoComplete.cxx Platform.h AutoComplete.h @@ -43,8 +43,8 @@ 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 CellBuffer.h \ - Document.h +Document.o: Document.cxx Platform.h Scintilla.h WinDefs.h PosRegExp.h \
+ CellBuffer.h Document.h DocumentAccessor.o: DocumentAccessor.cxx Platform.h PropSet.h SString.h \ Accessor.h DocumentAccessor.h Scintilla.h WinDefs.h Editor.o: Editor.cxx Platform.h Scintilla.h WinDefs.h \ @@ -80,6 +80,7 @@ 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 SciTEBase.o: SciTEBase.cxx Platform.h WinDefs.h SciTE.h PropSet.h \ SString.h Accessor.h KeyWords.h Scintilla.h SciLexer.h SciTEBase.h diff --git a/gtk/scintilla.mak b/gtk/scintilla.mak index 6398b4122..0d813f63a 100644 --- a/gtk/scintilla.mak +++ b/gtk/scintilla.mak @@ -107,6 +107,7 @@ SOBJS=\ $(DIR_O)\KeyMap.obj \ $(DIR_O)\LineMarker.obj \ $(DIR_O)\PlatGTK.obj \ + $(DIR_O)\PosRegExp.obj \ $(DIR_O)\ScintillaBase.obj \ $(DIR_O)\ScintillaGTK.obj \ $(DIR_O)\Style.obj \ @@ -138,6 +139,7 @@ LOBJS=\ $(DIR_O)\KeyWords.obj \ $(DIR_O)\LineMarker.obj \ $(DIR_O)\PlatGTK.obj \ + $(DIR_O)\PosRegExp.obj \ $(DIR_O)\PropSet.obj \ $(DIR_O)\ScintillaBaseL.obj \ $(DIR_O)\ScintillaGTKL.obj \ @@ -203,8 +205,8 @@ $(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 ..\src\CellBuffer.h \ - ..\src\Document.h +$(DIR_O)\Document.obj: ..\src\Document.cxx ..\include\Platform.h ..\include\Scintilla.h ..\include\PosRegExp.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 @@ -253,6 +255,8 @@ $(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)\ScintillaBase.obj: ..\src\ScintillaBase.cxx ..\include\Platform.h ..\include\Scintilla.h \ |