diff options
| author | nyamatongwe <devnull@localhost> | 2000-11-08 08:50:52 +0000 |
|---|---|---|
| committer | nyamatongwe <devnull@localhost> | 2000-11-08 08:50:52 +0000 |
| commit | 4eb5bc53a4bf2484b881750db2345847f54f8383 (patch) | |
| tree | 78ff11d08db59bd105108af43f04798ba3f7a429 /gtk | |
| parent | 1b96828ae50a99a3cad22bf0761a035c5bd5ed16 (diff) | |
| download | scintilla-mirror-4eb5bc53a4bf2484b881750db2345847f54f8383.tar.gz | |
Added Pascal Lexer.
Diffstat (limited to 'gtk')
| -rw-r--r-- | gtk/makefile | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/gtk/makefile b/gtk/makefile index 5389fe063..1fa3a24a1 100644 --- a/gtk/makefile +++ b/gtk/makefile @@ -15,7 +15,7 @@ vpath %.cxx ../src #CXXFLAGS= -g -DGTK -DSCI_LEXER -Wwrite-strings INCLUDEDIRS=-I ../include -I ../src -XIMFLAGS= -DUSE_XIM
+XIMFLAGS= -DUSE_XIM CXXBASEFLAGS= -DGTK -DSCI_LEXER -W -Wall $(XIMFLAGS) ifdef DEBUG @@ -27,7 +27,8 @@ 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 LexConf.o +LEXOBJS = 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 @@ -56,6 +57,8 @@ Indicator.o: Indicator.cxx Platform.h Scintilla.h WinDefs.h \ KeyMap.o: KeyMap.cxx Platform.h Scintilla.h WinDefs.h KeyMap.h KeyWords.o: KeyWords.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 LexCPP.o: LexCPP.cxx Platform.h PropSet.h Accessor.h KeyWords.h \ Scintilla.h WinDefs.h SciLexer.h LexHTML.o: LexHTML.cxx Platform.h PropSet.h Accessor.h KeyWords.h \ @@ -64,6 +67,8 @@ LexLua.o: LexLua.cxx Platform.h PropSet.h Accessor.h KeyWords.h \ Scintilla.h WinDefs.h SciLexer.h LexOthers.o: LexOthers.cxx Platform.h PropSet.h Accessor.h KeyWords.h \ Scintilla.h WinDefs.h SciLexer.h +LexPascal.o: LexPascal.cxx Platform.h PropSet.h Accessor.h KeyWords.h \ + Scintilla.h WinDefs.h SciLexer.h LexPerl.o: LexPerl.cxx Platform.h PropSet.h Accessor.h KeyWords.h \ Scintilla.h WinDefs.h SciLexer.h LexPython.o: LexPython.cxx Platform.h PropSet.h Accessor.h KeyWords.h \ @@ -72,8 +77,6 @@ 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 |
