diff options
author | nyamatongwe <devnull@localhost> | 2000-11-03 04:12:29 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2000-11-03 04:12:29 +0000 |
commit | dad0c62e972e280b83ce8ca8539136aa690c9b7f (patch) | |
tree | 694526f14845225c4dc1806d3a76bc4ab0db213c | |
parent | 79e250c80f09194c0cd93b2c2289253ee6344da8 (diff) | |
download | scintilla-mirror-dad0c62e972e280b83ce8ca8539136aa690c9b7f.tar.gz |
Added LexConf.
-rw-r--r-- | gtk/makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gtk/makefile b/gtk/makefile index bd2c17fa2..5389fe063 100644 --- a/gtk/makefile +++ b/gtk/makefile @@ -27,7 +27,7 @@ endif .cxx.o: $(CC) `gtk-config --cflags` $(INCLUDEDIRS) $(CXXFLAGS) -c $< -o $@ -LEXOBJS = LexCPP.o LexHTML.o LexLua.o LexOthers.o LexPerl.o LexPython.o LexSQL.o LexVB.o +LEXOBJS = LexCPP.o LexHTML.o LexLua.o LexOthers.o LexPerl.o LexPython.o LexSQL.o LexVB.o LexConf.o # The LEXOBJS have to be treated specially as the functions in them are not called from external code @@ -72,6 +72,8 @@ LexSQL.o: LexSQL.cxx Platform.h PropSet.h Accessor.h KeyWords.h \ Scintilla.h WinDefs.h SciLexer.h LexVB.o: LexVB.cxx Platform.h PropSet.h Accessor.h KeyWords.h \ Scintilla.h WinDefs.h SciLexer.h +LexConf.o: LexConf.cxx Platform.h PropSet.h Accessor.h KeyWords.h \ + Scintilla.h WinDefs.h SciLexer.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 |