diff options
| -rw-r--r-- | win32/makefile | 18 | ||||
| -rw-r--r-- | win32/makefile_bor | 4 | 
2 files changed, 20 insertions, 2 deletions
| diff --git a/win32/makefile b/win32/makefile index 0dfded5a9..9dfb6be57 100644 --- a/win32/makefile +++ b/win32/makefile @@ -29,6 +29,8 @@ ALL:	$(COMPONENT) $(LEXCOMPONENT) ScintillaWinS.o  clean:  	del /q *.exe *.o *.obj *.dll *.res *.map +LEXOBJS	=  LexCPP.o LexHTML.o LexOthers.o LexPerl.o LexPython.o LexSQL.o LexVB.o +  SOBJS	= ScintillaWin.o ScintillaBase.o Editor.o Document.o \  	ContractionState.o CellBuffer.o CallTip.o \  	ScintRes.o PlatWin.o KeyMap.o Indicator.o LineMarker.o Style.o \ @@ -39,7 +41,7 @@ $(COMPONENT): $(SOBJS)  LOBJS	= ScintillaWinL.o ScintillaBaseL.o Editor.o Document.o \  	ContractionState.o CellBuffer.o CallTip.o \  	ScintRes.o PlatWin.o KeyMap.o Indicator.o LineMarker.o Style.o \ -	ViewStyle.o AutoComplete.o KeyWords.o Accessor.o PropSet.o +	ViewStyle.o AutoComplete.o KeyWords.o Accessor.o PropSet.o $(LEXOBJS)  $(LEXCOMPONENT): $(LOBJS)  	$(DLLWRAP) --target i386-mingw32 -o $(LEXCOMPONENT) $(LOBJS) $(LDFLAGS) -s --relocatable @@ -55,6 +57,20 @@ Editor.o: Editor.cxx Platform.h Scintilla.h ContractionState.h \   Document.h Editor.h  Indicator.o: Indicator.cxx Platform.h Scintilla.h Indicator.h  KeyMap.o: KeyMap.cxx Platform.h Scintilla.h KeyMap.h +LexCPP.o: LexCPP.cxx Platform.h PropSet.h Accessor.h KeyWords.h \ + Scintilla.h SciLexer.h  +LexHTML.o: LexHTML.cxx Platform.h PropSet.h Accessor.h KeyWords.h \ + Scintilla.h SciLexer.h  +LexOthers.o: LexOthers.cxx Platform.h PropSet.h Accessor.h KeyWords.h \ + Scintilla.h SciLexer.h  +LexPerl.o: LexPerl.cxx Platform.h PropSet.h Accessor.h KeyWords.h \ + Scintilla.h SciLexer.h  +LexPython.o: LexPython.cxx Platform.h PropSet.h Accessor.h KeyWords.h \ + Scintilla.h SciLexer.h  +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   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/makefile_bor b/win32/makefile_bor index 0b2cda968..a263d629e 100644 --- a/win32/makefile_bor +++ b/win32/makefile_bor @@ -34,10 +34,12 @@ SOBJS	= ScintillaWin.obj ScintillaBase.obj Editor.obj Document.obj \  $(COMPONENT): $(SOBJS) ScintRes.res  	$(LD) -Tpd /c c0d32 $(SOBJS), $(COMPONENT), ,$(LDFLAGS), , ScintRes.res +LEXOBJS	= LexCPP.obj LexHTML.obj LexOthers.obj LexPerl.obj LexPython.obj LexSQL.obj LexVB.obj +  LOBJS	= ScintillaWinL.obj ScintillaBaseL.obj Editor.obj Document.obj \  	ContractionState.obj CellBuffer.obj CallTip.obj \  	PlatWin.obj KeyMap.obj Indicator.obj LineMarker.obj Style.obj \ -	ViewStyle.obj AutoComplete.obj KeyWords.obj Accessor.obj PropSet.obj +	ViewStyle.obj AutoComplete.obj KeyWords.obj Accessor.obj PropSet.obj $(LEXOBJS)  $(LEXCOMPONENT): $(LOBJS)  	$(LD) -Tpd /c c0d32 $(LOBJS), $(LEXCOMPONENT), ,$(LDFLAGS), , ScintRes.res | 
