aboutsummaryrefslogtreecommitdiffhomepage
path: root/win32
diff options
context:
space:
mode:
Diffstat (limited to 'win32')
-rw-r--r--win32/deps.mak5
-rw-r--r--win32/makefile2
-rw-r--r--win32/objs.mak4
-rw-r--r--win32/scintilla.mak3
4 files changed, 12 insertions, 2 deletions
diff --git a/win32/deps.mak b/win32/deps.mak
index c81935b93..f46cfa7ef 100644
--- a/win32/deps.mak
+++ b/win32/deps.mak
@@ -51,7 +51,7 @@ LexerManager.o: ../src/LexerManager.cxx ..\include\SciLexer.h \
LexHTML.o: ../src/LexHTML.cxx ..\include\Platform.h \
..\include\PropSet.h ..\include\SString.h ..\include\Accessor.h \
..\include\KeyWords.h ..\include\Scintilla.h ..\include\SciLexer.h
-LexLISP.o: ../src/LexLISP.cxx ..\include\Platform.h \
+LexLisp.o: ../src/LexLisp.cxx ..\include\Platform.h \
..\include\PropSet.h ..\include\SString.h ..\include\Accessor.h \
..\include\KeyWords.h ..\include\Scintilla.h ..\include\SciLexer.h
LexLua.o: ../src/LexLua.cxx ..\include\Platform.h ..\include\PropSet.h \
@@ -69,6 +69,9 @@ LexPerl.o: ../src/LexPerl.cxx ..\include\Platform.h \
LexPython.o: ../src/LexPython.cxx ..\include\Platform.h \
..\include\PropSet.h ..\include\SString.h ..\include\Accessor.h \
..\include\KeyWords.h ..\include\Scintilla.h ..\include\SciLexer.h
+LexRuby.o: ../src/LexRuby.cxx ..\include\Platform.h \
+ ..\include\PropSet.h ..\include\SString.h ..\include\Accessor.h \
+ ..\include\KeyWords.h ..\include\Scintilla.h ..\include\SciLexer.h
LexSQL.o: ../src/LexSQL.cxx ..\include\Platform.h ..\include\PropSet.h \
..\include\SString.h ..\include\Accessor.h ..\include\KeyWords.h \
..\include\Scintilla.h ..\include\SciLexer.h
diff --git a/win32/makefile b/win32/makefile
index ff01961fc..d177302b2 100644
--- a/win32/makefile
+++ b/win32/makefile
@@ -39,7 +39,7 @@ deps:
LEXOBJS=LexAda.o LexAVE.o LexConf.o LexCPP.o LexHTML.o \
LexLisp.o LexLua.o LexOthers.o LexPascal.o LexPerl.o \
- LexPython.o LexSQL.o LexVB.o
+ LexPython.o LexRuby.o LexSQL.o LexVB.o
SOBJS = ScintillaWin.o ScintillaBase.o Editor.o Document.o \
ContractionState.o CellBuffer.o CallTip.o \
diff --git a/win32/objs.mak b/win32/objs.mak
index af07d957e..57bb8b8cf 100644
--- a/win32/objs.mak
+++ b/win32/objs.mak
@@ -62,6 +62,10 @@ $(DIR_O)\LexPerl.obj: ..\src\LexPerl.cxx ..\include\Platform.h ..\include\PropSe
$(DIR_O)\LexPython.obj: ..\src\LexPython.cxx ..\include\Platform.h ..\include\PropSet.h ..\include\Accessor.h ..\include\KeyWords.h \
..\include\Scintilla.h ..\include\SciLexer.h
$(CC) $(INCLUDEDIRS) $(CXXFLAGS) -c $(NAMEFLAG)$@ ..\src\$(@B).cxx
+
+$(DIR_O)\LexRuby.obj: ..\src\LexRuby.cxx ..\include\Platform.h ..\include\PropSet.h ..\include\Accessor.h ..\include\KeyWords.h \
+ ..\include\Scintilla.h ..\include\SciLexer.h
+ $(CC) $(INCLUDEDIRS) $(CXXFLAGS) -c $(NAMEFLAG)$@ ..\src\$(@B).cxx
$(DIR_O)\LexSQL.obj: ..\src\LexSQL.cxx ..\include\Platform.h ..\include\PropSet.h ..\include\Accessor.h ..\include\KeyWords.h \
..\include\Scintilla.h ..\include\SciLexer.h
diff --git a/win32/scintilla.mak b/win32/scintilla.mak
index 1c40cdb66..f9a757646 100644
--- a/win32/scintilla.mak
+++ b/win32/scintilla.mak
@@ -114,6 +114,7 @@ LEXOBJS=\
$(DIR_O)\LexPascal.obj \
$(DIR_O)\LexPerl.obj \
$(DIR_O)\LexPython.obj \
+ $(DIR_O)\LexRuby.obj \
$(DIR_O)\LexSQL.obj \
$(DIR_O)\LexVB.obj
@@ -236,6 +237,8 @@ $(DIR_O)\LexPerl.obj: ..\src\LexPerl.cxx $(LEX_HEADERS)
$(DIR_O)\LexPython.obj: ..\src\LexPython.cxx $(LEX_HEADERS)
+$(DIR_O)\LexRuby.obj: ..\src\LexRuby.cxx $(LEX_HEADERS)
+
$(DIR_O)\LexSQL.obj: ..\src\LexSQL.cxx $(LEX_HEADERS)
$(DIR_O)\LexVB.obj: ..\src\LexVB.cxx $(LEX_HEADERS)