diff options
-rw-r--r-- | win32/makefile | 4 | ||||
-rw-r--r-- | win32/scintilla.mak | 6 |
2 files changed, 8 insertions, 2 deletions
diff --git a/win32/makefile b/win32/makefile index eb4e37327..100636202 100644 --- a/win32/makefile +++ b/win32/makefile @@ -34,7 +34,7 @@ ALL: $(COMPONENT) $(LEXCOMPONENT) ScintillaWinS.o WindowAccessor.o clean: del /q *.exe *.o *.obj *.dll *.res *.map -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 SOBJS = ScintillaWin.o ScintillaBase.o Editor.o Document.o \ ContractionState.o CellBuffer.o CallTip.o \ @@ -78,6 +78,8 @@ LexSQL.o: LexSQL.cxx Platform.h PropSet.h Accessor.h KeyWords.h \ Scintilla.h SciLexer.h LexVB.o: LexVB.cxx Platform.h PropSet.h Accessor.h KeyWords.h \ Scintilla.h SciLexer.h +LexConf.o: LexConf.cxx Platform.h PropSet.h Accessor.h KeyWords.h \ + Scintilla.h SciLexer.h KeyWords.o: KeyWords.cxx Platform.h PropSet.h Accessor.h KeyWords.h \ Scintilla.h SciLexer.h LineMarker.o: LineMarker.cxx Platform.h Scintilla.h LineMarker.h diff --git a/win32/scintilla.mak b/win32/scintilla.mak index b4caa61e2..2109113c3 100644 --- a/win32/scintilla.mak +++ b/win32/scintilla.mak @@ -109,7 +109,8 @@ LEXOBJS=\ $(DIR_O)\LexPerl.obj \ $(DIR_O)\LexPython.obj \ $(DIR_O)\LexSQL.obj \ - $(DIR_O)\LexVB.obj + $(DIR_O)\LexVB.obj \ + $(DIR_O)\LexConf.obj LOBJS=\ $(DIR_O)\AutoComplete.obj \ @@ -220,6 +221,9 @@ $(DIR_O)\LexSQL.obj: ..\src\LexSQL.cxx ..\include\Platform.h ..\include\PropSet. $(DIR_O)\LexVB.obj: ..\src\LexVB.cxx ..\include\Platform.h ..\include\PropSet.h ..\include\Accessor.h ..\include\KeyWords.h \ ..\include\Scintilla.h ..\include\SciLexer.h +$(DIR_O)\LexConf.obj: ..\src\LexConf.cxx ..\include\Platform.h ..\include\PropSet.h ..\include\Accessor.h ..\include\KeyWords.h \ + ..\include\Scintilla.h ..\include\SciLexer.h + $(DIR_O)\LineMarker.obj: ..\src\LineMarker.cxx ..\include\Platform.h ..\include\Scintilla.h ..\src\LineMarker.h $(DIR_O)\PlatWin.obj: PlatWin.cxx ..\include\Platform.h PlatformRes.h ..\src\UniConversion.h |