diff --git a/src/stc/scintilla/lexers/descrip.mms b/src/stc/scintilla/lexers/descrip.mms index 0e03b30c2e..9272835051 100644 --- a/src/stc/scintilla/lexers/descrip.mms +++ b/src/stc/scintilla/lexers/descrip.mms @@ -76,7 +76,8 @@ OBJECTS1=LexMMIXAL.obj,LexModula.obj,LexMPT.obj,LexMSSQL.obj,LexMySQL.obj,\ LexScriptol.obj,LexSmalltalk.obj,LexSML.obj,LexSorcus.obj,LexSpecman.obj,\ LexSpice.obj,LexSQL.obj,LexSTTXT.obj,LexTACL.obj,LexTADS3.obj,LexTAL.obj,\ LexTCL.obj,LexTCMD.obj,LexTeX.obj,LexTxt2tags.obj,LexVB.obj,\ - LexVerilog.obj,LexVHDL.obj,LexVisualProlog.obj,LexYAML.obj,LexDMAP.obj + LexVerilog.obj,LexVHDL.obj,LexVisualProlog.obj,LexYAML.obj,\ + LexDMAP.obj,LexHex.obj,LexBibTeX.obj,LexDMIS.obj,LexRegistry.obj SOURCES=LexA68k.cxx,LexAbaqus.cxx,LexAda.cxx,LexAPDL.cxx,LexAsm.cxx,\ LexAsn1.cxx,LexASY.cxx,LexAU3.cxx,LexAVE.cxx,LexAVS.cxx,LexBaan.cxx,\ @@ -96,7 +97,8 @@ SOURCES=LexA68k.cxx,LexAbaqus.cxx,LexAda.cxx,LexAPDL.cxx,LexAsm.cxx,\ LexScriptol.cxx,LexSmalltalk.cxx,LexSML.cxx,LexSorcus.cxx,LexSpecman.cxx,\ LexSpice.cxx,LexSQL.cxx,LexSTTXT.cxx,LexTACL.cxx,LexTADS3.cxx,LexTAL.cxx,\ LexTCL.cxx,LexTCMD.cxx,LexTeX.cxx,LexTxt2tags.cxx,LexVB.cxx,\ - LexVerilog.cxx,LexVHDL.cxx,LexVisualProlog.cxx,LexYAML.cxx,LexDMAP.cxx + LexVerilog.cxx,LexVHDL.cxx,LexVisualProlog.cxx,LexYAML.cxx,\ + LexDMAP.cxx LexHex.cxx LexBibTeX.cxx LexDMIS.cxx LexRegistry.cxx all : $(SOURCES) $(MMS)$(MMSQUALIFIERS) $(OBJECTS) @@ -222,3 +224,7 @@ LexVHDL.obj : LexVHDL.cxx LexVisualProlog.obj : LexVisualProlog.cxx LexYAML.obj : LexYAML.cxx LexDMAP.obj : LexDMAP.cxx +LexHex.obj : LexHex.cxx +LexBibTeX.obj : LexBibTeX.cxx +LexDMIS.obj : LexDMIS.cxx +LexRegistry.obj : LexRegistry.cxx diff --git a/src/stc/scintilla/src/descrip.mms b/src/stc/scintilla/src/descrip.mms index a435b70551..6f93668554 100644 --- a/src/stc/scintilla/src/descrip.mms +++ b/src/stc/scintilla/src/descrip.mms @@ -2,7 +2,7 @@ # * # Make file for VMS * # Author : J.Jansen (joukj@hrem.nano.tudelft.nl) * -# Date : 24 August 2012 * +# Date : 13 July 2015 * # * #***************************************************************************** @@ -58,14 +58,14 @@ OBJECTS=AutoComplete.obj,CallTip.obj,CaseConvert.obj,CaseFolder.obj,\ Decoration.obj,Document.obj,Editor.obj,ExternalLexer.obj,Indicator.obj,\ KeyMap.obj,LineMarker.obj,PerLine.obj,PositionCache.obj,RESearch.obj,\ RunStyles.obj,ScintillaBase.obj,Selection.obj,Style.obj,UniConversion.obj,\ - ViewStyle.obj,XPM.obj + ViewStyle.obj,XPM.obj,EditModel.obj,EditView.obj,MarginView.obj SOURCES=AutoComplete.cxx,CallTip.cxx,CaseConvert.cxx,CaseFolder.cxx,\ Catalogue.cxx,CellBuffer.cxx,CharClassify.cxx,ContractionState.cxx,\ Decoration.cxx,Document.cxx,Editor.cxx,ExternalLexer.cxx,Indicator.cxx,\ KeyMap.cxx,LineMarker.cxx,PerLine.cxx,PositionCache.cxx,RESearch.cxx,\ RunStyles.cxx,ScintillaBase.cxx,Selection.cxx,Style.cxx,UniConversion.cxx,\ - ViewStyle.cxx,XPM.cxx + ViewStyle.cxx,XPM.cxx,EditModel.cxx,EditView.cxx,MarginView.cxx all : $(SOURCES) $(MMS)$(MMSQUALIFIERS) $(OBJECTS) @@ -117,3 +117,6 @@ Style.obj : Style.cxx UniConversion.obj : UniConversion.cxx ViewStyle.obj : ViewStyle.cxx XPM.obj : XPM.cxx +EditModel.obj : EditModel.cxx +EditView.obj : EditView.cxx +MarginView.obj : MarginView.cxx