diff options
author | nyamatongwe <devnull@localhost> | 2001-04-11 02:08:54 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2001-04-11 02:08:54 +0000 |
commit | 80572986104bce5f4b4aadb3876eaf97a199b7bf (patch) | |
tree | 80d628c0851a6d85e4b5e4cd8b405138d07a9d47 | |
parent | 3c75771013e293df2e13c1298bcc6050c303c885 (diff) | |
download | scintilla-mirror-80572986104bce5f4b4aadb3876eaf97a199b7bf.tar.gz |
Removed carriage returns.
-rw-r--r-- | gtk/makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gtk/makefile b/gtk/makefile index 06a8bf2b8..38d920f32 100644 --- a/gtk/makefile +++ b/gtk/makefile @@ -25,7 +25,7 @@ endif .cxx.o: $(CC) `gtk-config --cflags` $(INCLUDEDIRS) $(CXXFLAGS) -c $< -o $@ -LEXOBJS = LexAda.o LexAVE.o LexConf.o LexCPP.o LexHTML.o LexLua.o \
+LEXOBJS = LexAda.o LexAVE.o LexConf.o LexCPP.o LexHTML.o LexLua.o \ LexOthers.o LexPascal.o LexPerl.o LexPython.o LexSQL.o LexVB.o # The LEXOBJS have to be treated specially as the functions in them are not called from external code @@ -38,16 +38,16 @@ $(COMPLIB): DocumentAccessor.o WindowAccessor.o KeyWords.o Document.o CallTip.o RESearch.o Style.o Indicator.o AutoComplete.o $(AR) rc $@ $^ -# All lexers depend on this set of headers
+# All lexers depend on this set of headers LEX_HEADERS=Platform.h PropSet.h SString.h Accessor.h \ - KeyWords.h Scintilla.h WinDefs.h SciLexer.h
+ KeyWords.h Scintilla.h WinDefs.h SciLexer.h AutoComplete.o: AutoComplete.cxx Platform.h AutoComplete.h 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 RESearch.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 @@ -58,7 +58,7 @@ Indicator.o: Indicator.cxx Platform.h Scintilla.h WinDefs.h \ Indicator.h KeyMap.o: KeyMap.cxx Platform.h Scintilla.h WinDefs.h KeyMap.h KeyWords.o: KeyWords.cxx Platform.h PropSet.h SString.h Accessor.h \ - KeyWords.h Scintilla.h WinDefs.h SciLexer.h
+ KeyWords.h Scintilla.h WinDefs.h SciLexer.h LexAda.o: LexAda.cxx $(LEX_HEADERS) LexAVE.o: LexAVE.cxx $(LEX_HEADERS) LexConf.o: LexConf.cxx $(LEX_HEADERS) |