aboutsummaryrefslogtreecommitdiffhomepage
path: root/lexilla/src
diff options
context:
space:
mode:
Diffstat (limited to 'lexilla/src')
-rw-r--r--lexilla/src/DepGen.py40
-rw-r--r--lexilla/src/Lexilla.cxx340
-rw-r--r--lexilla/src/Lexilla.def5
-rw-r--r--lexilla/src/Lexilla.h19
-rw-r--r--lexilla/src/Lexilla.vcxproj165
-rw-r--r--lexilla/src/Lexilla/Info.plist24
-rw-r--r--lexilla/src/Lexilla/Lexilla.xcodeproj/project.pbxproj902
-rw-r--r--lexilla/src/Lexilla/Lexilla.xcodeproj/project.xcworkspace/contents.xcworkspacedata7
-rw-r--r--lexilla/src/Lexilla/Lexilla.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist8
-rw-r--r--lexilla/src/LexillaVersion.rc37
-rw-r--r--lexilla/src/README45
-rw-r--r--lexilla/src/deps.mak1519
-rw-r--r--lexilla/src/lexilla.mak238
-rw-r--r--lexilla/src/makefile129
-rw-r--r--lexilla/src/nmdeps.mak1519
15 files changed, 0 insertions, 4997 deletions
diff --git a/lexilla/src/DepGen.py b/lexilla/src/DepGen.py
deleted file mode 100644
index 86cbb3bff..000000000
--- a/lexilla/src/DepGen.py
+++ /dev/null
@@ -1,40 +0,0 @@
-#!/usr/bin/env python3
-# DepGen.py - produce a make dependencies file for Scintilla
-# Copyright 2019 by Neil Hodgson <neilh@scintilla.org>
-# The License.txt file describes the conditions under which this software may be distributed.
-# Requires Python 3.6 or later
-
-import os, sys
-
-sys.path.append(os.path.join("..", ".."))
-
-from scripts import Dependencies
-
-topComment = "# Created by DepGen.py. To recreate, run DepGen.py.\n"
-
-def Generate():
- scintilla = os.path.join("..", "..")
- lexilla = os.path.join(scintilla, "lexilla")
- sources = [
- os.path.join(lexilla, "src", "Lexilla.cxx"),
- os.path.join(scintilla, "lexlib", "*.cxx"),
- os.path.join(scintilla, "lexers", "*.cxx")]
- includes = [
- os.path.join(scintilla, "include"),
- os.path.join(scintilla, "src"),
- os.path.join(scintilla, "lexlib")]
-
- # Create the dependencies file for g++
- deps = Dependencies.FindDependencies(sources, includes, ".o", "../lexilla/")
-
- Dependencies.UpdateDependencies(os.path.join(lexilla, "src", "deps.mak"), deps, topComment)
-
- # Create the dependencies file for MSVC
-
- # Place the objects in $(DIR_O) and change extension from ".o" to ".obj"
- deps = [["$(DIR_O)/"+Dependencies.PathStem(obj)+".obj", headers] for obj, headers in deps]
-
- Dependencies.UpdateDependencies(os.path.join(lexilla, "src", "nmdeps.mak"), deps, topComment)
-
-if __name__ == "__main__":
- Generate() \ No newline at end of file
diff --git a/lexilla/src/Lexilla.cxx b/lexilla/src/Lexilla.cxx
deleted file mode 100644
index 5a7b7a1f3..000000000
--- a/lexilla/src/Lexilla.cxx
+++ /dev/null
@@ -1,340 +0,0 @@
-// Scintilla source code edit control
-/** @file Lexilla.cxx
- ** Lexer infrastructure.
- ** Provides entry points to shared library.
- **/
-// Copyright 2019 by Neil Hodgson <neilh@scintilla.org>
-// The License.txt file describes the conditions under which this software may be distributed.
-
-#include <cstring>
-
-#include <vector>
-
-#if _WIN32
-#define EXPORT_FUNCTION __declspec(dllexport)
-#define CALLING_CONVENTION __stdcall
-#else
-#define EXPORT_FUNCTION __attribute__((visibility("default")))
-#define CALLING_CONVENTION
-#endif
-
-#include "ILexer.h"
-
-#include "LexerModule.h"
-#include "CatalogueModules.h"
-
-using namespace Scintilla;
-
-//++Autogenerated -- run lexilla/scripts/LexillaGen.py to regenerate
-//**\(extern LexerModule \*;\n\)
-extern LexerModule lmA68k;
-extern LexerModule lmAbaqus;
-extern LexerModule lmAda;
-extern LexerModule lmAPDL;
-extern LexerModule lmAs;
-extern LexerModule lmAsm;
-extern LexerModule lmAsn1;
-extern LexerModule lmASY;
-extern LexerModule lmAU3;
-extern LexerModule lmAVE;
-extern LexerModule lmAVS;
-extern LexerModule lmBaan;
-extern LexerModule lmBash;
-extern LexerModule lmBatch;
-extern LexerModule lmBibTeX;
-extern LexerModule lmBlitzBasic;
-extern LexerModule lmBullant;
-extern LexerModule lmCaml;
-extern LexerModule lmCIL;
-extern LexerModule lmClw;
-extern LexerModule lmClwNoCase;
-extern LexerModule lmCmake;
-extern LexerModule lmCOBOL;
-extern LexerModule lmCoffeeScript;
-extern LexerModule lmConf;
-extern LexerModule lmCPP;
-extern LexerModule lmCPPNoCase;
-extern LexerModule lmCsound;
-extern LexerModule lmCss;
-extern LexerModule lmD;
-extern LexerModule lmDataflex;
-extern LexerModule lmDiff;
-extern LexerModule lmDMAP;
-extern LexerModule lmDMIS;
-extern LexerModule lmECL;
-extern LexerModule lmEDIFACT;
-extern LexerModule lmEiffel;
-extern LexerModule lmEiffelkw;
-extern LexerModule lmErlang;
-extern LexerModule lmErrorList;
-extern LexerModule lmESCRIPT;
-extern LexerModule lmF77;
-extern LexerModule lmFlagShip;
-extern LexerModule lmForth;
-extern LexerModule lmFortran;
-extern LexerModule lmFreeBasic;
-extern LexerModule lmGAP;
-extern LexerModule lmGui4Cli;
-extern LexerModule lmHaskell;
-extern LexerModule lmHollywood;
-extern LexerModule lmHTML;
-extern LexerModule lmIHex;
-extern LexerModule lmIndent;
-extern LexerModule lmInno;
-extern LexerModule lmJSON;
-extern LexerModule lmKix;
-extern LexerModule lmKVIrc;
-extern LexerModule lmLatex;
-extern LexerModule lmLISP;
-extern LexerModule lmLiterateHaskell;
-extern LexerModule lmLot;
-extern LexerModule lmLout;
-extern LexerModule lmLua;
-extern LexerModule lmMagikSF;
-extern LexerModule lmMake;
-extern LexerModule lmMarkdown;
-extern LexerModule lmMatlab;
-extern LexerModule lmMaxima;
-extern LexerModule lmMETAPOST;
-extern LexerModule lmMMIXAL;
-extern LexerModule lmModula;
-extern LexerModule lmMSSQL;
-extern LexerModule lmMySQL;
-extern LexerModule lmNim;
-extern LexerModule lmNimrod;
-extern LexerModule lmNncrontab;
-extern LexerModule lmNsis;
-extern LexerModule lmNull;
-extern LexerModule lmOctave;
-extern LexerModule lmOpal;
-extern LexerModule lmOScript;
-extern LexerModule lmPascal;
-extern LexerModule lmPB;
-extern LexerModule lmPerl;
-extern LexerModule lmPHPSCRIPT;
-extern LexerModule lmPLM;
-extern LexerModule lmPO;
-extern LexerModule lmPOV;
-extern LexerModule lmPowerPro;
-extern LexerModule lmPowerShell;
-extern LexerModule lmProgress;
-extern LexerModule lmProps;
-extern LexerModule lmPS;
-extern LexerModule lmPureBasic;
-extern LexerModule lmPython;
-extern LexerModule lmR;
-extern LexerModule lmRaku;
-extern LexerModule lmREBOL;
-extern LexerModule lmRegistry;
-extern LexerModule lmRuby;
-extern LexerModule lmRust;
-extern LexerModule lmSAS;
-extern LexerModule lmScriptol;
-extern LexerModule lmSmalltalk;
-extern LexerModule lmSML;
-extern LexerModule lmSorc;
-extern LexerModule lmSpecman;
-extern LexerModule lmSpice;
-extern LexerModule lmSQL;
-extern LexerModule lmSrec;
-extern LexerModule lmStata;
-extern LexerModule lmSTTXT;
-extern LexerModule lmTACL;
-extern LexerModule lmTADS3;
-extern LexerModule lmTAL;
-extern LexerModule lmTCL;
-extern LexerModule lmTCMD;
-extern LexerModule lmTEHex;
-extern LexerModule lmTeX;
-extern LexerModule lmTxt2tags;
-extern LexerModule lmVB;
-extern LexerModule lmVBScript;
-extern LexerModule lmVerilog;
-extern LexerModule lmVHDL;
-extern LexerModule lmVisualProlog;
-extern LexerModule lmX12;
-extern LexerModule lmXML;
-extern LexerModule lmYAML;
-
-//--Autogenerated -- end of automatically generated section
-
-namespace {
-
-CatalogueModules catalogueLexilla;
-
-void AddEachLexer() {
-
- if (catalogueLexilla.Count() > 0) {
- return;
- }
-
-//++Autogenerated -- run scripts/LexGen.py to regenerate
-//**\(\tcatalogueLexilla.AddLexerModule(&\*);\n\)
- catalogueLexilla.AddLexerModule(&lmA68k);
- catalogueLexilla.AddLexerModule(&lmAbaqus);
- catalogueLexilla.AddLexerModule(&lmAda);
- catalogueLexilla.AddLexerModule(&lmAPDL);
- catalogueLexilla.AddLexerModule(&lmAs);
- catalogueLexilla.AddLexerModule(&lmAsm);
- catalogueLexilla.AddLexerModule(&lmAsn1);
- catalogueLexilla.AddLexerModule(&lmASY);
- catalogueLexilla.AddLexerModule(&lmAU3);
- catalogueLexilla.AddLexerModule(&lmAVE);
- catalogueLexilla.AddLexerModule(&lmAVS);
- catalogueLexilla.AddLexerModule(&lmBaan);
- catalogueLexilla.AddLexerModule(&lmBash);
- catalogueLexilla.AddLexerModule(&lmBatch);
- catalogueLexilla.AddLexerModule(&lmBibTeX);
- catalogueLexilla.AddLexerModule(&lmBlitzBasic);
- catalogueLexilla.AddLexerModule(&lmBullant);
- catalogueLexilla.AddLexerModule(&lmCaml);
- catalogueLexilla.AddLexerModule(&lmCIL);
- catalogueLexilla.AddLexerModule(&lmClw);
- catalogueLexilla.AddLexerModule(&lmClwNoCase);
- catalogueLexilla.AddLexerModule(&lmCmake);
- catalogueLexilla.AddLexerModule(&lmCOBOL);
- catalogueLexilla.AddLexerModule(&lmCoffeeScript);
- catalogueLexilla.AddLexerModule(&lmConf);
- catalogueLexilla.AddLexerModule(&lmCPP);
- catalogueLexilla.AddLexerModule(&lmCPPNoCase);
- catalogueLexilla.AddLexerModule(&lmCsound);
- catalogueLexilla.AddLexerModule(&lmCss);
- catalogueLexilla.AddLexerModule(&lmD);
- catalogueLexilla.AddLexerModule(&lmDataflex);
- catalogueLexilla.AddLexerModule(&lmDiff);
- catalogueLexilla.AddLexerModule(&lmDMAP);
- catalogueLexilla.AddLexerModule(&lmDMIS);
- catalogueLexilla.AddLexerModule(&lmECL);
- catalogueLexilla.AddLexerModule(&lmEDIFACT);
- catalogueLexilla.AddLexerModule(&lmEiffel);
- catalogueLexilla.AddLexerModule(&lmEiffelkw);
- catalogueLexilla.AddLexerModule(&lmErlang);
- catalogueLexilla.AddLexerModule(&lmErrorList);
- catalogueLexilla.AddLexerModule(&lmESCRIPT);
- catalogueLexilla.AddLexerModule(&lmF77);
- catalogueLexilla.AddLexerModule(&lmFlagShip);
- catalogueLexilla.AddLexerModule(&lmForth);
- catalogueLexilla.AddLexerModule(&lmFortran);
- catalogueLexilla.AddLexerModule(&lmFreeBasic);
- catalogueLexilla.AddLexerModule(&lmGAP);
- catalogueLexilla.AddLexerModule(&lmGui4Cli);
- catalogueLexilla.AddLexerModule(&lmHaskell);
- catalogueLexilla.AddLexerModule(&lmHollywood);
- catalogueLexilla.AddLexerModule(&lmHTML);
- catalogueLexilla.AddLexerModule(&lmIHex);
- catalogueLexilla.AddLexerModule(&lmIndent);
- catalogueLexilla.AddLexerModule(&lmInno);
- catalogueLexilla.AddLexerModule(&lmJSON);
- catalogueLexilla.AddLexerModule(&lmKix);
- catalogueLexilla.AddLexerModule(&lmKVIrc);
- catalogueLexilla.AddLexerModule(&lmLatex);
- catalogueLexilla.AddLexerModule(&lmLISP);
- catalogueLexilla.AddLexerModule(&lmLiterateHaskell);
- catalogueLexilla.AddLexerModule(&lmLot);
- catalogueLexilla.AddLexerModule(&lmLout);
- catalogueLexilla.AddLexerModule(&lmLua);
- catalogueLexilla.AddLexerModule(&lmMagikSF);
- catalogueLexilla.AddLexerModule(&lmMake);
- catalogueLexilla.AddLexerModule(&lmMarkdown);
- catalogueLexilla.AddLexerModule(&lmMatlab);
- catalogueLexilla.AddLexerModule(&lmMaxima);
- catalogueLexilla.AddLexerModule(&lmMETAPOST);
- catalogueLexilla.AddLexerModule(&lmMMIXAL);
- catalogueLexilla.AddLexerModule(&lmModula);
- catalogueLexilla.AddLexerModule(&lmMSSQL);
- catalogueLexilla.AddLexerModule(&lmMySQL);
- catalogueLexilla.AddLexerModule(&lmNim);
- catalogueLexilla.AddLexerModule(&lmNimrod);
- catalogueLexilla.AddLexerModule(&lmNncrontab);
- catalogueLexilla.AddLexerModule(&lmNsis);
- catalogueLexilla.AddLexerModule(&lmNull);
- catalogueLexilla.AddLexerModule(&lmOctave);
- catalogueLexilla.AddLexerModule(&lmOpal);
- catalogueLexilla.AddLexerModule(&lmOScript);
- catalogueLexilla.AddLexerModule(&lmPascal);
- catalogueLexilla.AddLexerModule(&lmPB);
- catalogueLexilla.AddLexerModule(&lmPerl);
- catalogueLexilla.AddLexerModule(&lmPHPSCRIPT);
- catalogueLexilla.AddLexerModule(&lmPLM);
- catalogueLexilla.AddLexerModule(&lmPO);
- catalogueLexilla.AddLexerModule(&lmPOV);
- catalogueLexilla.AddLexerModule(&lmPowerPro);
- catalogueLexilla.AddLexerModule(&lmPowerShell);
- catalogueLexilla.AddLexerModule(&lmProgress);
- catalogueLexilla.AddLexerModule(&lmProps);
- catalogueLexilla.AddLexerModule(&lmPS);
- catalogueLexilla.AddLexerModule(&lmPureBasic);
- catalogueLexilla.AddLexerModule(&lmPython);
- catalogueLexilla.AddLexerModule(&lmR);
- catalogueLexilla.AddLexerModule(&lmRaku);
- catalogueLexilla.AddLexerModule(&lmREBOL);
- catalogueLexilla.AddLexerModule(&lmRegistry);
- catalogueLexilla.AddLexerModule(&lmRuby);
- catalogueLexilla.AddLexerModule(&lmRust);
- catalogueLexilla.AddLexerModule(&lmSAS);
- catalogueLexilla.AddLexerModule(&lmScriptol);
- catalogueLexilla.AddLexerModule(&lmSmalltalk);
- catalogueLexilla.AddLexerModule(&lmSML);
- catalogueLexilla.AddLexerModule(&lmSorc);
- catalogueLexilla.AddLexerModule(&lmSpecman);
- catalogueLexilla.AddLexerModule(&lmSpice);
- catalogueLexilla.AddLexerModule(&lmSQL);
- catalogueLexilla.AddLexerModule(&lmSrec);
- catalogueLexilla.AddLexerModule(&lmStata);
- catalogueLexilla.AddLexerModule(&lmSTTXT);
- catalogueLexilla.AddLexerModule(&lmTACL);
- catalogueLexilla.AddLexerModule(&lmTADS3);
- catalogueLexilla.AddLexerModule(&lmTAL);
- catalogueLexilla.AddLexerModule(&lmTCL);
- catalogueLexilla.AddLexerModule(&lmTCMD);
- catalogueLexilla.AddLexerModule(&lmTEHex);
- catalogueLexilla.AddLexerModule(&lmTeX);
- catalogueLexilla.AddLexerModule(&lmTxt2tags);
- catalogueLexilla.AddLexerModule(&lmVB);
- catalogueLexilla.AddLexerModule(&lmVBScript);
- catalogueLexilla.AddLexerModule(&lmVerilog);
- catalogueLexilla.AddLexerModule(&lmVHDL);
- catalogueLexilla.AddLexerModule(&lmVisualProlog);
- catalogueLexilla.AddLexerModule(&lmX12);
- catalogueLexilla.AddLexerModule(&lmXML);
- catalogueLexilla.AddLexerModule(&lmYAML);
-
-//--Autogenerated -- end of automatically generated section
-
-}
-
-}
-
-extern "C" {
-
-EXPORT_FUNCTION int CALLING_CONVENTION GetLexerCount() {
- AddEachLexer();
- return catalogueLexilla.Count();
-}
-
-EXPORT_FUNCTION void CALLING_CONVENTION GetLexerName(unsigned int index, char *name, int buflength) {
- AddEachLexer();
- *name = 0;
- const char *lexerName = catalogueLexilla.Name(index);
- if (static_cast<size_t>(buflength) > strlen(lexerName)) {
- strcpy(name, lexerName);
- }
-}
-
-EXPORT_FUNCTION LexerFactoryFunction CALLING_CONVENTION GetLexerFactory(unsigned int index) {
- AddEachLexer();
- return catalogueLexilla.Factory(index);
-}
-
-EXPORT_FUNCTION ILexer5 * CALLING_CONVENTION CreateLexer(const char *name) {
- AddEachLexer();
- for (unsigned int i = 0; i < catalogueLexilla.Count(); i++) {
- const char *lexerName = catalogueLexilla.Name(i);
- if (0 == strcmp(lexerName, name)) {
- return catalogueLexilla.Create(i);
- }
- }
- return nullptr;
-}
-
-}
diff --git a/lexilla/src/Lexilla.def b/lexilla/src/Lexilla.def
deleted file mode 100644
index 4455c7a82..000000000
--- a/lexilla/src/Lexilla.def
+++ /dev/null
@@ -1,5 +0,0 @@
-EXPORTS
- GetLexerCount
- GetLexerName
- GetLexerFactory
- CreateLexer
diff --git a/lexilla/src/Lexilla.h b/lexilla/src/Lexilla.h
deleted file mode 100644
index 92b6378c0..000000000
--- a/lexilla/src/Lexilla.h
+++ /dev/null
@@ -1,19 +0,0 @@
-// Scintilla source code edit control
-/** @file Lexilla.h
- ** Lexer infrastructure.
- ** Declare functions in Lexilla library.
- **/
-// Copyright 2019 by Neil Hodgson <neilh@scintilla.org>
-// The License.txt file describes the conditions under which this software may be distributed.
-
-#if _WIN32
-#define LEXILLA_CALLING_CONVENTION __stdcall
-#else
-#define LEXILLA_CALLING_CONVENTION
-#endif
-
-extern "C" {
-
-Scintilla::ILexer5 * LEXILLA_CALLING_CONVENTION CreateLexer(const char *name);
-
-}
diff --git a/lexilla/src/Lexilla.vcxproj b/lexilla/src/Lexilla.vcxproj
deleted file mode 100644
index 7fd055008..000000000
--- a/lexilla/src/Lexilla.vcxproj
+++ /dev/null
@@ -1,165 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<Project DefaultTargets="Build" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
- <ItemGroup Label="ProjectConfigurations">
- <ProjectConfiguration Include="Debug|ARM64">
- <Configuration>Debug</Configuration>
- <Platform>ARM64</Platform>
- </ProjectConfiguration>
- <ProjectConfiguration Include="Debug|Win32">
- <Configuration>Debug</Configuration>
- <Platform>Win32</Platform>
- </ProjectConfiguration>
- <ProjectConfiguration Include="Debug|x64">
- <Configuration>Debug</Configuration>
- <Platform>x64</Platform>
- </ProjectConfiguration>
- <ProjectConfiguration Include="Release|ARM64">
- <Configuration>Release</Configuration>
- <Platform>ARM64</Platform>
- </ProjectConfiguration>
- <ProjectConfiguration Include="Release|Win32">
- <Configuration>Release</Configuration>
- <Platform>Win32</Platform>
- </ProjectConfiguration>
- <ProjectConfiguration Include="Release|x64">
- <Configuration>Release</Configuration>
- <Platform>x64</Platform>
- </ProjectConfiguration>
- </ItemGroup>
- <PropertyGroup Label="Globals">
- <ProjectGuid>{E541C9BE-13BC-4CE6-A0A4-31145F51A2C1}</ProjectGuid>
- <Keyword>Win32Proj</Keyword>
- <RootNamespace>Lexilla</RootNamespace>
- </PropertyGroup>
- <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
- <PropertyGroup>
- <ConfigurationType>DynamicLibrary</ConfigurationType>
- <CharacterSet>Unicode</CharacterSet>
- <PlatformToolset>v141</PlatformToolset>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
- <UseDebugLibraries>true</UseDebugLibraries>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
- <UseDebugLibraries>true</UseDebugLibraries>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'" Label="Configuration">
- <UseDebugLibraries>true</UseDebugLibraries>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
- <UseDebugLibraries>false</UseDebugLibraries>
- <WholeProgramOptimization>true</WholeProgramOptimization>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
- <UseDebugLibraries>false</UseDebugLibraries>
- <WholeProgramOptimization>true</WholeProgramOptimization>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'" Label="Configuration">
- <UseDebugLibraries>false</UseDebugLibraries>
- <WholeProgramOptimization>true</WholeProgramOptimization>
- </PropertyGroup>
- <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
- <ImportGroup Label="ExtensionSettings">
- </ImportGroup>
- <ImportGroup Label="PropertySheets">
- <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
- </ImportGroup>
- <PropertyGroup Label="UserMacros" />
- <PropertyGroup>
- <LinkIncremental>false</LinkIncremental>
- </PropertyGroup>
- <ItemDefinitionGroup>
- <ClCompile>
- <WarningLevel>Level4</WarningLevel>
- <PreprocessorDefinitions>WIN32;SCI_LEXER;_CRT_SECURE_NO_DEPRECATE;_SCL_SECURE_NO_WARNINGS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
- <AdditionalIncludeDirectories>..\..\include;..\src;..\..\lexlib;</AdditionalIncludeDirectories>
- <BrowseInformation>true</BrowseInformation>
- <MultiProcessorCompilation>true</MultiProcessorCompilation>
- <MinimalRebuild>false</MinimalRebuild>
- <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
- </ClCompile>
- <Link>
- <SubSystem>Windows</SubSystem>
- <GenerateDebugInformation>true</GenerateDebugInformation>
- <AdditionalDependencies>gdi32.lib;imm32.lib;ole32.lib;oleaut32.lib;msimg32.lib;%(AdditionalDependencies)</AdditionalDependencies>
- </Link>
- </ItemDefinitionGroup>
- <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
- <ClCompile>
- <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
- <LanguageStandard>stdcpp17</LanguageStandard>
- </ClCompile>
- <Link>
- <LinkTimeCodeGeneration>Default</LinkTimeCodeGeneration>
- </Link>
- </ItemDefinitionGroup>
- <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
- <ClCompile>
- <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
- <LanguageStandard>stdcpp17</LanguageStandard>
- </ClCompile>
- <Link>
- <LinkTimeCodeGeneration>Default</LinkTimeCodeGeneration>
- </Link>
- </ItemDefinitionGroup>
- <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'">
- <ClCompile>
- <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
- <LanguageStandard>stdcpp17</LanguageStandard>
- </ClCompile>
- <Link>
- <LinkTimeCodeGeneration>Default</LinkTimeCodeGeneration>
- </Link>
- </ItemDefinitionGroup>
- <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
- <ClCompile>
- <FunctionLevelLinking>true</FunctionLevelLinking>
- <IntrinsicFunctions>true</IntrinsicFunctions>
- <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
- <LanguageStandard>stdcpp17</LanguageStandard>
- </ClCompile>
- <Link>
- <EnableCOMDATFolding>true</EnableCOMDATFolding>
- <OptimizeReferences>true</OptimizeReferences>
- </Link>
- </ItemDefinitionGroup>
- <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
- <ClCompile>
- <FunctionLevelLinking>true</FunctionLevelLinking>
- <IntrinsicFunctions>true</IntrinsicFunctions>
- <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
- <LanguageStandard>stdcpp17</LanguageStandard>
- </ClCompile>
- <Link>
- <EnableCOMDATFolding>true</EnableCOMDATFolding>
- <OptimizeReferences>true</OptimizeReferences>
- </Link>
- </ItemDefinitionGroup>
- <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'">
- <ClCompile>
- <FunctionLevelLinking>true</FunctionLevelLinking>
- <IntrinsicFunctions>true</IntrinsicFunctions>
- <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
- <LanguageStandard>stdcpp17</LanguageStandard>
- </ClCompile>
- <Link>
- <EnableCOMDATFolding>true</EnableCOMDATFolding>
- <OptimizeReferences>true</OptimizeReferences>
- </Link>
- </ItemDefinitionGroup>
- <ItemGroup>
- <ClCompile Include="..\..\lexers\*.cxx" />
- <ClCompile Include="..\..\lexlib\*.cxx" />
- <ClCompile Include="..\src\Lexilla.cxx" />
- </ItemGroup>
- <ItemGroup>
- <ClInclude Include="..\..\include\SciLexer.h" />
- <ClInclude Include="..\src\*.h" />
- </ItemGroup>
- <ItemGroup>
- <ResourceCompile Include="..\src\LexillaVersion.rc" />
- </ItemGroup>
- <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
- <ImportGroup Label="ExtensionTargets">
- </ImportGroup>
-</Project> \ No newline at end of file
diff --git a/lexilla/src/Lexilla/Info.plist b/lexilla/src/Lexilla/Info.plist
deleted file mode 100644
index 9637b2e87..000000000
--- a/lexilla/src/Lexilla/Info.plist
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
-<plist version="1.0">
-<dict>
- <key>CFBundleDevelopmentRegion</key>
- <string>$(DEVELOPMENT_LANGUAGE)</string>
- <key>CFBundleExecutable</key>
- <string>$(EXECUTABLE_NAME)</string>
- <key>CFBundleIdentifier</key>
- <string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
- <key>CFBundleInfoDictionaryVersion</key>
- <string>6.0</string>
- <key>CFBundleName</key>
- <string>$(PRODUCT_NAME)</string>
- <key>CFBundlePackageType</key>
- <string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>
- <key>CFBundleShortVersionString</key>
- <string>4.4.6</string>
- <key>CFBundleVersion</key>
- <string>$(CURRENT_PROJECT_VERSION)</string>
- <key>NSHumanReadableCopyright</key>
- <string>Copyright © 2020 Neil Hodgson. All rights reserved.</string>
-</dict>
-</plist>
diff --git a/lexilla/src/Lexilla/Lexilla.xcodeproj/project.pbxproj b/lexilla/src/Lexilla/Lexilla.xcodeproj/project.pbxproj
deleted file mode 100644
index a5d0b8738..000000000
--- a/lexilla/src/Lexilla/Lexilla.xcodeproj/project.pbxproj
+++ /dev/null
@@ -1,902 +0,0 @@
-// !$*UTF8*$!
-{
- archiveVersion = 1;
- classes = {
- };
- objectVersion = 50;
- objects = {
-
-/* Begin PBXBuildFile section */
- 28BA72AB24E34D5B00272C2D /* LexerBase.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA728F24E34D5A00272C2D /* LexerBase.cxx */; };
- 28BA72AC24E34D5B00272C2D /* LexAccessor.h in Headers */ = {isa = PBXBuildFile; fileRef = 28BA729024E34D5A00272C2D /* LexAccessor.h */; };
- 28BA72AD24E34D5B00272C2D /* DefaultLexer.h in Headers */ = {isa = PBXBuildFile; fileRef = 28BA729124E34D5A00272C2D /* DefaultLexer.h */; };
- 28BA72AE24E34D5B00272C2D /* SubStyles.h in Headers */ = {isa = PBXBuildFile; fileRef = 28BA729224E34D5A00272C2D /* SubStyles.h */; };
- 28BA72AF24E34D5B00272C2D /* LexerNoExceptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 28BA729324E34D5A00272C2D /* LexerNoExceptions.h */; };
- 28BA72B024E34D5B00272C2D /* LexerModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 28BA729424E34D5A00272C2D /* LexerModule.h */; };
- 28BA72B124E34D5B00272C2D /* CharacterCategory.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA729524E34D5A00272C2D /* CharacterCategory.cxx */; };
- 28BA72B224E34D5B00272C2D /* LexerSimple.h in Headers */ = {isa = PBXBuildFile; fileRef = 28BA729624E34D5A00272C2D /* LexerSimple.h */; };
- 28BA72B324E34D5B00272C2D /* Accessor.h in Headers */ = {isa = PBXBuildFile; fileRef = 28BA729724E34D5A00272C2D /* Accessor.h */; };
- 28BA72B424E34D5B00272C2D /* PropSetSimple.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA729824E34D5A00272C2D /* PropSetSimple.cxx */; };
- 28BA72B524E34D5B00272C2D /* CharacterSet.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA729924E34D5A00272C2D /* CharacterSet.cxx */; };
- 28BA72B624E34D5B00272C2D /* SparseState.h in Headers */ = {isa = PBXBuildFile; fileRef = 28BA729A24E34D5A00272C2D /* SparseState.h */; };
- 28BA72B724E34D5B00272C2D /* WordList.h in Headers */ = {isa = PBXBuildFile; fileRef = 28BA729B24E34D5A00272C2D /* WordList.h */; };
- 28BA72B824E34D5B00272C2D /* DefaultLexer.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA729C24E34D5A00272C2D /* DefaultLexer.cxx */; };
- 28BA72B924E34D5B00272C2D /* LexerNoExceptions.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA729D24E34D5A00272C2D /* LexerNoExceptions.cxx */; };
- 28BA72BA24E34D5B00272C2D /* WordList.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA729E24E34D5A00272C2D /* WordList.cxx */; };
- 28BA72BB24E34D5B00272C2D /* OptionSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 28BA729F24E34D5A00272C2D /* OptionSet.h */; };
- 28BA72BC24E34D5B00272C2D /* CatalogueModules.h in Headers */ = {isa = PBXBuildFile; fileRef = 28BA72A024E34D5B00272C2D /* CatalogueModules.h */; };
- 28BA72BD24E34D5B00272C2D /* CharacterSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 28BA72A124E34D5B00272C2D /* CharacterSet.h */; };
- 28BA72BE24E34D5B00272C2D /* StyleContext.h in Headers */ = {isa = PBXBuildFile; fileRef = 28BA72A224E34D5B00272C2D /* StyleContext.h */; };
- 28BA72BF24E34D5B00272C2D /* PropSetSimple.h in Headers */ = {isa = PBXBuildFile; fileRef = 28BA72A324E34D5B00272C2D /* PropSetSimple.h */; };
- 28BA72C024E34D5B00272C2D /* StringCopy.h in Headers */ = {isa = PBXBuildFile; fileRef = 28BA72A424E34D5B00272C2D /* StringCopy.h */; };
- 28BA72C124E34D5B00272C2D /* LexerModule.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA72A524E34D5B00272C2D /* LexerModule.cxx */; };
- 28BA72C224E34D5B00272C2D /* LexerBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 28BA72A624E34D5B00272C2D /* LexerBase.h */; };
- 28BA72C324E34D5B00272C2D /* LexerSimple.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA72A724E34D5B00272C2D /* LexerSimple.cxx */; };
- 28BA72C424E34D5B00272C2D /* StyleContext.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA72A824E34D5B00272C2D /* StyleContext.cxx */; };
- 28BA72C524E34D5B00272C2D /* CharacterCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 28BA72A924E34D5B00272C2D /* CharacterCategory.h */; };
- 28BA72C624E34D5B00272C2D /* Accessor.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA72AA24E34D5B00272C2D /* Accessor.cxx */; };
- 28BA733924E34D9700272C2D /* LexBasic.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA72C724E34D9100272C2D /* LexBasic.cxx */; };
- 28BA733A24E34D9700272C2D /* LexCIL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA72C824E34D9100272C2D /* LexCIL.cxx */; };
- 28BA733B24E34D9700272C2D /* LexTCL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA72C924E34D9100272C2D /* LexTCL.cxx */; };
- 28BA733C24E34D9700272C2D /* LexMetapost.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA72CA24E34D9100272C2D /* LexMetapost.cxx */; };
- 28BA733D24E34D9700272C2D /* LexForth.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA72CB24E34D9100272C2D /* LexForth.cxx */; };
- 28BA733E24E34D9700272C2D /* LexSML.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA72CC24E34D9100272C2D /* LexSML.cxx */; };
- 28BA733F24E34D9700272C2D /* LexOScript.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA72CD24E34D9100272C2D /* LexOScript.cxx */; };
- 28BA734024E34D9700272C2D /* LexTACL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA72CE24E34D9100272C2D /* LexTACL.cxx */; };
- 28BA734124E34D9700272C2D /* LexGui4Cli.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA72CF24E34D9100272C2D /* LexGui4Cli.cxx */; };
- 28BA734224E34D9700272C2D /* LexCLW.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA72D024E34D9200272C2D /* LexCLW.cxx */; };
- 28BA734324E34D9700272C2D /* LexRebol.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA72D124E34D9200272C2D /* LexRebol.cxx */; };
- 28BA734424E34D9700272C2D /* LexSAS.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA72D224E34D9200272C2D /* LexSAS.cxx */; };
- 28BA734524E34D9700272C2D /* LexNim.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA72D324E34D9200272C2D /* LexNim.cxx */; };
- 28BA734624E34D9700272C2D /* LexSmalltalk.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA72D424E34D9200272C2D /* LexSmalltalk.cxx */; };
- 28BA734724E34D9700272C2D /* LexModula.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA72D524E34D9200272C2D /* LexModula.cxx */; };
- 28BA734824E34D9700272C2D /* LexBullant.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA72D624E34D9200272C2D /* LexBullant.cxx */; };
- 28BA734924E34D9700272C2D /* LexASY.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA72D724E34D9200272C2D /* LexASY.cxx */; };
- 28BA734A24E34D9700272C2D /* LexBash.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA72D824E34D9200272C2D /* LexBash.cxx */; };
- 28BA734B24E34D9700272C2D /* LexEiffel.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA72D924E34D9200272C2D /* LexEiffel.cxx */; };
- 28BA734C24E34D9700272C2D /* LexVHDL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA72DA24E34D9200272C2D /* LexVHDL.cxx */; };
- 28BA734D24E34D9700272C2D /* LexAsn1.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA72DB24E34D9200272C2D /* LexAsn1.cxx */; };
- 28BA734E24E34D9700272C2D /* LexCoffeeScript.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA72DC24E34D9200272C2D /* LexCoffeeScript.cxx */; };
- 28BA734F24E34D9700272C2D /* LexDiff.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA72DD24E34D9200272C2D /* LexDiff.cxx */; };
- 28BA735024E34D9700272C2D /* LexSorcus.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA72DE24E34D9200272C2D /* LexSorcus.cxx */; };
- 28BA735124E34D9700272C2D /* LexAPDL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA72DF24E34D9200272C2D /* LexAPDL.cxx */; };
- 28BA735224E34D9700272C2D /* LexD.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA72E024E34D9200272C2D /* LexD.cxx */; };
- 28BA735324E34D9700272C2D /* LexMySQL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA72E124E34D9200272C2D /* LexMySQL.cxx */; };
- 28BA735424E34D9700272C2D /* LexHollywood.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA72E224E34D9200272C2D /* LexHollywood.cxx */; };
- 28BA735524E34D9700272C2D /* LexProgress.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA72E324E34D9200272C2D /* LexProgress.cxx */; };
- 28BA735624E34D9700272C2D /* LexLisp.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA72E424E34D9200272C2D /* LexLisp.cxx */; };
- 28BA735724E34D9700272C2D /* LexPowerShell.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA72E524E34D9200272C2D /* LexPowerShell.cxx */; };
- 28BA735824E34D9700272C2D /* LexPS.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA72E624E34D9200272C2D /* LexPS.cxx */; };
- 28BA735924E34D9700272C2D /* LexYAML.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA72E724E34D9200272C2D /* LexYAML.cxx */; };
- 28BA735A24E34D9700272C2D /* LexErlang.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA72E824E34D9200272C2D /* LexErlang.cxx */; };
- 28BA735B24E34D9700272C2D /* LexRuby.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA72E924E34D9300272C2D /* LexRuby.cxx */; };
- 28BA735C24E34D9700272C2D /* LexIndent.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA72EA24E34D9300272C2D /* LexIndent.cxx */; };
- 28BA735D24E34D9700272C2D /* LexErrorList.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA72EB24E34D9300272C2D /* LexErrorList.cxx */; };
- 28BA735E24E34D9700272C2D /* LexFlagship.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA72EC24E34D9300272C2D /* LexFlagship.cxx */; };
- 28BA735F24E34D9700272C2D /* LexLaTeX.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA72ED24E34D9300272C2D /* LexLaTeX.cxx */; };
- 28BA736024E34D9700272C2D /* LexAbaqus.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA72EE24E34D9300272C2D /* LexAbaqus.cxx */; };
- 28BA736124E34D9700272C2D /* LexBatch.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA72EF24E34D9300272C2D /* LexBatch.cxx */; };
- 28BA736224E34D9700272C2D /* LexCPP.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA72F024E34D9300272C2D /* LexCPP.cxx */; };
- 28BA736324E34D9700272C2D /* LexRaku.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA72F124E34D9300272C2D /* LexRaku.cxx */; };
- 28BA736424E34D9700272C2D /* LexGAP.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA72F224E34D9300272C2D /* LexGAP.cxx */; };
- 28BA736524E34D9700272C2D /* LexSQL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA72F324E34D9300272C2D /* LexSQL.cxx */; };
- 28BA736624E34D9700272C2D /* LexNsis.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA72F424E34D9300272C2D /* LexNsis.cxx */; };
- 28BA736724E34D9700272C2D /* LexEDIFACT.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA72F524E34D9300272C2D /* LexEDIFACT.cxx */; };
- 28BA736824E34D9700272C2D /* LexEScript.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA72F624E34D9300272C2D /* LexEScript.cxx */; };
- 28BA736924E34D9700272C2D /* LexPOV.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA72F724E34D9300272C2D /* LexPOV.cxx */; };
- 28BA736A24E34D9700272C2D /* LexKVIrc.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA72F824E34D9300272C2D /* LexKVIrc.cxx */; };
- 28BA736B24E34D9700272C2D /* LexSpecman.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA72F924E34D9300272C2D /* LexSpecman.cxx */; };
- 28BA736C24E34D9700272C2D /* LexHTML.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA72FA24E34D9300272C2D /* LexHTML.cxx */; };
- 28BA736D24E34D9700272C2D /* LexFortran.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA72FB24E34D9400272C2D /* LexFortran.cxx */; };
- 28BA736E24E34D9700272C2D /* LexRegistry.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA72FC24E34D9400272C2D /* LexRegistry.cxx */; };
- 28BA736F24E34D9700272C2D /* LexPython.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA72FD24E34D9400272C2D /* LexPython.cxx */; };
- 28BA737024E34D9700272C2D /* LexCmake.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA72FE24E34D9400272C2D /* LexCmake.cxx */; };
- 28BA737124E34D9700272C2D /* LexAsm.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA72FF24E34D9400272C2D /* LexAsm.cxx */; };
- 28BA737224E34D9700272C2D /* LexAda.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA730024E34D9400272C2D /* LexAda.cxx */; };
- 28BA737324E34D9700272C2D /* LexCrontab.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA730124E34D9400272C2D /* LexCrontab.cxx */; };
- 28BA737424E34D9700272C2D /* LexDMIS.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA730224E34D9400272C2D /* LexDMIS.cxx */; };
- 28BA737524E34D9700272C2D /* LexTCMD.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA730324E34D9400272C2D /* LexTCMD.cxx */; };
- 28BA737624E34D9700272C2D /* LexConf.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA730424E34D9400272C2D /* LexConf.cxx */; };
- 28BA737724E34D9700272C2D /* LexInno.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA730524E34D9400272C2D /* LexInno.cxx */; };
- 28BA737824E34D9700272C2D /* LexA68k.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA730624E34D9400272C2D /* LexA68k.cxx */; };
- 28BA737924E34D9700272C2D /* LexMake.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA730724E34D9400272C2D /* LexMake.cxx */; };
- 28BA737A24E34D9700272C2D /* LexTeX.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA730824E34D9400272C2D /* LexTeX.cxx */; };
- 28BA737B24E34D9700272C2D /* LexSpice.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA730924E34D9400272C2D /* LexSpice.cxx */; };
- 28BA737C24E34D9700272C2D /* LexX12.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA730A24E34D9400272C2D /* LexX12.cxx */; };
- 28BA737D24E34D9700272C2D /* LexAU3.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA730B24E34D9400272C2D /* LexAU3.cxx */; };
- 28BA737E24E34D9700272C2D /* LexBaan.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA730C24E34D9400272C2D /* LexBaan.cxx */; };
- 28BA737F24E34D9700272C2D /* LexMPT.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA730D24E34D9500272C2D /* LexMPT.cxx */; };
- 28BA738024E34D9700272C2D /* LexTADS3.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA730E24E34D9500272C2D /* LexTADS3.cxx */; };
- 28BA738124E34D9700272C2D /* LexTxt2tags.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA730F24E34D9500272C2D /* LexTxt2tags.cxx */; };
- 28BA738224E34D9700272C2D /* LexMMIXAL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA731024E34D9500272C2D /* LexMMIXAL.cxx */; };
- 28BA738324E34D9700272C2D /* LexKix.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA731124E34D9500272C2D /* LexKix.cxx */; };
- 28BA738424E34D9700272C2D /* LexSTTXT.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA731224E34D9500272C2D /* LexSTTXT.cxx */; };
- 28BA738524E34D9700272C2D /* LexMagik.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA731324E34D9500272C2D /* LexMagik.cxx */; };
- 28BA738624E34D9700272C2D /* LexNull.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA731424E34D9500272C2D /* LexNull.cxx */; };
- 28BA738724E34D9700272C2D /* LexCsound.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA731524E34D9500272C2D /* LexCsound.cxx */; };
- 28BA738824E34D9700272C2D /* LexLua.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA731624E34D9500272C2D /* LexLua.cxx */; };
- 28BA738924E34D9700272C2D /* LexStata.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA731724E34D9500272C2D /* LexStata.cxx */; };
- 28BA738A24E34D9700272C2D /* LexOpal.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA731824E34D9500272C2D /* LexOpal.cxx */; };
- 28BA738B24E34D9700272C2D /* LexHex.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA731924E34D9500272C2D /* LexHex.cxx */; };
- 28BA738C24E34D9700272C2D /* LexVerilog.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA731A24E34D9500272C2D /* LexVerilog.cxx */; };
- 28BA738D24E34D9700272C2D /* LexHaskell.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA731B24E34D9500272C2D /* LexHaskell.cxx */; };
- 28BA738E24E34D9700272C2D /* LexR.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA731C24E34D9500272C2D /* LexR.cxx */; };
- 28BA738F24E34D9700272C2D /* LexScriptol.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA731D24E34D9500272C2D /* LexScriptol.cxx */; };
- 28BA739024E34D9700272C2D /* LexVisualProlog.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA731E24E34D9500272C2D /* LexVisualProlog.cxx */; };
- 28BA739124E34D9700272C2D /* LexVB.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA731F24E34D9600272C2D /* LexVB.cxx */; };
- 28BA739224E34D9700272C2D /* LexDMAP.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA732024E34D9600272C2D /* LexDMAP.cxx */; };
- 28BA739324E34D9700272C2D /* LexAVS.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA732124E34D9600272C2D /* LexAVS.cxx */; };
- 28BA739424E34D9700272C2D /* LexPB.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA732224E34D9600272C2D /* LexPB.cxx */; };
- 28BA739524E34D9700272C2D /* LexPO.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA732324E34D9600272C2D /* LexPO.cxx */; };
- 28BA739624E34D9700272C2D /* LexPowerPro.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA732424E34D9600272C2D /* LexPowerPro.cxx */; };
- 28BA739724E34D9700272C2D /* LexProps.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA732524E34D9600272C2D /* LexProps.cxx */; };
- 28BA739824E34D9700272C2D /* LexCOBOL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA732624E34D9600272C2D /* LexCOBOL.cxx */; };
- 28BA739924E34D9700272C2D /* LexPLM.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA732724E34D9600272C2D /* LexPLM.cxx */; };
- 28BA739A24E34D9700272C2D /* LexMSSQL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA732824E34D9600272C2D /* LexMSSQL.cxx */; };
- 28BA739B24E34D9700272C2D /* LexCSS.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA732924E34D9600272C2D /* LexCSS.cxx */; };
- 28BA739C24E34D9700272C2D /* LexMaxima.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA732A24E34D9600272C2D /* LexMaxima.cxx */; };
- 28BA739D24E34D9700272C2D /* LexCaml.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA732B24E34D9600272C2D /* LexCaml.cxx */; };
- 28BA739E24E34D9700272C2D /* LexDataflex.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA732C24E34D9600272C2D /* LexDataflex.cxx */; };
- 28BA739F24E34D9700272C2D /* LexLout.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA732D24E34D9600272C2D /* LexLout.cxx */; };
- 28BA73A024E34D9700272C2D /* LexTAL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA732E24E34D9600272C2D /* LexTAL.cxx */; };
- 28BA73A124E34D9700272C2D /* LexMarkdown.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA732F24E34D9600272C2D /* LexMarkdown.cxx */; };
- 28BA73A224E34D9700272C2D /* LexJSON.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA733024E34D9600272C2D /* LexJSON.cxx */; };
- 28BA73A324E34D9700272C2D /* LexPascal.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA733124E34D9700272C2D /* LexPascal.cxx */; };
- 28BA73A424E34D9700272C2D /* LexAVE.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA733224E34D9700272C2D /* LexAVE.cxx */; };
- 28BA73A524E34D9700272C2D /* LexECL.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA733324E34D9700272C2D /* LexECL.cxx */; };
- 28BA73A624E34D9700272C2D /* LexMatlab.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA733424E34D9700272C2D /* LexMatlab.cxx */; };
- 28BA73A724E34D9700272C2D /* LexBibTeX.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA733524E34D9700272C2D /* LexBibTeX.cxx */; };
- 28BA73A824E34D9700272C2D /* LexNimrod.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA733624E34D9700272C2D /* LexNimrod.cxx */; };
- 28BA73A924E34D9700272C2D /* LexPerl.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA733724E34D9700272C2D /* LexPerl.cxx */; };
- 28BA73AA24E34D9700272C2D /* LexRust.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA733824E34D9700272C2D /* LexRust.cxx */; };
- 28BA73AD24E34DBC00272C2D /* Lexilla.h in Headers */ = {isa = PBXBuildFile; fileRef = 28BA73AB24E34DBC00272C2D /* Lexilla.h */; };
- 28BA73AE24E34DBC00272C2D /* Lexilla.cxx in Sources */ = {isa = PBXBuildFile; fileRef = 28BA73AC24E34DBC00272C2D /* Lexilla.cxx */; };
-/* End PBXBuildFile section */
-
-/* Begin PBXFileReference section */
- 280262A5246DF655000DF3B8 /* liblexilla.dylib */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = liblexilla.dylib; sourceTree = BUILT_PRODUCTS_DIR; };
- 28BA728F24E34D5A00272C2D /* LexerBase.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexerBase.cxx; path = ../../../lexlib/LexerBase.cxx; sourceTree = "<group>"; };
- 28BA729024E34D5A00272C2D /* LexAccessor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = LexAccessor.h; path = ../../../lexlib/LexAccessor.h; sourceTree = "<group>"; };
- 28BA729124E34D5A00272C2D /* DefaultLexer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = DefaultLexer.h; path = ../../../lexlib/DefaultLexer.h; sourceTree = "<group>"; };
- 28BA729224E34D5A00272C2D /* SubStyles.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SubStyles.h; path = ../../../lexlib/SubStyles.h; sourceTree = "<group>"; };
- 28BA729324E34D5A00272C2D /* LexerNoExceptions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = LexerNoExceptions.h; path = ../../../lexlib/LexerNoExceptions.h; sourceTree = "<group>"; };
- 28BA729424E34D5A00272C2D /* LexerModule.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = LexerModule.h; path = ../../../lexlib/LexerModule.h; sourceTree = "<group>"; };
- 28BA729524E34D5A00272C2D /* CharacterCategory.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = CharacterCategory.cxx; path = ../../../lexlib/CharacterCategory.cxx; sourceTree = "<group>"; };
- 28BA729624E34D5A00272C2D /* LexerSimple.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = LexerSimple.h; path = ../../../lexlib/LexerSimple.h; sourceTree = "<group>"; };
- 28BA729724E34D5A00272C2D /* Accessor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Accessor.h; path = ../../../lexlib/Accessor.h; sourceTree = "<group>"; };
- 28BA729824E34D5A00272C2D /* PropSetSimple.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = PropSetSimple.cxx; path = ../../../lexlib/PropSetSimple.cxx; sourceTree = "<group>"; };
- 28BA729924E34D5A00272C2D /* CharacterSet.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = CharacterSet.cxx; path = ../../../lexlib/CharacterSet.cxx; sourceTree = "<group>"; };
- 28BA729A24E34D5A00272C2D /* SparseState.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SparseState.h; path = ../../../lexlib/SparseState.h; sourceTree = "<group>"; };
- 28BA729B24E34D5A00272C2D /* WordList.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = WordList.h; path = ../../../lexlib/WordList.h; sourceTree = "<group>"; };
- 28BA729C24E34D5A00272C2D /* DefaultLexer.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = DefaultLexer.cxx; path = ../../../lexlib/DefaultLexer.cxx; sourceTree = "<group>"; };
- 28BA729D24E34D5A00272C2D /* LexerNoExceptions.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexerNoExceptions.cxx; path = ../../../lexlib/LexerNoExceptions.cxx; sourceTree = "<group>"; };
- 28BA729E24E34D5A00272C2D /* WordList.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = WordList.cxx; path = ../../../lexlib/WordList.cxx; sourceTree = "<group>"; };
- 28BA729F24E34D5A00272C2D /* OptionSet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = OptionSet.h; path = ../../../lexlib/OptionSet.h; sourceTree = "<group>"; };
- 28BA72A024E34D5B00272C2D /* CatalogueModules.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CatalogueModules.h; path = ../../../lexlib/CatalogueModules.h; sourceTree = "<group>"; };
- 28BA72A124E34D5B00272C2D /* CharacterSet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CharacterSet.h; path = ../../../lexlib/CharacterSet.h; sourceTree = "<group>"; };
- 28BA72A224E34D5B00272C2D /* StyleContext.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = StyleContext.h; path = ../../../lexlib/StyleContext.h; sourceTree = "<group>"; };
- 28BA72A324E34D5B00272C2D /* PropSetSimple.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PropSetSimple.h; path = ../../../lexlib/PropSetSimple.h; sourceTree = "<group>"; };
- 28BA72A424E34D5B00272C2D /* StringCopy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = StringCopy.h; path = ../../../lexlib/StringCopy.h; sourceTree = "<group>"; };
- 28BA72A524E34D5B00272C2D /* LexerModule.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexerModule.cxx; path = ../../../lexlib/LexerModule.cxx; sourceTree = "<group>"; };
- 28BA72A624E34D5B00272C2D /* LexerBase.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = LexerBase.h; path = ../../../lexlib/LexerBase.h; sourceTree = "<group>"; };
- 28BA72A724E34D5B00272C2D /* LexerSimple.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexerSimple.cxx; path = ../../../lexlib/LexerSimple.cxx; sourceTree = "<group>"; };
- 28BA72A824E34D5B00272C2D /* StyleContext.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = StyleContext.cxx; path = ../../../lexlib/StyleContext.cxx; sourceTree = "<group>"; };
- 28BA72A924E34D5B00272C2D /* CharacterCategory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CharacterCategory.h; path = ../../../lexlib/CharacterCategory.h; sourceTree = "<group>"; };
- 28BA72AA24E34D5B00272C2D /* Accessor.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = Accessor.cxx; path = ../../../lexlib/Accessor.cxx; sourceTree = "<group>"; };
- 28BA72C724E34D9100272C2D /* LexBasic.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexBasic.cxx; path = ../../../lexers/LexBasic.cxx; sourceTree = "<group>"; };
- 28BA72C824E34D9100272C2D /* LexCIL.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexCIL.cxx; path = ../../../lexers/LexCIL.cxx; sourceTree = "<group>"; };
- 28BA72C924E34D9100272C2D /* LexTCL.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexTCL.cxx; path = ../../../lexers/LexTCL.cxx; sourceTree = "<group>"; };
- 28BA72CA24E34D9100272C2D /* LexMetapost.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexMetapost.cxx; path = ../../../lexers/LexMetapost.cxx; sourceTree = "<group>"; };
- 28BA72CB24E34D9100272C2D /* LexForth.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexForth.cxx; path = ../../../lexers/LexForth.cxx; sourceTree = "<group>"; };
- 28BA72CC24E34D9100272C2D /* LexSML.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexSML.cxx; path = ../../../lexers/LexSML.cxx; sourceTree = "<group>"; };
- 28BA72CD24E34D9100272C2D /* LexOScript.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexOScript.cxx; path = ../../../lexers/LexOScript.cxx; sourceTree = "<group>"; };
- 28BA72CE24E34D9100272C2D /* LexTACL.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexTACL.cxx; path = ../../../lexers/LexTACL.cxx; sourceTree = "<group>"; };
- 28BA72CF24E34D9100272C2D /* LexGui4Cli.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexGui4Cli.cxx; path = ../../../lexers/LexGui4Cli.cxx; sourceTree = "<group>"; };
- 28BA72D024E34D9200272C2D /* LexCLW.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexCLW.cxx; path = ../../../lexers/LexCLW.cxx; sourceTree = "<group>"; };
- 28BA72D124E34D9200272C2D /* LexRebol.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexRebol.cxx; path = ../../../lexers/LexRebol.cxx; sourceTree = "<group>"; };
- 28BA72D224E34D9200272C2D /* LexSAS.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexSAS.cxx; path = ../../../lexers/LexSAS.cxx; sourceTree = "<group>"; };
- 28BA72D324E34D9200272C2D /* LexNim.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexNim.cxx; path = ../../../lexers/LexNim.cxx; sourceTree = "<group>"; };
- 28BA72D424E34D9200272C2D /* LexSmalltalk.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexSmalltalk.cxx; path = ../../../lexers/LexSmalltalk.cxx; sourceTree = "<group>"; };
- 28BA72D524E34D9200272C2D /* LexModula.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexModula.cxx; path = ../../../lexers/LexModula.cxx; sourceTree = "<group>"; };
- 28BA72D624E34D9200272C2D /* LexBullant.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexBullant.cxx; path = ../../../lexers/LexBullant.cxx; sourceTree = "<group>"; };
- 28BA72D724E34D9200272C2D /* LexASY.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexASY.cxx; path = ../../../lexers/LexASY.cxx; sourceTree = "<group>"; };
- 28BA72D824E34D9200272C2D /* LexBash.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexBash.cxx; path = ../../../lexers/LexBash.cxx; sourceTree = "<group>"; };
- 28BA72D924E34D9200272C2D /* LexEiffel.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexEiffel.cxx; path = ../../../lexers/LexEiffel.cxx; sourceTree = "<group>"; };
- 28BA72DA24E34D9200272C2D /* LexVHDL.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexVHDL.cxx; path = ../../../lexers/LexVHDL.cxx; sourceTree = "<group>"; };
- 28BA72DB24E34D9200272C2D /* LexAsn1.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexAsn1.cxx; path = ../../../lexers/LexAsn1.cxx; sourceTree = "<group>"; };
- 28BA72DC24E34D9200272C2D /* LexCoffeeScript.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexCoffeeScript.cxx; path = ../../../lexers/LexCoffeeScript.cxx; sourceTree = "<group>"; };
- 28BA72DD24E34D9200272C2D /* LexDiff.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexDiff.cxx; path = ../../../lexers/LexDiff.cxx; sourceTree = "<group>"; };
- 28BA72DE24E34D9200272C2D /* LexSorcus.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexSorcus.cxx; path = ../../../lexers/LexSorcus.cxx; sourceTree = "<group>"; };
- 28BA72DF24E34D9200272C2D /* LexAPDL.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexAPDL.cxx; path = ../../../lexers/LexAPDL.cxx; sourceTree = "<group>"; };
- 28BA72E024E34D9200272C2D /* LexD.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexD.cxx; path = ../../../lexers/LexD.cxx; sourceTree = "<group>"; };
- 28BA72E124E34D9200272C2D /* LexMySQL.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexMySQL.cxx; path = ../../../lexers/LexMySQL.cxx; sourceTree = "<group>"; };
- 28BA72E224E34D9200272C2D /* LexHollywood.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexHollywood.cxx; path = ../../../lexers/LexHollywood.cxx; sourceTree = "<group>"; };
- 28BA72E324E34D9200272C2D /* LexProgress.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexProgress.cxx; path = ../../../lexers/LexProgress.cxx; sourceTree = "<group>"; };
- 28BA72E424E34D9200272C2D /* LexLisp.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexLisp.cxx; path = ../../../lexers/LexLisp.cxx; sourceTree = "<group>"; };
- 28BA72E524E34D9200272C2D /* LexPowerShell.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexPowerShell.cxx; path = ../../../lexers/LexPowerShell.cxx; sourceTree = "<group>"; };
- 28BA72E624E34D9200272C2D /* LexPS.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexPS.cxx; path = ../../../lexers/LexPS.cxx; sourceTree = "<group>"; };
- 28BA72E724E34D9200272C2D /* LexYAML.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexYAML.cxx; path = ../../../lexers/LexYAML.cxx; sourceTree = "<group>"; };
- 28BA72E824E34D9200272C2D /* LexErlang.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexErlang.cxx; path = ../../../lexers/LexErlang.cxx; sourceTree = "<group>"; };
- 28BA72E924E34D9300272C2D /* LexRuby.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexRuby.cxx; path = ../../../lexers/LexRuby.cxx; sourceTree = "<group>"; };
- 28BA72EA24E34D9300272C2D /* LexIndent.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexIndent.cxx; path = ../../../lexers/LexIndent.cxx; sourceTree = "<group>"; };
- 28BA72EB24E34D9300272C2D /* LexErrorList.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexErrorList.cxx; path = ../../../lexers/LexErrorList.cxx; sourceTree = "<group>"; };
- 28BA72EC24E34D9300272C2D /* LexFlagship.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexFlagship.cxx; path = ../../../lexers/LexFlagship.cxx; sourceTree = "<group>"; };
- 28BA72ED24E34D9300272C2D /* LexLaTeX.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexLaTeX.cxx; path = ../../../lexers/LexLaTeX.cxx; sourceTree = "<group>"; };
- 28BA72EE24E34D9300272C2D /* LexAbaqus.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexAbaqus.cxx; path = ../../../lexers/LexAbaqus.cxx; sourceTree = "<group>"; };
- 28BA72EF24E34D9300272C2D /* LexBatch.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexBatch.cxx; path = ../../../lexers/LexBatch.cxx; sourceTree = "<group>"; };
- 28BA72F024E34D9300272C2D /* LexCPP.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexCPP.cxx; path = ../../../lexers/LexCPP.cxx; sourceTree = "<group>"; };
- 28BA72F124E34D9300272C2D /* LexRaku.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexRaku.cxx; path = ../../../lexers/LexRaku.cxx; sourceTree = "<group>"; };
- 28BA72F224E34D9300272C2D /* LexGAP.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexGAP.cxx; path = ../../../lexers/LexGAP.cxx; sourceTree = "<group>"; };
- 28BA72F324E34D9300272C2D /* LexSQL.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexSQL.cxx; path = ../../../lexers/LexSQL.cxx; sourceTree = "<group>"; };
- 28BA72F424E34D9300272C2D /* LexNsis.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexNsis.cxx; path = ../../../lexers/LexNsis.cxx; sourceTree = "<group>"; };
- 28BA72F524E34D9300272C2D /* LexEDIFACT.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexEDIFACT.cxx; path = ../../../lexers/LexEDIFACT.cxx; sourceTree = "<group>"; };
- 28BA72F624E34D9300272C2D /* LexEScript.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexEScript.cxx; path = ../../../lexers/LexEScript.cxx; sourceTree = "<group>"; };
- 28BA72F724E34D9300272C2D /* LexPOV.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexPOV.cxx; path = ../../../lexers/LexPOV.cxx; sourceTree = "<group>"; };
- 28BA72F824E34D9300272C2D /* LexKVIrc.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexKVIrc.cxx; path = ../../../lexers/LexKVIrc.cxx; sourceTree = "<group>"; };
- 28BA72F924E34D9300272C2D /* LexSpecman.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexSpecman.cxx; path = ../../../lexers/LexSpecman.cxx; sourceTree = "<group>"; };
- 28BA72FA24E34D9300272C2D /* LexHTML.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexHTML.cxx; path = ../../../lexers/LexHTML.cxx; sourceTree = "<group>"; };
- 28BA72FB24E34D9400272C2D /* LexFortran.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexFortran.cxx; path = ../../../lexers/LexFortran.cxx; sourceTree = "<group>"; };
- 28BA72FC24E34D9400272C2D /* LexRegistry.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexRegistry.cxx; path = ../../../lexers/LexRegistry.cxx; sourceTree = "<group>"; };
- 28BA72FD24E34D9400272C2D /* LexPython.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexPython.cxx; path = ../../../lexers/LexPython.cxx; sourceTree = "<group>"; };
- 28BA72FE24E34D9400272C2D /* LexCmake.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexCmake.cxx; path = ../../../lexers/LexCmake.cxx; sourceTree = "<group>"; };
- 28BA72FF24E34D9400272C2D /* LexAsm.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexAsm.cxx; path = ../../../lexers/LexAsm.cxx; sourceTree = "<group>"; };
- 28BA730024E34D9400272C2D /* LexAda.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexAda.cxx; path = ../../../lexers/LexAda.cxx; sourceTree = "<group>"; };
- 28BA730124E34D9400272C2D /* LexCrontab.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexCrontab.cxx; path = ../../../lexers/LexCrontab.cxx; sourceTree = "<group>"; };
- 28BA730224E34D9400272C2D /* LexDMIS.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexDMIS.cxx; path = ../../../lexers/LexDMIS.cxx; sourceTree = "<group>"; };
- 28BA730324E34D9400272C2D /* LexTCMD.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexTCMD.cxx; path = ../../../lexers/LexTCMD.cxx; sourceTree = "<group>"; };
- 28BA730424E34D9400272C2D /* LexConf.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexConf.cxx; path = ../../../lexers/LexConf.cxx; sourceTree = "<group>"; };
- 28BA730524E34D9400272C2D /* LexInno.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexInno.cxx; path = ../../../lexers/LexInno.cxx; sourceTree = "<group>"; };
- 28BA730624E34D9400272C2D /* LexA68k.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexA68k.cxx; path = ../../../lexers/LexA68k.cxx; sourceTree = "<group>"; };
- 28BA730724E34D9400272C2D /* LexMake.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexMake.cxx; path = ../../../lexers/LexMake.cxx; sourceTree = "<group>"; };
- 28BA730824E34D9400272C2D /* LexTeX.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexTeX.cxx; path = ../../../lexers/LexTeX.cxx; sourceTree = "<group>"; };
- 28BA730924E34D9400272C2D /* LexSpice.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexSpice.cxx; path = ../../../lexers/LexSpice.cxx; sourceTree = "<group>"; };
- 28BA730A24E34D9400272C2D /* LexX12.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexX12.cxx; path = ../../../lexers/LexX12.cxx; sourceTree = "<group>"; };
- 28BA730B24E34D9400272C2D /* LexAU3.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexAU3.cxx; path = ../../../lexers/LexAU3.cxx; sourceTree = "<group>"; };
- 28BA730C24E34D9400272C2D /* LexBaan.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexBaan.cxx; path = ../../../lexers/LexBaan.cxx; sourceTree = "<group>"; };
- 28BA730D24E34D9500272C2D /* LexMPT.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexMPT.cxx; path = ../../../lexers/LexMPT.cxx; sourceTree = "<group>"; };
- 28BA730E24E34D9500272C2D /* LexTADS3.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexTADS3.cxx; path = ../../../lexers/LexTADS3.cxx; sourceTree = "<group>"; };
- 28BA730F24E34D9500272C2D /* LexTxt2tags.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexTxt2tags.cxx; path = ../../../lexers/LexTxt2tags.cxx; sourceTree = "<group>"; };
- 28BA731024E34D9500272C2D /* LexMMIXAL.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexMMIXAL.cxx; path = ../../../lexers/LexMMIXAL.cxx; sourceTree = "<group>"; };
- 28BA731124E34D9500272C2D /* LexKix.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexKix.cxx; path = ../../../lexers/LexKix.cxx; sourceTree = "<group>"; };
- 28BA731224E34D9500272C2D /* LexSTTXT.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexSTTXT.cxx; path = ../../../lexers/LexSTTXT.cxx; sourceTree = "<group>"; };
- 28BA731324E34D9500272C2D /* LexMagik.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexMagik.cxx; path = ../../../lexers/LexMagik.cxx; sourceTree = "<group>"; };
- 28BA731424E34D9500272C2D /* LexNull.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexNull.cxx; path = ../../../lexers/LexNull.cxx; sourceTree = "<group>"; };
- 28BA731524E34D9500272C2D /* LexCsound.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexCsound.cxx; path = ../../../lexers/LexCsound.cxx; sourceTree = "<group>"; };
- 28BA731624E34D9500272C2D /* LexLua.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexLua.cxx; path = ../../../lexers/LexLua.cxx; sourceTree = "<group>"; };
- 28BA731724E34D9500272C2D /* LexStata.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexStata.cxx; path = ../../../lexers/LexStata.cxx; sourceTree = "<group>"; };
- 28BA731824E34D9500272C2D /* LexOpal.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexOpal.cxx; path = ../../../lexers/LexOpal.cxx; sourceTree = "<group>"; };
- 28BA731924E34D9500272C2D /* LexHex.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexHex.cxx; path = ../../../lexers/LexHex.cxx; sourceTree = "<group>"; };
- 28BA731A24E34D9500272C2D /* LexVerilog.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexVerilog.cxx; path = ../../../lexers/LexVerilog.cxx; sourceTree = "<group>"; };
- 28BA731B24E34D9500272C2D /* LexHaskell.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexHaskell.cxx; path = ../../../lexers/LexHaskell.cxx; sourceTree = "<group>"; };
- 28BA731C24E34D9500272C2D /* LexR.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexR.cxx; path = ../../../lexers/LexR.cxx; sourceTree = "<group>"; };
- 28BA731D24E34D9500272C2D /* LexScriptol.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexScriptol.cxx; path = ../../../lexers/LexScriptol.cxx; sourceTree = "<group>"; };
- 28BA731E24E34D9500272C2D /* LexVisualProlog.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexVisualProlog.cxx; path = ../../../lexers/LexVisualProlog.cxx; sourceTree = "<group>"; };
- 28BA731F24E34D9600272C2D /* LexVB.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexVB.cxx; path = ../../../lexers/LexVB.cxx; sourceTree = "<group>"; };
- 28BA732024E34D9600272C2D /* LexDMAP.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexDMAP.cxx; path = ../../../lexers/LexDMAP.cxx; sourceTree = "<group>"; };
- 28BA732124E34D9600272C2D /* LexAVS.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexAVS.cxx; path = ../../../lexers/LexAVS.cxx; sourceTree = "<group>"; };
- 28BA732224E34D9600272C2D /* LexPB.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexPB.cxx; path = ../../../lexers/LexPB.cxx; sourceTree = "<group>"; };
- 28BA732324E34D9600272C2D /* LexPO.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexPO.cxx; path = ../../../lexers/LexPO.cxx; sourceTree = "<group>"; };
- 28BA732424E34D9600272C2D /* LexPowerPro.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexPowerPro.cxx; path = ../../../lexers/LexPowerPro.cxx; sourceTree = "<group>"; };
- 28BA732524E34D9600272C2D /* LexProps.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexProps.cxx; path = ../../../lexers/LexProps.cxx; sourceTree = "<group>"; };
- 28BA732624E34D9600272C2D /* LexCOBOL.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexCOBOL.cxx; path = ../../../lexers/LexCOBOL.cxx; sourceTree = "<group>"; };
- 28BA732724E34D9600272C2D /* LexPLM.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexPLM.cxx; path = ../../../lexers/LexPLM.cxx; sourceTree = "<group>"; };
- 28BA732824E34D9600272C2D /* LexMSSQL.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexMSSQL.cxx; path = ../../../lexers/LexMSSQL.cxx; sourceTree = "<group>"; };
- 28BA732924E34D9600272C2D /* LexCSS.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexCSS.cxx; path = ../../../lexers/LexCSS.cxx; sourceTree = "<group>"; };
- 28BA732A24E34D9600272C2D /* LexMaxima.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexMaxima.cxx; path = ../../../lexers/LexMaxima.cxx; sourceTree = "<group>"; };
- 28BA732B24E34D9600272C2D /* LexCaml.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexCaml.cxx; path = ../../../lexers/LexCaml.cxx; sourceTree = "<group>"; };
- 28BA732C24E34D9600272C2D /* LexDataflex.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexDataflex.cxx; path = ../../../lexers/LexDataflex.cxx; sourceTree = "<group>"; };
- 28BA732D24E34D9600272C2D /* LexLout.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexLout.cxx; path = ../../../lexers/LexLout.cxx; sourceTree = "<group>"; };
- 28BA732E24E34D9600272C2D /* LexTAL.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexTAL.cxx; path = ../../../lexers/LexTAL.cxx; sourceTree = "<group>"; };
- 28BA732F24E34D9600272C2D /* LexMarkdown.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexMarkdown.cxx; path = ../../../lexers/LexMarkdown.cxx; sourceTree = "<group>"; };
- 28BA733024E34D9600272C2D /* LexJSON.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexJSON.cxx; path = ../../../lexers/LexJSON.cxx; sourceTree = "<group>"; };
- 28BA733124E34D9700272C2D /* LexPascal.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexPascal.cxx; path = ../../../lexers/LexPascal.cxx; sourceTree = "<group>"; };
- 28BA733224E34D9700272C2D /* LexAVE.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexAVE.cxx; path = ../../../lexers/LexAVE.cxx; sourceTree = "<group>"; };
- 28BA733324E34D9700272C2D /* LexECL.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexECL.cxx; path = ../../../lexers/LexECL.cxx; sourceTree = "<group>"; };
- 28BA733424E34D9700272C2D /* LexMatlab.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexMatlab.cxx; path = ../../../lexers/LexMatlab.cxx; sourceTree = "<group>"; };
- 28BA733524E34D9700272C2D /* LexBibTeX.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexBibTeX.cxx; path = ../../../lexers/LexBibTeX.cxx; sourceTree = "<group>"; };
- 28BA733624E34D9700272C2D /* LexNimrod.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexNimrod.cxx; path = ../../../lexers/LexNimrod.cxx; sourceTree = "<group>"; };
- 28BA733724E34D9700272C2D /* LexPerl.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexPerl.cxx; path = ../../../lexers/LexPerl.cxx; sourceTree = "<group>"; };
- 28BA733824E34D9700272C2D /* LexRust.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = LexRust.cxx; path = ../../../lexers/LexRust.cxx; sourceTree = "<group>"; };
- 28BA73AB24E34DBC00272C2D /* Lexilla.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Lexilla.h; path = ../Lexilla.h; sourceTree = "<group>"; };
- 28BA73AC24E34DBC00272C2D /* Lexilla.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = Lexilla.cxx; path = ../Lexilla.cxx; sourceTree = "<group>"; };
- 28BA73B024E3510900272C2D /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
-/* End PBXFileReference section */
-
-/* Begin PBXFrameworksBuildPhase section */
- 280262A3246DF655000DF3B8 /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
-/* End PBXFrameworksBuildPhase section */
-
-/* Begin PBXGroup section */
- 2802629C246DF655000DF3B8 = {
- isa = PBXGroup;
- children = (
- 28BA73B024E3510900272C2D /* Info.plist */,
- 280262B8246DF776000DF3B8 /* LexLib */,
- 280262B7246DF765000DF3B8 /* Lexers */,
- 280262A7246DF655000DF3B8 /* Lexilla */,
- 280262A6246DF655000DF3B8 /* Products */,
- );
- sourceTree = "<group>";
- };
- 280262A6246DF655000DF3B8 /* Products */ = {
- isa = PBXGroup;
- children = (
- 280262A5246DF655000DF3B8 /* liblexilla.dylib */,
- );
- name = Products;
- sourceTree = "<group>";
- };
- 280262A7246DF655000DF3B8 /* Lexilla */ = {
- isa = PBXGroup;
- children = (
- 28BA73AC24E34DBC00272C2D /* Lexilla.cxx */,
- 28BA73AB24E34DBC00272C2D /* Lexilla.h */,
- );
- name = Lexilla;
- sourceTree = "<group>";
- };
- 280262B7246DF765000DF3B8 /* Lexers */ = {
- isa = PBXGroup;
- children = (
- 28BA730624E34D9400272C2D /* LexA68k.cxx */,
- 28BA72EE24E34D9300272C2D /* LexAbaqus.cxx */,
- 28BA730024E34D9400272C2D /* LexAda.cxx */,
- 28BA72DF24E34D9200272C2D /* LexAPDL.cxx */,
- 28BA72FF24E34D9400272C2D /* LexAsm.cxx */,
- 28BA72DB24E34D9200272C2D /* LexAsn1.cxx */,
- 28BA72D724E34D9200272C2D /* LexASY.cxx */,
- 28BA730B24E34D9400272C2D /* LexAU3.cxx */,
- 28BA733224E34D9700272C2D /* LexAVE.cxx */,
- 28BA732124E34D9600272C2D /* LexAVS.cxx */,
- 28BA730C24E34D9400272C2D /* LexBaan.cxx */,
- 28BA72D824E34D9200272C2D /* LexBash.cxx */,
- 28BA72C724E34D9100272C2D /* LexBasic.cxx */,
- 28BA72EF24E34D9300272C2D /* LexBatch.cxx */,
- 28BA733524E34D9700272C2D /* LexBibTeX.cxx */,
- 28BA72D624E34D9200272C2D /* LexBullant.cxx */,
- 28BA732B24E34D9600272C2D /* LexCaml.cxx */,
- 28BA72C824E34D9100272C2D /* LexCIL.cxx */,
- 28BA72D024E34D9200272C2D /* LexCLW.cxx */,
- 28BA72FE24E34D9400272C2D /* LexCmake.cxx */,
- 28BA732624E34D9600272C2D /* LexCOBOL.cxx */,
- 28BA72DC24E34D9200272C2D /* LexCoffeeScript.cxx */,
- 28BA730424E34D9400272C2D /* LexConf.cxx */,
- 28BA72F024E34D9300272C2D /* LexCPP.cxx */,
- 28BA730124E34D9400272C2D /* LexCrontab.cxx */,
- 28BA731524E34D9500272C2D /* LexCsound.cxx */,
- 28BA732924E34D9600272C2D /* LexCSS.cxx */,
- 28BA72E024E34D9200272C2D /* LexD.cxx */,
- 28BA732C24E34D9600272C2D /* LexDataflex.cxx */,
- 28BA72DD24E34D9200272C2D /* LexDiff.cxx */,
- 28BA732024E34D9600272C2D /* LexDMAP.cxx */,
- 28BA730224E34D9400272C2D /* LexDMIS.cxx */,
- 28BA733324E34D9700272C2D /* LexECL.cxx */,
- 28BA72F524E34D9300272C2D /* LexEDIFACT.cxx */,
- 28BA72D924E34D9200272C2D /* LexEiffel.cxx */,
- 28BA72E824E34D9200272C2D /* LexErlang.cxx */,
- 28BA72EB24E34D9300272C2D /* LexErrorList.cxx */,
- 28BA72F624E34D9300272C2D /* LexEScript.cxx */,
- 28BA72EC24E34D9300272C2D /* LexFlagship.cxx */,
- 28BA72CB24E34D9100272C2D /* LexForth.cxx */,
- 28BA72FB24E34D9400272C2D /* LexFortran.cxx */,
- 28BA72F224E34D9300272C2D /* LexGAP.cxx */,
- 28BA72CF24E34D9100272C2D /* LexGui4Cli.cxx */,
- 28BA731B24E34D9500272C2D /* LexHaskell.cxx */,
- 28BA731924E34D9500272C2D /* LexHex.cxx */,
- 28BA72E224E34D9200272C2D /* LexHollywood.cxx */,
- 28BA72FA24E34D9300272C2D /* LexHTML.cxx */,
- 28BA72EA24E34D9300272C2D /* LexIndent.cxx */,
- 28BA730524E34D9400272C2D /* LexInno.cxx */,
- 28BA733024E34D9600272C2D /* LexJSON.cxx */,
- 28BA731124E34D9500272C2D /* LexKix.cxx */,
- 28BA72F824E34D9300272C2D /* LexKVIrc.cxx */,
- 28BA72ED24E34D9300272C2D /* LexLaTeX.cxx */,
- 28BA72E424E34D9200272C2D /* LexLisp.cxx */,
- 28BA732D24E34D9600272C2D /* LexLout.cxx */,
- 28BA731624E34D9500272C2D /* LexLua.cxx */,
- 28BA731324E34D9500272C2D /* LexMagik.cxx */,
- 28BA730724E34D9400272C2D /* LexMake.cxx */,
- 28BA732F24E34D9600272C2D /* LexMarkdown.cxx */,
- 28BA733424E34D9700272C2D /* LexMatlab.cxx */,
- 28BA732A24E34D9600272C2D /* LexMaxima.cxx */,
- 28BA72CA24E34D9100272C2D /* LexMetapost.cxx */,
- 28BA731024E34D9500272C2D /* LexMMIXAL.cxx */,
- 28BA72D524E34D9200272C2D /* LexModula.cxx */,
- 28BA730D24E34D9500272C2D /* LexMPT.cxx */,
- 28BA732824E34D9600272C2D /* LexMSSQL.cxx */,
- 28BA72E124E34D9200272C2D /* LexMySQL.cxx */,
- 28BA72D324E34D9200272C2D /* LexNim.cxx */,
- 28BA733624E34D9700272C2D /* LexNimrod.cxx */,
- 28BA72F424E34D9300272C2D /* LexNsis.cxx */,
- 28BA731424E34D9500272C2D /* LexNull.cxx */,
- 28BA731824E34D9500272C2D /* LexOpal.cxx */,
- 28BA72CD24E34D9100272C2D /* LexOScript.cxx */,
- 28BA733124E34D9700272C2D /* LexPascal.cxx */,
- 28BA732224E34D9600272C2D /* LexPB.cxx */,
- 28BA733724E34D9700272C2D /* LexPerl.cxx */,
- 28BA732724E34D9600272C2D /* LexPLM.cxx */,
- 28BA732324E34D9600272C2D /* LexPO.cxx */,
- 28BA72F724E34D9300272C2D /* LexPOV.cxx */,
- 28BA732424E34D9600272C2D /* LexPowerPro.cxx */,
- 28BA72E524E34D9200272C2D /* LexPowerShell.cxx */,
- 28BA72E324E34D9200272C2D /* LexProgress.cxx */,
- 28BA732524E34D9600272C2D /* LexProps.cxx */,
- 28BA72E624E34D9200272C2D /* LexPS.cxx */,
- 28BA72FD24E34D9400272C2D /* LexPython.cxx */,
- 28BA731C24E34D9500272C2D /* LexR.cxx */,
- 28BA72F124E34D9300272C2D /* LexRaku.cxx */,
- 28BA72D124E34D9200272C2D /* LexRebol.cxx */,
- 28BA72FC24E34D9400272C2D /* LexRegistry.cxx */,
- 28BA72E924E34D9300272C2D /* LexRuby.cxx */,
- 28BA733824E34D9700272C2D /* LexRust.cxx */,
- 28BA72D224E34D9200272C2D /* LexSAS.cxx */,
- 28BA731D24E34D9500272C2D /* LexScriptol.cxx */,
- 28BA72D424E34D9200272C2D /* LexSmalltalk.cxx */,
- 28BA72CC24E34D9100272C2D /* LexSML.cxx */,
- 28BA72DE24E34D9200272C2D /* LexSorcus.cxx */,
- 28BA72F924E34D9300272C2D /* LexSpecman.cxx */,
- 28BA730924E34D9400272C2D /* LexSpice.cxx */,
- 28BA72F324E34D9300272C2D /* LexSQL.cxx */,
- 28BA731724E34D9500272C2D /* LexStata.cxx */,
- 28BA731224E34D9500272C2D /* LexSTTXT.cxx */,
- 28BA72CE24E34D9100272C2D /* LexTACL.cxx */,
- 28BA730E24E34D9500272C2D /* LexTADS3.cxx */,
- 28BA732E24E34D9600272C2D /* LexTAL.cxx */,
- 28BA72C924E34D9100272C2D /* LexTCL.cxx */,
- 28BA730324E34D9400272C2D /* LexTCMD.cxx */,
- 28BA730824E34D9400272C2D /* LexTeX.cxx */,
- 28BA730F24E34D9500272C2D /* LexTxt2tags.cxx */,
- 28BA731F24E34D9600272C2D /* LexVB.cxx */,
- 28BA731A24E34D9500272C2D /* LexVerilog.cxx */,
- 28BA72DA24E34D9200272C2D /* LexVHDL.cxx */,
- 28BA731E24E34D9500272C2D /* LexVisualProlog.cxx */,
- 28BA730A24E34D9400272C2D /* LexX12.cxx */,
- 28BA72E724E34D9200272C2D /* LexYAML.cxx */,
- );
- name = Lexers;
- sourceTree = "<group>";
- };
- 280262B8246DF776000DF3B8 /* LexLib */ = {
- isa = PBXGroup;
- children = (
- 28BA72AA24E34D5B00272C2D /* Accessor.cxx */,
- 28BA729724E34D5A00272C2D /* Accessor.h */,
- 28BA72A024E34D5B00272C2D /* CatalogueModules.h */,
- 28BA729524E34D5A00272C2D /* CharacterCategory.cxx */,
- 28BA72A924E34D5B00272C2D /* CharacterCategory.h */,
- 28BA729924E34D5A00272C2D /* CharacterSet.cxx */,
- 28BA72A124E34D5B00272C2D /* CharacterSet.h */,
- 28BA729C24E34D5A00272C2D /* DefaultLexer.cxx */,
- 28BA729124E34D5A00272C2D /* DefaultLexer.h */,
- 28BA729024E34D5A00272C2D /* LexAccessor.h */,
- 28BA728F24E34D5A00272C2D /* LexerBase.cxx */,
- 28BA72A624E34D5B00272C2D /* LexerBase.h */,
- 28BA72A524E34D5B00272C2D /* LexerModule.cxx */,
- 28BA729424E34D5A00272C2D /* LexerModule.h */,
- 28BA729D24E34D5A00272C2D /* LexerNoExceptions.cxx */,
- 28BA729324E34D5A00272C2D /* LexerNoExceptions.h */,
- 28BA72A724E34D5B00272C2D /* LexerSimple.cxx */,
- 28BA729624E34D5A00272C2D /* LexerSimple.h */,
- 28BA729F24E34D5A00272C2D /* OptionSet.h */,
- 28BA729824E34D5A00272C2D /* PropSetSimple.cxx */,
- 28BA72A324E34D5B00272C2D /* PropSetSimple.h */,
- 28BA729A24E34D5A00272C2D /* SparseState.h */,
- 28BA72A424E34D5B00272C2D /* StringCopy.h */,
- 28BA72A824E34D5B00272C2D /* StyleContext.cxx */,
- 28BA72A224E34D5B00272C2D /* StyleContext.h */,
- 28BA729224E34D5A00272C2D /* SubStyles.h */,
- 28BA729E24E34D5A00272C2D /* WordList.cxx */,
- 28BA729B24E34D5A00272C2D /* WordList.h */,
- );
- name = LexLib;
- sourceTree = "<group>";
- };
-/* End PBXGroup section */
-
-/* Begin PBXHeadersBuildPhase section */
- 280262A1246DF655000DF3B8 /* Headers */ = {
- isa = PBXHeadersBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 28BA73AD24E34DBC00272C2D /* Lexilla.h in Headers */,
- 28BA72BF24E34D5B00272C2D /* PropSetSimple.h in Headers */,
- 28BA72B224E34D5B00272C2D /* LexerSimple.h in Headers */,
- 28BA72AF24E34D5B00272C2D /* LexerNoExceptions.h in Headers */,
- 28BA72B724E34D5B00272C2D /* WordList.h in Headers */,
- 28BA72C024E34D5B00272C2D /* StringCopy.h in Headers */,
- 28BA72AD24E34D5B00272C2D /* DefaultLexer.h in Headers */,
- 28BA72B324E34D5B00272C2D /* Accessor.h in Headers */,
- 28BA72BE24E34D5B00272C2D /* StyleContext.h in Headers */,
- 28BA72BB24E34D5B00272C2D /* OptionSet.h in Headers */,
- 28BA72B024E34D5B00272C2D /* LexerModule.h in Headers */,
- 28BA72AC24E34D5B00272C2D /* LexAccessor.h in Headers */,
- 28BA72C524E34D5B00272C2D /* CharacterCategory.h in Headers */,
- 28BA72BD24E34D5B00272C2D /* CharacterSet.h in Headers */,
- 28BA72AE24E34D5B00272C2D /* SubStyles.h in Headers */,
- 28BA72BC24E34D5B00272C2D /* CatalogueModules.h in Headers */,
- 28BA72C224E34D5B00272C2D /* LexerBase.h in Headers */,
- 28BA72B624E34D5B00272C2D /* SparseState.h in Headers */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
-/* End PBXHeadersBuildPhase section */
-
-/* Begin PBXNativeTarget section */
- 280262A4246DF655000DF3B8 /* lexilla */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = 280262B0246DF655000DF3B8 /* Build configuration list for PBXNativeTarget "lexilla" */;
- buildPhases = (
- 280262A1246DF655000DF3B8 /* Headers */,
- 280262A2246DF655000DF3B8 /* Sources */,
- 280262A3246DF655000DF3B8 /* Frameworks */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = lexilla;
- productName = lexilla;
- productReference = 280262A5246DF655000DF3B8 /* liblexilla.dylib */;
- productType = "com.apple.product-type.library.dynamic";
- };
-/* End PBXNativeTarget section */
-
-/* Begin PBXProject section */
- 2802629D246DF655000DF3B8 /* Project object */ = {
- isa = PBXProject;
- attributes = {
- LastUpgradeCheck = 1200;
- ORGANIZATIONNAME = "Neil Hodgson";
- TargetAttributes = {
- 280262A4246DF655000DF3B8 = {
- CreatedOnToolsVersion = 11.4.1;
- };
- };
- };
- buildConfigurationList = 280262A0246DF655000DF3B8 /* Build configuration list for PBXProject "Lexilla" */;
- compatibilityVersion = "Xcode 9.3";
- developmentRegion = en;
- hasScannedForEncodings = 0;
- knownRegions = (
- en,
- Base,
- );
- mainGroup = 2802629C246DF655000DF3B8;
- productRefGroup = 280262A6246DF655000DF3B8 /* Products */;
- projectDirPath = "";
- projectRoot = "";
- targets = (
- 280262A4246DF655000DF3B8 /* lexilla */,
- );
- };
-/* End PBXProject section */
-
-/* Begin PBXSourcesBuildPhase section */
- 280262A2246DF655000DF3B8 /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 28BA739A24E34D9700272C2D /* LexMSSQL.cxx in Sources */,
- 28BA735324E34D9700272C2D /* LexMySQL.cxx in Sources */,
- 28BA738024E34D9700272C2D /* LexTADS3.cxx in Sources */,
- 28BA73A924E34D9700272C2D /* LexPerl.cxx in Sources */,
- 28BA733D24E34D9700272C2D /* LexForth.cxx in Sources */,
- 28BA736824E34D9700272C2D /* LexEScript.cxx in Sources */,
- 28BA737124E34D9700272C2D /* LexAsm.cxx in Sources */,
- 28BA737B24E34D9700272C2D /* LexSpice.cxx in Sources */,
- 28BA737024E34D9700272C2D /* LexCmake.cxx in Sources */,
- 28BA734624E34D9700272C2D /* LexSmalltalk.cxx in Sources */,
- 28BA72C424E34D5B00272C2D /* StyleContext.cxx in Sources */,
- 28BA734C24E34D9700272C2D /* LexVHDL.cxx in Sources */,
- 28BA737724E34D9700272C2D /* LexInno.cxx in Sources */,
- 28BA739B24E34D9700272C2D /* LexCSS.cxx in Sources */,
- 28BA734A24E34D9700272C2D /* LexBash.cxx in Sources */,
- 28BA734224E34D9700272C2D /* LexCLW.cxx in Sources */,
- 28BA734424E34D9700272C2D /* LexSAS.cxx in Sources */,
- 28BA738E24E34D9700272C2D /* LexR.cxx in Sources */,
- 28BA72C124E34D5B00272C2D /* LexerModule.cxx in Sources */,
- 28BA735C24E34D9700272C2D /* LexIndent.cxx in Sources */,
- 28BA736624E34D9700272C2D /* LexNsis.cxx in Sources */,
- 28BA734724E34D9700272C2D /* LexModula.cxx in Sources */,
- 28BA734924E34D9700272C2D /* LexASY.cxx in Sources */,
- 28BA739024E34D9700272C2D /* LexVisualProlog.cxx in Sources */,
- 28BA739524E34D9700272C2D /* LexPO.cxx in Sources */,
- 28BA72BA24E34D5B00272C2D /* WordList.cxx in Sources */,
- 28BA739624E34D9700272C2D /* LexPowerPro.cxx in Sources */,
- 28BA733924E34D9700272C2D /* LexBasic.cxx in Sources */,
- 28BA739D24E34D9700272C2D /* LexCaml.cxx in Sources */,
- 28BA739724E34D9700272C2D /* LexProps.cxx in Sources */,
- 28BA737424E34D9700272C2D /* LexDMIS.cxx in Sources */,
- 28BA73A524E34D9700272C2D /* LexECL.cxx in Sources */,
- 28BA736524E34D9700272C2D /* LexSQL.cxx in Sources */,
- 28BA72AB24E34D5B00272C2D /* LexerBase.cxx in Sources */,
- 28BA72B824E34D5B00272C2D /* DefaultLexer.cxx in Sources */,
- 28BA73A024E34D9700272C2D /* LexTAL.cxx in Sources */,
- 28BA733C24E34D9700272C2D /* LexMetapost.cxx in Sources */,
- 28BA733A24E34D9700272C2D /* LexCIL.cxx in Sources */,
- 28BA735D24E34D9700272C2D /* LexErrorList.cxx in Sources */,
- 28BA737224E34D9700272C2D /* LexAda.cxx in Sources */,
- 28BA737D24E34D9700272C2D /* LexAU3.cxx in Sources */,
- 28BA734024E34D9700272C2D /* LexTACL.cxx in Sources */,
- 28BA736724E34D9700272C2D /* LexEDIFACT.cxx in Sources */,
- 28BA736024E34D9700272C2D /* LexAbaqus.cxx in Sources */,
- 28BA734D24E34D9700272C2D /* LexAsn1.cxx in Sources */,
- 28BA737A24E34D9700272C2D /* LexTeX.cxx in Sources */,
- 28BA739124E34D9700272C2D /* LexVB.cxx in Sources */,
- 28BA735E24E34D9700272C2D /* LexFlagship.cxx in Sources */,
- 28BA735B24E34D9700272C2D /* LexRuby.cxx in Sources */,
- 28BA735424E34D9700272C2D /* LexHollywood.cxx in Sources */,
- 28BA72B924E34D5B00272C2D /* LexerNoExceptions.cxx in Sources */,
- 28BA736D24E34D9700272C2D /* LexFortran.cxx in Sources */,
- 28BA738924E34D9700272C2D /* LexStata.cxx in Sources */,
- 28BA737524E34D9700272C2D /* LexTCMD.cxx in Sources */,
- 28BA72C624E34D5B00272C2D /* Accessor.cxx in Sources */,
- 28BA733B24E34D9700272C2D /* LexTCL.cxx in Sources */,
- 28BA739C24E34D9700272C2D /* LexMaxima.cxx in Sources */,
- 28BA73AA24E34D9700272C2D /* LexRust.cxx in Sources */,
- 28BA733F24E34D9700272C2D /* LexOScript.cxx in Sources */,
- 28BA737324E34D9700272C2D /* LexCrontab.cxx in Sources */,
- 28BA734E24E34D9700272C2D /* LexCoffeeScript.cxx in Sources */,
- 28BA735624E34D9700272C2D /* LexLisp.cxx in Sources */,
- 28BA735824E34D9700272C2D /* LexPS.cxx in Sources */,
- 28BA735F24E34D9700272C2D /* LexLaTeX.cxx in Sources */,
- 28BA736B24E34D9700272C2D /* LexSpecman.cxx in Sources */,
- 28BA73A724E34D9700272C2D /* LexBibTeX.cxx in Sources */,
- 28BA737E24E34D9700272C2D /* LexBaan.cxx in Sources */,
- 28BA738124E34D9700272C2D /* LexTxt2tags.cxx in Sources */,
- 28BA737F24E34D9700272C2D /* LexMPT.cxx in Sources */,
- 28BA738424E34D9700272C2D /* LexSTTXT.cxx in Sources */,
- 28BA734F24E34D9700272C2D /* LexDiff.cxx in Sources */,
- 28BA735924E34D9700272C2D /* LexYAML.cxx in Sources */,
- 28BA735524E34D9700272C2D /* LexProgress.cxx in Sources */,
- 28BA736F24E34D9700272C2D /* LexPython.cxx in Sources */,
- 28BA72B524E34D5B00272C2D /* CharacterSet.cxx in Sources */,
- 28BA739E24E34D9700272C2D /* LexDataflex.cxx in Sources */,
- 28BA738F24E34D9700272C2D /* LexScriptol.cxx in Sources */,
- 28BA736C24E34D9700272C2D /* LexHTML.cxx in Sources */,
- 28BA737924E34D9700272C2D /* LexMake.cxx in Sources */,
- 28BA738524E34D9700272C2D /* LexMagik.cxx in Sources */,
- 28BA72B124E34D5B00272C2D /* CharacterCategory.cxx in Sources */,
- 28BA739424E34D9700272C2D /* LexPB.cxx in Sources */,
- 28BA73A624E34D9700272C2D /* LexMatlab.cxx in Sources */,
- 28BA736324E34D9700272C2D /* LexRaku.cxx in Sources */,
- 28BA736224E34D9700272C2D /* LexCPP.cxx in Sources */,
- 28BA738A24E34D9700272C2D /* LexOpal.cxx in Sources */,
- 28BA736E24E34D9700272C2D /* LexRegistry.cxx in Sources */,
- 28BA738224E34D9700272C2D /* LexMMIXAL.cxx in Sources */,
- 28BA736A24E34D9700272C2D /* LexKVIrc.cxx in Sources */,
- 28BA73A224E34D9700272C2D /* LexJSON.cxx in Sources */,
- 28BA738724E34D9700272C2D /* LexCsound.cxx in Sources */,
- 28BA738824E34D9700272C2D /* LexLua.cxx in Sources */,
- 28BA739824E34D9700272C2D /* LexCOBOL.cxx in Sources */,
- 28BA73A824E34D9700272C2D /* LexNimrod.cxx in Sources */,
- 28BA739324E34D9700272C2D /* LexAVS.cxx in Sources */,
- 28BA737624E34D9700272C2D /* LexConf.cxx in Sources */,
- 28BA734524E34D9700272C2D /* LexNim.cxx in Sources */,
- 28BA73AE24E34DBC00272C2D /* Lexilla.cxx in Sources */,
- 28BA72C324E34D5B00272C2D /* LexerSimple.cxx in Sources */,
- 28BA735124E34D9700272C2D /* LexAPDL.cxx in Sources */,
- 28BA736424E34D9700272C2D /* LexGAP.cxx in Sources */,
- 28BA734324E34D9700272C2D /* LexRebol.cxx in Sources */,
- 28BA733E24E34D9700272C2D /* LexSML.cxx in Sources */,
- 28BA738C24E34D9700272C2D /* LexVerilog.cxx in Sources */,
- 28BA738624E34D9700272C2D /* LexNull.cxx in Sources */,
- 28BA736124E34D9700272C2D /* LexBatch.cxx in Sources */,
- 28BA736924E34D9700272C2D /* LexPOV.cxx in Sources */,
- 28BA734124E34D9700272C2D /* LexGui4Cli.cxx in Sources */,
- 28BA734824E34D9700272C2D /* LexBullant.cxx in Sources */,
- 28BA734B24E34D9700272C2D /* LexEiffel.cxx in Sources */,
- 28BA73A424E34D9700272C2D /* LexAVE.cxx in Sources */,
- 28BA738D24E34D9700272C2D /* LexHaskell.cxx in Sources */,
- 28BA735024E34D9700272C2D /* LexSorcus.cxx in Sources */,
- 28BA739F24E34D9700272C2D /* LexLout.cxx in Sources */,
- 28BA73A124E34D9700272C2D /* LexMarkdown.cxx in Sources */,
- 28BA739224E34D9700272C2D /* LexDMAP.cxx in Sources */,
- 28BA737824E34D9700272C2D /* LexA68k.cxx in Sources */,
- 28BA735A24E34D9700272C2D /* LexErlang.cxx in Sources */,
- 28BA738B24E34D9700272C2D /* LexHex.cxx in Sources */,
- 28BA735224E34D9700272C2D /* LexD.cxx in Sources */,
- 28BA73A324E34D9700272C2D /* LexPascal.cxx in Sources */,
- 28BA739924E34D9700272C2D /* LexPLM.cxx in Sources */,
- 28BA735724E34D9700272C2D /* LexPowerShell.cxx in Sources */,
- 28BA738324E34D9700272C2D /* LexKix.cxx in Sources */,
- 28BA72B424E34D5B00272C2D /* PropSetSimple.cxx in Sources */,
- 28BA737C24E34D9700272C2D /* LexX12.cxx in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
-/* End PBXSourcesBuildPhase section */
-
-/* Begin XCBuildConfiguration section */
- 280262AE246DF655000DF3B8 /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ALWAYS_SEARCH_USER_PATHS = NO;
- CLANG_ANALYZER_NONNULL = YES;
- CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
- CLANG_CXX_LIBRARY = "libc++";
- CLANG_ENABLE_MODULES = YES;
- CLANG_ENABLE_OBJC_ARC = YES;
- CLANG_ENABLE_OBJC_WEAK = YES;
- CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
- CLANG_WARN_BOOL_CONVERSION = YES;
- CLANG_WARN_COMMA = YES;
- CLANG_WARN_CONSTANT_CONVERSION = YES;
- CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
- CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
- CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
- CLANG_WARN_EMPTY_BODY = YES;
- CLANG_WARN_ENUM_CONVERSION = YES;
- CLANG_WARN_INFINITE_RECURSION = YES;
- CLANG_WARN_INT_CONVERSION = YES;
- CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
- CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
- CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
- CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
- CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
- CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
- CLANG_WARN_STRICT_PROTOTYPES = YES;
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
- CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
- CLANG_WARN_UNREACHABLE_CODE = YES;
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
- COPY_PHASE_STRIP = NO;
- DEBUG_INFORMATION_FORMAT = dwarf;
- ENABLE_STRICT_OBJC_MSGSEND = YES;
- ENABLE_TESTABILITY = YES;
- GCC_C_LANGUAGE_STANDARD = gnu11;
- GCC_DYNAMIC_NO_PIC = NO;
- GCC_NO_COMMON_BLOCKS = YES;
- GCC_OPTIMIZATION_LEVEL = 0;
- GCC_PREPROCESSOR_DEFINITIONS = (
- "DEBUG=1",
- "$(inherited)",
- );
- GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
- GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
- GCC_WARN_UNDECLARED_SELECTOR = YES;
- GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
- GCC_WARN_UNUSED_FUNCTION = YES;
- GCC_WARN_UNUSED_VARIABLE = YES;
- MACOSX_DEPLOYMENT_TARGET = 10.8;
- MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
- MTL_FAST_MATH = YES;
- ONLY_ACTIVE_ARCH = YES;
- SDKROOT = macosx;
- };
- name = Debug;
- };
- 280262AF246DF655000DF3B8 /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ALWAYS_SEARCH_USER_PATHS = NO;
- CLANG_ANALYZER_NONNULL = YES;
- CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
- CLANG_CXX_LIBRARY = "libc++";
- CLANG_ENABLE_MODULES = YES;
- CLANG_ENABLE_OBJC_ARC = YES;
- CLANG_ENABLE_OBJC_WEAK = YES;
- CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
- CLANG_WARN_BOOL_CONVERSION = YES;
- CLANG_WARN_COMMA = YES;
- CLANG_WARN_CONSTANT_CONVERSION = YES;
- CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
- CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
- CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
- CLANG_WARN_EMPTY_BODY = YES;
- CLANG_WARN_ENUM_CONVERSION = YES;
- CLANG_WARN_INFINITE_RECURSION = YES;
- CLANG_WARN_INT_CONVERSION = YES;
- CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
- CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
- CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
- CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
- CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
- CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
- CLANG_WARN_STRICT_PROTOTYPES = YES;
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
- CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
- CLANG_WARN_UNREACHABLE_CODE = YES;
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
- COPY_PHASE_STRIP = NO;
- DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
- ENABLE_NS_ASSERTIONS = NO;
- ENABLE_STRICT_OBJC_MSGSEND = YES;
- GCC_C_LANGUAGE_STANDARD = gnu11;
- GCC_NO_COMMON_BLOCKS = YES;
- GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
- GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
- GCC_WARN_UNDECLARED_SELECTOR = YES;
- GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
- GCC_WARN_UNUSED_FUNCTION = YES;
- GCC_WARN_UNUSED_VARIABLE = YES;
- MACOSX_DEPLOYMENT_TARGET = 10.8;
- MTL_ENABLE_DEBUG_INFO = NO;
- MTL_FAST_MATH = YES;
- SDKROOT = macosx;
- };
- name = Release;
- };
- 280262B1246DF655000DF3B8 /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++17";
- CODE_SIGN_STYLE = Automatic;
- CURRENT_PROJECT_VERSION = 4.4.6;
- DEVELOPMENT_TEAM = 4F446KW87E;
- DYLIB_COMPATIBILITY_VERSION = 1;
- DYLIB_CURRENT_VERSION = 1;
- EXECUTABLE_PREFIX = lib;
- GCC_ENABLE_CPP_EXCEPTIONS = YES;
- GCC_ENABLE_CPP_RTTI = YES;
- GCC_SYMBOLS_PRIVATE_EXTERN = YES;
- HEADER_SEARCH_PATHS = (
- ../../../include,
- ../../../lexlib,
- );
- INFOPLIST_FILE = "$(SRCROOT)/Lexilla/Info.plist";
- INSTALL_PATH = "@rpath";
- PRODUCT_BUNDLE_IDENTIFIER = org.scintilla.Lexilla;
- PRODUCT_NAME = "$(TARGET_NAME)";
- SKIP_INSTALL = YES;
- };
- name = Debug;
- };
- 280262B2246DF655000DF3B8 /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++17";
- CODE_SIGN_STYLE = Automatic;
- CURRENT_PROJECT_VERSION = 4.4.6;
- DEVELOPMENT_TEAM = 4F446KW87E;
- DYLIB_COMPATIBILITY_VERSION = 1;
- DYLIB_CURRENT_VERSION = 1;
- EXECUTABLE_PREFIX = lib;
- GCC_ENABLE_CPP_EXCEPTIONS = YES;
- GCC_ENABLE_CPP_RTTI = YES;
- GCC_SYMBOLS_PRIVATE_EXTERN = YES;
- HEADER_SEARCH_PATHS = (
- ../../../include,
- ../../../lexlib,
- );
- INFOPLIST_FILE = "$(SRCROOT)/Lexilla/Info.plist";
- INSTALL_PATH = "@rpath";
- PRODUCT_BUNDLE_IDENTIFIER = org.scintilla.Lexilla;
- PRODUCT_NAME = "$(TARGET_NAME)";
- SKIP_INSTALL = YES;
- };
- name = Release;
- };
-/* End XCBuildConfiguration section */
-
-/* Begin XCConfigurationList section */
- 280262A0246DF655000DF3B8 /* Build configuration list for PBXProject "Lexilla" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 280262AE246DF655000DF3B8 /* Debug */,
- 280262AF246DF655000DF3B8 /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- 280262B0246DF655000DF3B8 /* Build configuration list for PBXNativeTarget "lexilla" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 280262B1246DF655000DF3B8 /* Debug */,
- 280262B2246DF655000DF3B8 /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
-/* End XCConfigurationList section */
- };
- rootObject = 2802629D246DF655000DF3B8 /* Project object */;
-}
diff --git a/lexilla/src/Lexilla/Lexilla.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/lexilla/src/Lexilla/Lexilla.xcodeproj/project.xcworkspace/contents.xcworkspacedata
deleted file mode 100644
index 3a367d953..000000000
--- a/lexilla/src/Lexilla/Lexilla.xcodeproj/project.xcworkspace/contents.xcworkspacedata
+++ /dev/null
@@ -1,7 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<Workspace
- version = "1.0">
- <FileRef
- location = "self:Lexilla.xcodeproj">
- </FileRef>
-</Workspace>
diff --git a/lexilla/src/Lexilla/Lexilla.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/lexilla/src/Lexilla/Lexilla.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
deleted file mode 100644
index 18d981003..000000000
--- a/lexilla/src/Lexilla/Lexilla.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
-<plist version="1.0">
-<dict>
- <key>IDEDidComputeMac32BitWarning</key>
- <true/>
-</dict>
-</plist>
diff --git a/lexilla/src/LexillaVersion.rc b/lexilla/src/LexillaVersion.rc
deleted file mode 100644
index 0afa04452..000000000
--- a/lexilla/src/LexillaVersion.rc
+++ /dev/null
@@ -1,37 +0,0 @@
-// Resource file for Lexilla - provides a version number
-// Copyright 2020 by Neil Hodgson <neilh@scintilla.org>
-// The License.txt file describes the conditions under which this software may be distributed.
-
-#include <windows.h>
-
-#define VERSION_LEXILLA "4.4.6"
-#define VERSION_WORDS 4, 4, 6, 0
-
-VS_VERSION_INFO VERSIONINFO
-FILEVERSION VERSION_WORDS
-PRODUCTVERSION VERSION_WORDS
-FILEFLAGSMASK 0x3fL
-FILEFLAGS 0
-FILEOS VOS_NT_WINDOWS32
-FILETYPE VFT_APP
-FILESUBTYPE VFT2_UNKNOWN
-BEGIN
- BLOCK "VarFileInfo"
- BEGIN
- VALUE "Translation", 0x409, 1200
- END
- BLOCK "StringFileInfo"
- BEGIN
- BLOCK "040904b0"
- BEGIN
- VALUE "CompanyName", "Neil Hodgson neilh@scintilla.org\0"
- VALUE "FileDescription", "Lexilla.DLL - a Lexical Analysis Component\0"
- VALUE "FileVersion", VERSION_LEXILLA "\0"
- VALUE "InternalName", "Lexilla\0"
- VALUE "LegalCopyright", "Copyright 2019 by Neil Hodgson\0"
- VALUE "OriginalFilename", "Lexilla.DLL\0"
- VALUE "ProductName", "Lexilla\0"
- VALUE "ProductVersion", VERSION_LEXILLA "\0"
- END
- END
-END
diff --git a/lexilla/src/README b/lexilla/src/README
deleted file mode 100644
index d65790afd..000000000
--- a/lexilla/src/README
+++ /dev/null
@@ -1,45 +0,0 @@
-README for Lexilla library.
-
-The Lexilla library contains a set of lexers and folders that provides support for
-programming, mark-up, and data languages for the Scintilla source code editing
-component.
-
-Lexilla is made available as both a shared library and static library.
-The shared library is called liblexilla.so / liblexilla.dylib / lexilla.dll on Linux / macOS /
-Windows.
-The static library is called liblexilla.a when built with GCC or Clang and liblexilla.lib
-when built with MSVC.
-
-Lexilla is developed on Windows, Linux, and macOS and requires a C++17 compiler.
-It may work on other Unix platforms like BSD but that is not a development focus.
-MSVC 2019.4, GCC 9.0, Clang 9.0, and Apple Clang 11.0 are known to work.
-
-MSVC is only available on Windows.
-
-GCC and Clang work on Windows and Linux.
-
-On macOS, only Apple Clang is available.
-
-To use GCC, run lexilla/src/makefile:
- make
-
-To use Clang, run lexilla/test/makefile:
- make CLANG=1
-On macOS, CLANG is set automatically so this can just be
- make
-
-To use MSVC, run lexilla/test/lexilla.mak:
- nmake -f lexilla.mak
-
-To build a debugging version of the library, add DEBUG=1 to the command:
- make DEBUG=1
-
-The built libraries are copied into scintilla/bin.
-
-Lexilla relies on a list of lexers from the scintilla/lexers directory. If any changes are
-made to the set of lexers then source and build files can be regenerated with the
-lexilla/scripts/LexillaGen.py script which requires Python 3 and is tested with 3.7+.
-Unix:
- python3 LexillaGen.py
-Windows:
- pyw LexillaGen.py
diff --git a/lexilla/src/deps.mak b/lexilla/src/deps.mak
deleted file mode 100644
index 8c3c33c79..000000000
--- a/lexilla/src/deps.mak
+++ /dev/null
@@ -1,1519 +0,0 @@
-# Created by DepGen.py. To recreate, run DepGen.py.
-Lexilla.o: \
- ../../lexilla/src/Lexilla.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../lexlib/LexerModule.h \
- ../../lexlib/CatalogueModules.h
-Accessor.o: \
- ../../lexlib/Accessor.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/PropSetSimple.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h
-CharacterCategory.o: \
- ../../lexlib/CharacterCategory.cxx \
- ../../lexlib/CharacterCategory.h
-CharacterSet.o: \
- ../../lexlib/CharacterSet.cxx \
- ../../lexlib/CharacterSet.h
-DefaultLexer.o: \
- ../../lexlib/DefaultLexer.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/PropSetSimple.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/LexerModule.h \
- ../../lexlib/DefaultLexer.h
-LexerBase.o: \
- ../../lexlib/LexerBase.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/PropSetSimple.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/LexerModule.h \
- ../../lexlib/LexerBase.h
-LexerModule.o: \
- ../../lexlib/LexerModule.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/PropSetSimple.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/LexerModule.h \
- ../../lexlib/LexerBase.h \
- ../../lexlib/LexerSimple.h
-LexerNoExceptions.o: \
- ../../lexlib/LexerNoExceptions.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/PropSetSimple.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/LexerModule.h \
- ../../lexlib/LexerBase.h \
- ../../lexlib/LexerNoExceptions.h
-LexerSimple.o: \
- ../../lexlib/LexerSimple.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/PropSetSimple.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/LexerModule.h \
- ../../lexlib/LexerBase.h \
- ../../lexlib/LexerSimple.h
-PropSetSimple.o: \
- ../../lexlib/PropSetSimple.cxx \
- ../../lexlib/PropSetSimple.h
-StyleContext.o: \
- ../../lexlib/StyleContext.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h
-WordList.o: \
- ../../lexlib/WordList.cxx \
- ../../lexlib/WordList.h
-LexA68k.o: \
- ../../lexers/LexA68k.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-LexAbaqus.o: \
- ../../lexers/LexAbaqus.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-LexAda.o: \
- ../../lexers/LexAda.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-LexAPDL.o: \
- ../../lexers/LexAPDL.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-LexAsm.o: \
- ../../lexers/LexAsm.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h \
- ../../lexlib/OptionSet.h \
- ../../lexlib/DefaultLexer.h
-LexAsn1.o: \
- ../../lexers/LexAsn1.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-LexASY.o: \
- ../../lexers/LexASY.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-LexAU3.o: \
- ../../lexers/LexAU3.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-LexAVE.o: \
- ../../lexers/LexAVE.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-LexAVS.o: \
- ../../lexers/LexAVS.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-LexBaan.o: \
- ../../lexers/LexBaan.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h \
- ../../lexlib/OptionSet.h \
- ../../lexlib/DefaultLexer.h
-LexBash.o: \
- ../../lexers/LexBash.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/StringCopy.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h \
- ../../lexlib/OptionSet.h \
- ../../lexlib/SubStyles.h \
- ../../lexlib/DefaultLexer.h
-LexBasic.o: \
- ../../lexers/LexBasic.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h \
- ../../lexlib/OptionSet.h \
- ../../lexlib/DefaultLexer.h
-LexBatch.o: \
- ../../lexers/LexBatch.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-LexBibTeX.o: \
- ../../lexers/LexBibTeX.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/PropSetSimple.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-LexBullant.o: \
- ../../lexers/LexBullant.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-LexCaml.o: \
- ../../lexers/LexCaml.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/PropSetSimple.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h \
- ../../src/ExternalLexer.h
-LexCIL.o: \
- ../../lexers/LexCIL.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/StringCopy.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h \
- ../../lexlib/OptionSet.h \
- ../../lexlib/DefaultLexer.h
-LexCLW.o: \
- ../../lexers/LexCLW.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-LexCmake.o: \
- ../../lexers/LexCmake.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-LexCOBOL.o: \
- ../../lexers/LexCOBOL.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-LexCoffeeScript.o: \
- ../../lexers/LexCoffeeScript.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-LexConf.o: \
- ../../lexers/LexConf.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-LexCPP.o: \
- ../../lexers/LexCPP.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/StringCopy.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h \
- ../../lexlib/OptionSet.h \
- ../../lexlib/SparseState.h \
- ../../lexlib/SubStyles.h
-LexCrontab.o: \
- ../../lexers/LexCrontab.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-LexCsound.o: \
- ../../lexers/LexCsound.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-LexCSS.o: \
- ../../lexers/LexCSS.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-LexD.o: \
- ../../lexers/LexD.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h \
- ../../lexlib/OptionSet.h \
- ../../lexlib/DefaultLexer.h
-LexDataflex.o: \
- ../../lexers/LexDataflex.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-LexDiff.o: \
- ../../lexers/LexDiff.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-LexDMAP.o: \
- ../../lexers/LexDMAP.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-LexDMIS.o: \
- ../../lexers/LexDMIS.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h \
- ../../lexlib/DefaultLexer.h
-LexECL.o: \
- ../../lexers/LexECL.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/PropSetSimple.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h \
- ../../lexlib/OptionSet.h
-LexEDIFACT.o: \
- ../../lexers/LexEDIFACT.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/LexerModule.h \
- ../../lexlib/DefaultLexer.h
-LexEiffel.o: \
- ../../lexers/LexEiffel.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-LexErlang.o: \
- ../../lexers/LexErlang.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-LexErrorList.o: \
- ../../lexers/LexErrorList.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-LexEScript.o: \
- ../../lexers/LexEScript.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-LexFlagship.o: \
- ../../lexers/LexFlagship.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-LexForth.o: \
- ../../lexers/LexForth.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-LexFortran.o: \
- ../../lexers/LexFortran.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-LexGAP.o: \
- ../../lexers/LexGAP.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-LexGui4Cli.o: \
- ../../lexers/LexGui4Cli.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-LexHaskell.o: \
- ../../lexers/LexHaskell.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/PropSetSimple.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/CharacterCategory.h \
- ../../lexlib/LexerModule.h \
- ../../lexlib/OptionSet.h \
- ../../lexlib/DefaultLexer.h
-LexHex.o: \
- ../../lexers/LexHex.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-LexHollywood.o: \
- ../../lexers/LexHollywood.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h \
- ../../lexlib/OptionSet.h \
- ../../lexlib/DefaultLexer.h
-LexHTML.o: \
- ../../lexers/LexHTML.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h \
- ../../lexlib/OptionSet.h \
- ../../lexlib/DefaultLexer.h
-LexIndent.o: \
- ../../lexers/LexIndent.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-LexInno.o: \
- ../../lexers/LexInno.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-LexJSON.o: \
- ../../lexers/LexJSON.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h \
- ../../lexlib/OptionSet.h \
- ../../lexlib/DefaultLexer.h
-LexKix.o: \
- ../../lexers/LexKix.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-LexKVIrc.o: \
- ../../lexers/LexKVIrc.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-LexLaTeX.o: \
- ../../lexers/LexLaTeX.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/PropSetSimple.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h \
- ../../lexlib/DefaultLexer.h \
- ../../lexlib/LexerBase.h
-LexLisp.o: \
- ../../lexers/LexLisp.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-LexLout.o: \
- ../../lexers/LexLout.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-LexLua.o: \
- ../../lexers/LexLua.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/StringCopy.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-LexMagik.o: \
- ../../lexers/LexMagik.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-LexMake.o: \
- ../../lexers/LexMake.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-LexMarkdown.o: \
- ../../lexers/LexMarkdown.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-LexMatlab.o: \
- ../../lexers/LexMatlab.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-LexMaxima.o: \
- ../../lexers/LexMaxima.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-LexMetapost.o: \
- ../../lexers/LexMetapost.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-LexMMIXAL.o: \
- ../../lexers/LexMMIXAL.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-LexModula.o: \
- ../../lexers/LexModula.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/PropSetSimple.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-LexMPT.o: \
- ../../lexers/LexMPT.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-LexMSSQL.o: \
- ../../lexers/LexMSSQL.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-LexMySQL.o: \
- ../../lexers/LexMySQL.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-LexNim.o: \
- ../../lexers/LexNim.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/StringCopy.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h \
- ../../lexlib/OptionSet.h \
- ../../lexlib/DefaultLexer.h
-LexNimrod.o: \
- ../../lexers/LexNimrod.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-LexNsis.o: \
- ../../lexers/LexNsis.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-LexNull.o: \
- ../../lexers/LexNull.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-LexOpal.o: \
- ../../lexers/LexOpal.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-LexOScript.o: \
- ../../lexers/LexOScript.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-LexPascal.o: \
- ../../lexers/LexPascal.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-LexPB.o: \
- ../../lexers/LexPB.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-LexPerl.o: \
- ../../lexers/LexPerl.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h \
- ../../lexlib/OptionSet.h \
- ../../lexlib/DefaultLexer.h
-LexPLM.o: \
- ../../lexers/LexPLM.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-LexPO.o: \
- ../../lexers/LexPO.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-LexPOV.o: \
- ../../lexers/LexPOV.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-LexPowerPro.o: \
- ../../lexers/LexPowerPro.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-LexPowerShell.o: \
- ../../lexers/LexPowerShell.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-LexProgress.o: \
- ../../lexers/LexProgress.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h \
- ../../lexlib/OptionSet.h \
- ../../lexlib/SparseState.h \
- ../../lexlib/DefaultLexer.h
-LexProps.o: \
- ../../lexers/LexProps.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-LexPS.o: \
- ../../lexers/LexPS.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-LexPython.o: \
- ../../lexers/LexPython.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/StringCopy.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/CharacterCategory.h \
- ../../lexlib/LexerModule.h \
- ../../lexlib/OptionSet.h \
- ../../lexlib/SubStyles.h \
- ../../lexlib/DefaultLexer.h
-LexR.o: \
- ../../lexers/LexR.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-LexRaku.o: \
- ../../lexers/LexRaku.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/CharacterCategory.h \
- ../../lexlib/LexerModule.h \
- ../../lexlib/OptionSet.h \
- ../../lexlib/DefaultLexer.h
-LexRebol.o: \
- ../../lexers/LexRebol.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-LexRegistry.o: \
- ../../lexers/LexRegistry.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h \
- ../../lexlib/OptionSet.h \
- ../../lexlib/DefaultLexer.h
-LexRuby.o: \
- ../../lexers/LexRuby.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-LexRust.o: \
- ../../lexers/LexRust.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/PropSetSimple.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h \
- ../../lexlib/OptionSet.h \
- ../../lexlib/DefaultLexer.h
-LexSAS.o: \
- ../../lexers/LexSAS.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-LexScriptol.o: \
- ../../lexers/LexScriptol.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-LexSmalltalk.o: \
- ../../lexers/LexSmalltalk.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-LexSML.o: \
- ../../lexers/LexSML.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-LexSorcus.o: \
- ../../lexers/LexSorcus.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-LexSpecman.o: \
- ../../lexers/LexSpecman.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-LexSpice.o: \
- ../../lexers/LexSpice.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-LexSQL.o: \
- ../../lexers/LexSQL.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h \
- ../../lexlib/OptionSet.h \
- ../../lexlib/SparseState.h \
- ../../lexlib/DefaultLexer.h
-LexStata.o: \
- ../../lexers/LexStata.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-LexSTTXT.o: \
- ../../lexers/LexSTTXT.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-LexTACL.o: \
- ../../lexers/LexTACL.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-LexTADS3.o: \
- ../../lexers/LexTADS3.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-LexTAL.o: \
- ../../lexers/LexTAL.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-LexTCL.o: \
- ../../lexers/LexTCL.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-LexTCMD.o: \
- ../../lexers/LexTCMD.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-LexTeX.o: \
- ../../lexers/LexTeX.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-LexTxt2tags.o: \
- ../../lexers/LexTxt2tags.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-LexVB.o: \
- ../../lexers/LexVB.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-LexVerilog.o: \
- ../../lexers/LexVerilog.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h \
- ../../lexlib/OptionSet.h \
- ../../lexlib/SubStyles.h \
- ../../lexlib/DefaultLexer.h
-LexVHDL.o: \
- ../../lexers/LexVHDL.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-LexVisualProlog.o: \
- ../../lexers/LexVisualProlog.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/CharacterCategory.h \
- ../../lexlib/LexerModule.h \
- ../../lexlib/OptionSet.h \
- ../../lexlib/DefaultLexer.h
-LexX12.o: \
- ../../lexers/LexX12.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/LexerModule.h \
- ../../lexlib/DefaultLexer.h
-LexYAML.o: \
- ../../lexers/LexYAML.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
diff --git a/lexilla/src/lexilla.mak b/lexilla/src/lexilla.mak
deleted file mode 100644
index 90ba13750..000000000
--- a/lexilla/src/lexilla.mak
+++ /dev/null
@@ -1,238 +0,0 @@
-# Make file for Lexilla on Windows Visual C++ version
-# Copyright 2019 by Neil Hodgson <neilh@scintilla.org>
-# The License.txt file describes the conditions under which this software may be distributed.
-# This makefile is for using Visual C++ with nmake.
-# Usage for Microsoft:
-# nmake -f lexilla.mak
-# For debug versions define DEBUG on the command line:
-# nmake DEBUG=1 -f lexilla.mak
-# To build with GCC or Clang, run makefile
-
-.SUFFIXES: .cxx
-
-DIR_O=.
-DIR_BIN=..\..\bin
-
-LEXILLA=$(DIR_BIN)\lexilla.dll
-LIBLEXILLA=$(DIR_BIN)\liblexilla.lib
-
-LD=link
-
-!IFDEF SUPPORT_XP
-ADD_DEFINE=-D_USING_V110_SDK71_
-# Different subsystems for 32-bit and 64-bit Windows XP so detect based on Platform
-# environment vairable set by vcvars*.bat to be either x86 or x64
-!IF "$(PLATFORM)" == "x64"
-SUBSYSTEM=-SUBSYSTEM:WINDOWS,5.02
-!ELSE
-SUBSYSTEM=-SUBSYSTEM:WINDOWS,5.01
-!ENDIF
-!ELSEIFDEF ARM64
-ADD_DEFINE=-D_ARM64_WINAPI_PARTITION_DESKTOP_SDK_AVAILABLE=1
-SUBSYSTEM=-SUBSYSTEM:WINDOWS,10.00
-!ENDIF
-
-CRTFLAGS=-D_CRT_SECURE_CPP_OVERLOAD_STANDARD_NAMES=1 -D_CRT_SECURE_NO_DEPRECATE=1 -D_SCL_SECURE_NO_WARNINGS=1 $(ADD_DEFINE)
-CXXFLAGS=-Zi -TP -MP -W4 -EHsc -std:c++17 $(CRTFLAGS)
-CXXDEBUG=-Od -MTd -DDEBUG
-CXXNDEBUG=-O1 -MT -DNDEBUG -GL
-NAME=-Fo
-LDFLAGS=-OPT:REF -LTCG -IGNORE:4197 -DEBUG $(SUBSYSTEM)
-LDDEBUG=
-LIBS=
-NOLOGO=-nologo
-
-!IFDEF QUIET
-CXX=@$(CXX)
-CXXFLAGS=$(CXXFLAGS) $(NOLOGO)
-LDFLAGS=$(LDFLAGS) $(NOLOGO)
-!ENDIF
-
-!IFDEF DEBUG
-CXXFLAGS=$(CXXFLAGS) $(CXXDEBUG)
-LDFLAGS=$(LDDEBUG) $(LDFLAGS)
-!ELSE
-CXXFLAGS=$(CXXFLAGS) $(CXXNDEBUG)
-!ENDIF
-
-INCLUDEDIRS=-I../../include -I../../src -I../../lexlib
-CXXFLAGS=$(CXXFLAGS) $(INCLUDEDIRS)
-
-all: $(LEXILLA) $(LIBLEXILLA)
-
-clean:
- -del /q $(DIR_O)\*.obj $(DIR_O)\*.o $(DIR_O)\*.pdb \
- $(DIR_O)\*.res $(DIR_BIN)\*.map $(DIR_BIN)\*.exp $(DIR_BIN)\*.pdb $(DIR_BIN)\lexilla.lib \
- $(LEXILLA) $(LIBLEXILLA)
-
-depend:
- pyw DepGen.py
-
-#++Autogenerated -- run scripts/LexGen.py to regenerate
-#**LEX_OBJS=\\\n\(\t$(DIR_O)\\\*.obj \\\n\)
-LEX_OBJS=\
- $(DIR_O)\LexA68k.obj \
- $(DIR_O)\LexAbaqus.obj \
- $(DIR_O)\LexAda.obj \
- $(DIR_O)\LexAPDL.obj \
- $(DIR_O)\LexAsm.obj \
- $(DIR_O)\LexAsn1.obj \
- $(DIR_O)\LexASY.obj \
- $(DIR_O)\LexAU3.obj \
- $(DIR_O)\LexAVE.obj \
- $(DIR_O)\LexAVS.obj \
- $(DIR_O)\LexBaan.obj \
- $(DIR_O)\LexBash.obj \
- $(DIR_O)\LexBasic.obj \
- $(DIR_O)\LexBatch.obj \
- $(DIR_O)\LexBibTeX.obj \
- $(DIR_O)\LexBullant.obj \
- $(DIR_O)\LexCaml.obj \
- $(DIR_O)\LexCIL.obj \
- $(DIR_O)\LexCLW.obj \
- $(DIR_O)\LexCmake.obj \
- $(DIR_O)\LexCOBOL.obj \
- $(DIR_O)\LexCoffeeScript.obj \
- $(DIR_O)\LexConf.obj \
- $(DIR_O)\LexCPP.obj \
- $(DIR_O)\LexCrontab.obj \
- $(DIR_O)\LexCsound.obj \
- $(DIR_O)\LexCSS.obj \
- $(DIR_O)\LexD.obj \
- $(DIR_O)\LexDataflex.obj \
- $(DIR_O)\LexDiff.obj \
- $(DIR_O)\LexDMAP.obj \
- $(DIR_O)\LexDMIS.obj \
- $(DIR_O)\LexECL.obj \
- $(DIR_O)\LexEDIFACT.obj \
- $(DIR_O)\LexEiffel.obj \
- $(DIR_O)\LexErlang.obj \
- $(DIR_O)\LexErrorList.obj \
- $(DIR_O)\LexEScript.obj \
- $(DIR_O)\LexFlagship.obj \
- $(DIR_O)\LexForth.obj \
- $(DIR_O)\LexFortran.obj \
- $(DIR_O)\LexGAP.obj \
- $(DIR_O)\LexGui4Cli.obj \
- $(DIR_O)\LexHaskell.obj \
- $(DIR_O)\LexHex.obj \
- $(DIR_O)\LexHollywood.obj \
- $(DIR_O)\LexHTML.obj \
- $(DIR_O)\LexIndent.obj \
- $(DIR_O)\LexInno.obj \
- $(DIR_O)\LexJSON.obj \
- $(DIR_O)\LexKix.obj \
- $(DIR_O)\LexKVIrc.obj \
- $(DIR_O)\LexLaTeX.obj \
- $(DIR_O)\LexLisp.obj \
- $(DIR_O)\LexLout.obj \
- $(DIR_O)\LexLua.obj \
- $(DIR_O)\LexMagik.obj \
- $(DIR_O)\LexMake.obj \
- $(DIR_O)\LexMarkdown.obj \
- $(DIR_O)\LexMatlab.obj \
- $(DIR_O)\LexMaxima.obj \
- $(DIR_O)\LexMetapost.obj \
- $(DIR_O)\LexMMIXAL.obj \
- $(DIR_O)\LexModula.obj \
- $(DIR_O)\LexMPT.obj \
- $(DIR_O)\LexMSSQL.obj \
- $(DIR_O)\LexMySQL.obj \
- $(DIR_O)\LexNim.obj \
- $(DIR_O)\LexNimrod.obj \
- $(DIR_O)\LexNsis.obj \
- $(DIR_O)\LexNull.obj \
- $(DIR_O)\LexOpal.obj \
- $(DIR_O)\LexOScript.obj \
- $(DIR_O)\LexPascal.obj \
- $(DIR_O)\LexPB.obj \
- $(DIR_O)\LexPerl.obj \
- $(DIR_O)\LexPLM.obj \
- $(DIR_O)\LexPO.obj \
- $(DIR_O)\LexPOV.obj \
- $(DIR_O)\LexPowerPro.obj \
- $(DIR_O)\LexPowerShell.obj \
- $(DIR_O)\LexProgress.obj \
- $(DIR_O)\LexProps.obj \
- $(DIR_O)\LexPS.obj \
- $(DIR_O)\LexPython.obj \
- $(DIR_O)\LexR.obj \
- $(DIR_O)\LexRaku.obj \
- $(DIR_O)\LexRebol.obj \
- $(DIR_O)\LexRegistry.obj \
- $(DIR_O)\LexRuby.obj \
- $(DIR_O)\LexRust.obj \
- $(DIR_O)\LexSAS.obj \
- $(DIR_O)\LexScriptol.obj \
- $(DIR_O)\LexSmalltalk.obj \
- $(DIR_O)\LexSML.obj \
- $(DIR_O)\LexSorcus.obj \
- $(DIR_O)\LexSpecman.obj \
- $(DIR_O)\LexSpice.obj \
- $(DIR_O)\LexSQL.obj \
- $(DIR_O)\LexStata.obj \
- $(DIR_O)\LexSTTXT.obj \
- $(DIR_O)\LexTACL.obj \
- $(DIR_O)\LexTADS3.obj \
- $(DIR_O)\LexTAL.obj \
- $(DIR_O)\LexTCL.obj \
- $(DIR_O)\LexTCMD.obj \
- $(DIR_O)\LexTeX.obj \
- $(DIR_O)\LexTxt2tags.obj \
- $(DIR_O)\LexVB.obj \
- $(DIR_O)\LexVerilog.obj \
- $(DIR_O)\LexVHDL.obj \
- $(DIR_O)\LexVisualProlog.obj \
- $(DIR_O)\LexX12.obj \
- $(DIR_O)\LexYAML.obj \
-
-#--Autogenerated -- end of automatically generated section
-
-# Required by lexers
-LEXLIB_OBJS=\
- $(DIR_O)\Accessor.obj \
- $(DIR_O)\CharacterCategory.obj \
- $(DIR_O)\CharacterSet.obj \
- $(DIR_O)\DefaultLexer.obj \
- $(DIR_O)\LexerBase.obj \
- $(DIR_O)\LexerModule.obj \
- $(DIR_O)\LexerSimple.obj \
- $(DIR_O)\PropSetSimple.obj \
- $(DIR_O)\StyleContext.obj \
- $(DIR_O)\WordList.obj
-
-# Required by libraries and DLLs that include lexing
-LEXILLA_OBJS=\
- $(DIR_O)\Lexilla.obj \
- $(LEXLIB_OBJS) \
- $(LEX_OBJS)
-
-$(LEXILLA): $(LEXILLA_OBJS) LexillaVersion.res
- $(LD) $(LDFLAGS) -DEF:Lexilla.def -DLL -OUT:$@ $** $(LIBS)
-
-$(LIBLEXILLA): $(LEXILLA_OBJS)
- LIB -OUT:$@ $**
-
-# Define how to build all the objects and what they depend on
-
-{..\..\src}.cxx{$(DIR_O)}.obj::
- $(CXX) $(CXXFLAGS) -c $(NAME)$(DIR_O)\ $<
-{..\..\lexlib}.cxx{$(DIR_O)}.obj::
- $(CXX) $(CXXFLAGS) -c $(NAME)$(DIR_O)\ $<
-{..\..\lexers}.cxx{$(DIR_O)}.obj::
- $(CXX) $(CXXFLAGS) -c $(NAME)$(DIR_O)\ $<
-{.}.cxx{$(DIR_O)}.obj::
- $(CXX) $(CXXFLAGS) -c $(NAME)$(DIR_O)\ $<
-
-.rc.res:
- $(RC) -fo$@ $**
-
-# Dependencies
-
-!IF EXISTS(nmdeps.mak)
-
-# Protect with !IF EXISTS to handle accidental deletion - just 'nmake -f lexilla.mak deps'
-
-!INCLUDE nmdeps.mak
-
-!ENDIF
diff --git a/lexilla/src/makefile b/lexilla/src/makefile
deleted file mode 100644
index 123d16e6d..000000000
--- a/lexilla/src/makefile
+++ /dev/null
@@ -1,129 +0,0 @@
-# Make file for Lexilla
-# @file makefile
-# Copyright 2019 by Neil Hodgson <neilh@scintilla.org>
-# The License.txt file describes the conditions under which this software may be distributed.
-# This works on Windows or Linux using GCC 9.0+
-# This works on Windows, Linux, or macOS using Clang 9.0+
-# On Windows, it is tested with Mingw-w64 GCC and Clang.
-# on macOS, it always uses Clang
-# For debug versions define DEBUG on the command line:
-# make DEBUG=1
-# On Windows, to build with MSVC, run lexilla.mak
-
-.PHONY: all clean analyze depend
-
-.SUFFIXES: .cxx
-
-DIR_BIN=../../bin
-
-WARNINGS = -Wpedantic -Wall -Wextra
-
-ifdef windir
- SHARED_NAME = lexilla
- SHAREDEXTENSION = dll
- WINDRES ?= windres
- VERSION_RESOURCE = LexillaVersion.o
-else
- SHARED_NAME = liblexilla
- ifeq ($(shell uname),Darwin)
- CLANG := 1
- LDFLAGS += -dynamiclib
- SHAREDEXTENSION = dylib
- else
- SHAREDEXTENSION = so
- endif
- BASE_FLAGS += -fvisibility=hidden
-endif
-
-LEXILLA=$(DIR_BIN)/$(SHARED_NAME).$(SHAREDEXTENSION)
-LIBLEXILLA=$(DIR_BIN)/liblexilla.a
-
-BASE_FLAGS += --std=c++17
-
-ifdef CLANG
-CXX = clang++
-ifdef windir
-# Clang on Win32 uses MSVC headers so will complain about strcpy without this
-DEFINES += -D_CRT_SECURE_NO_DEPRECATE=1
-endif
-endif
-
-ifdef windir
- LDFLAGS += -mwindows
-else
- BASE_FLAGS += -fPIC
-endif
-
-# Take care of changing Unix style '/' directory separator to '\' on Windows
-normalize = $(if $(windir),$(subst /,\,$1),$1)
-
-PYTHON = $(if $(windir),pyw,python3)
-
-ifdef windir
- DEL = $(if $(wildcard $(dir $(SHELL))rm.exe), $(dir $(SHELL))rm.exe -f, del /q)
-else
- DEL = rm -f
-endif
-
-RANLIB ?= ranlib
-
-vpath %.h ../../src ../../include ../../lexlib
-vpath %.cxx ../../src ../../lexlib ../../lexers
-
-DEFINES += -D$(if $(DEBUG),DEBUG,NDEBUG)
-BASE_FLAGS += $(if $(DEBUG),-g,-Os)
-
-INCLUDES = -I ../../include -I ../../src -I ../../lexlib
-LDFLAGS += -shared
-
-BASE_FLAGS += $(WARNINGS)
-
-all: $(LEXILLA) $(LIBLEXILLA)
-
-clean:
- $(DEL) *.o *.obj *.a *.res *.map *.plist $(call normalize,$(LEXILLA) $(LIBLEXILLA))
-
-%.o: %.cxx
- $(CXX) $(DEFINES) $(INCLUDES) $(BASE_FLAGS) $(CPPFLAGS) $(CXXFLAGS) -c $< -o $@
-
-%.o: %.rc
- $(WINDRES) $< $@
-
-analyze:
- $(CXX) --analyze $(DEFINES) $(INCLUDES) $(BASE_FLAGS) $(CXXFLAGS) *.cxx ../../lexlib/*.cxx ../../lexers/*.cxx
-
-depend deps.mak:
- $(PYTHON) DepGen.py
-
-LEXERS:=$(sort $(notdir $(wildcard ../../lexers/Lex*.cxx)))
-
-OBJS = Lexilla.o
-
-# Required by lexers
-LEXLIB_OBJS=\
- Accessor.o \
- CharacterCategory.o \
- CharacterSet.o \
- DefaultLexer.o \
- LexerBase.o \
- LexerModule.o \
- LexerSimple.o \
- PropSetSimple.o \
- StyleContext.o \
- WordList.o
-
-# Required by libraries and DLLs that include lexing
-LEXILLA_OBJS=\
- $(OBJS) \
- $(LEXLIB_OBJS) \
- $(LEXERS:.cxx=.o)
-
-$(LEXILLA): $(LEXILLA_OBJS) $(VERSION_RESOURCE)
- $(CXX) $(CXXFLAGS) $(LDFLAGS) $^ -o $@
-
-$(LIBLEXILLA): $(LEXILLA_OBJS)
- $(AR) rc $@ $^
- $(RANLIB) $@
-
-# Automatically generate dependencies for most files with "make deps"
-include deps.mak
diff --git a/lexilla/src/nmdeps.mak b/lexilla/src/nmdeps.mak
deleted file mode 100644
index d35ef8852..000000000
--- a/lexilla/src/nmdeps.mak
+++ /dev/null
@@ -1,1519 +0,0 @@
-# Created by DepGen.py. To recreate, run DepGen.py.
-$(DIR_O)/Lexilla.obj: \
- ../../lexilla/src/Lexilla.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../lexlib/LexerModule.h \
- ../../lexlib/CatalogueModules.h
-$(DIR_O)/Accessor.obj: \
- ../../lexlib/Accessor.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/PropSetSimple.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h
-$(DIR_O)/CharacterCategory.obj: \
- ../../lexlib/CharacterCategory.cxx \
- ../../lexlib/CharacterCategory.h
-$(DIR_O)/CharacterSet.obj: \
- ../../lexlib/CharacterSet.cxx \
- ../../lexlib/CharacterSet.h
-$(DIR_O)/DefaultLexer.obj: \
- ../../lexlib/DefaultLexer.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/PropSetSimple.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/LexerModule.h \
- ../../lexlib/DefaultLexer.h
-$(DIR_O)/LexerBase.obj: \
- ../../lexlib/LexerBase.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/PropSetSimple.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/LexerModule.h \
- ../../lexlib/LexerBase.h
-$(DIR_O)/LexerModule.obj: \
- ../../lexlib/LexerModule.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/PropSetSimple.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/LexerModule.h \
- ../../lexlib/LexerBase.h \
- ../../lexlib/LexerSimple.h
-$(DIR_O)/LexerNoExceptions.obj: \
- ../../lexlib/LexerNoExceptions.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/PropSetSimple.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/LexerModule.h \
- ../../lexlib/LexerBase.h \
- ../../lexlib/LexerNoExceptions.h
-$(DIR_O)/LexerSimple.obj: \
- ../../lexlib/LexerSimple.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/PropSetSimple.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/LexerModule.h \
- ../../lexlib/LexerBase.h \
- ../../lexlib/LexerSimple.h
-$(DIR_O)/PropSetSimple.obj: \
- ../../lexlib/PropSetSimple.cxx \
- ../../lexlib/PropSetSimple.h
-$(DIR_O)/StyleContext.obj: \
- ../../lexlib/StyleContext.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h
-$(DIR_O)/WordList.obj: \
- ../../lexlib/WordList.cxx \
- ../../lexlib/WordList.h
-$(DIR_O)/LexA68k.obj: \
- ../../lexers/LexA68k.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-$(DIR_O)/LexAbaqus.obj: \
- ../../lexers/LexAbaqus.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-$(DIR_O)/LexAda.obj: \
- ../../lexers/LexAda.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-$(DIR_O)/LexAPDL.obj: \
- ../../lexers/LexAPDL.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-$(DIR_O)/LexAsm.obj: \
- ../../lexers/LexAsm.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h \
- ../../lexlib/OptionSet.h \
- ../../lexlib/DefaultLexer.h
-$(DIR_O)/LexAsn1.obj: \
- ../../lexers/LexAsn1.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-$(DIR_O)/LexASY.obj: \
- ../../lexers/LexASY.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-$(DIR_O)/LexAU3.obj: \
- ../../lexers/LexAU3.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-$(DIR_O)/LexAVE.obj: \
- ../../lexers/LexAVE.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-$(DIR_O)/LexAVS.obj: \
- ../../lexers/LexAVS.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-$(DIR_O)/LexBaan.obj: \
- ../../lexers/LexBaan.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h \
- ../../lexlib/OptionSet.h \
- ../../lexlib/DefaultLexer.h
-$(DIR_O)/LexBash.obj: \
- ../../lexers/LexBash.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/StringCopy.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h \
- ../../lexlib/OptionSet.h \
- ../../lexlib/SubStyles.h \
- ../../lexlib/DefaultLexer.h
-$(DIR_O)/LexBasic.obj: \
- ../../lexers/LexBasic.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h \
- ../../lexlib/OptionSet.h \
- ../../lexlib/DefaultLexer.h
-$(DIR_O)/LexBatch.obj: \
- ../../lexers/LexBatch.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-$(DIR_O)/LexBibTeX.obj: \
- ../../lexers/LexBibTeX.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/PropSetSimple.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-$(DIR_O)/LexBullant.obj: \
- ../../lexers/LexBullant.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-$(DIR_O)/LexCaml.obj: \
- ../../lexers/LexCaml.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/PropSetSimple.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h \
- ../../src/ExternalLexer.h
-$(DIR_O)/LexCIL.obj: \
- ../../lexers/LexCIL.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/StringCopy.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h \
- ../../lexlib/OptionSet.h \
- ../../lexlib/DefaultLexer.h
-$(DIR_O)/LexCLW.obj: \
- ../../lexers/LexCLW.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-$(DIR_O)/LexCmake.obj: \
- ../../lexers/LexCmake.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-$(DIR_O)/LexCOBOL.obj: \
- ../../lexers/LexCOBOL.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-$(DIR_O)/LexCoffeeScript.obj: \
- ../../lexers/LexCoffeeScript.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-$(DIR_O)/LexConf.obj: \
- ../../lexers/LexConf.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-$(DIR_O)/LexCPP.obj: \
- ../../lexers/LexCPP.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/StringCopy.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h \
- ../../lexlib/OptionSet.h \
- ../../lexlib/SparseState.h \
- ../../lexlib/SubStyles.h
-$(DIR_O)/LexCrontab.obj: \
- ../../lexers/LexCrontab.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-$(DIR_O)/LexCsound.obj: \
- ../../lexers/LexCsound.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-$(DIR_O)/LexCSS.obj: \
- ../../lexers/LexCSS.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-$(DIR_O)/LexD.obj: \
- ../../lexers/LexD.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h \
- ../../lexlib/OptionSet.h \
- ../../lexlib/DefaultLexer.h
-$(DIR_O)/LexDataflex.obj: \
- ../../lexers/LexDataflex.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-$(DIR_O)/LexDiff.obj: \
- ../../lexers/LexDiff.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-$(DIR_O)/LexDMAP.obj: \
- ../../lexers/LexDMAP.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-$(DIR_O)/LexDMIS.obj: \
- ../../lexers/LexDMIS.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h \
- ../../lexlib/DefaultLexer.h
-$(DIR_O)/LexECL.obj: \
- ../../lexers/LexECL.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/PropSetSimple.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h \
- ../../lexlib/OptionSet.h
-$(DIR_O)/LexEDIFACT.obj: \
- ../../lexers/LexEDIFACT.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/LexerModule.h \
- ../../lexlib/DefaultLexer.h
-$(DIR_O)/LexEiffel.obj: \
- ../../lexers/LexEiffel.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-$(DIR_O)/LexErlang.obj: \
- ../../lexers/LexErlang.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-$(DIR_O)/LexErrorList.obj: \
- ../../lexers/LexErrorList.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-$(DIR_O)/LexEScript.obj: \
- ../../lexers/LexEScript.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-$(DIR_O)/LexFlagship.obj: \
- ../../lexers/LexFlagship.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-$(DIR_O)/LexForth.obj: \
- ../../lexers/LexForth.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-$(DIR_O)/LexFortran.obj: \
- ../../lexers/LexFortran.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-$(DIR_O)/LexGAP.obj: \
- ../../lexers/LexGAP.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-$(DIR_O)/LexGui4Cli.obj: \
- ../../lexers/LexGui4Cli.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-$(DIR_O)/LexHaskell.obj: \
- ../../lexers/LexHaskell.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/PropSetSimple.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/CharacterCategory.h \
- ../../lexlib/LexerModule.h \
- ../../lexlib/OptionSet.h \
- ../../lexlib/DefaultLexer.h
-$(DIR_O)/LexHex.obj: \
- ../../lexers/LexHex.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-$(DIR_O)/LexHollywood.obj: \
- ../../lexers/LexHollywood.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h \
- ../../lexlib/OptionSet.h \
- ../../lexlib/DefaultLexer.h
-$(DIR_O)/LexHTML.obj: \
- ../../lexers/LexHTML.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h \
- ../../lexlib/OptionSet.h \
- ../../lexlib/DefaultLexer.h
-$(DIR_O)/LexIndent.obj: \
- ../../lexers/LexIndent.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-$(DIR_O)/LexInno.obj: \
- ../../lexers/LexInno.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-$(DIR_O)/LexJSON.obj: \
- ../../lexers/LexJSON.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h \
- ../../lexlib/OptionSet.h \
- ../../lexlib/DefaultLexer.h
-$(DIR_O)/LexKix.obj: \
- ../../lexers/LexKix.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-$(DIR_O)/LexKVIrc.obj: \
- ../../lexers/LexKVIrc.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-$(DIR_O)/LexLaTeX.obj: \
- ../../lexers/LexLaTeX.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/PropSetSimple.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h \
- ../../lexlib/DefaultLexer.h \
- ../../lexlib/LexerBase.h
-$(DIR_O)/LexLisp.obj: \
- ../../lexers/LexLisp.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-$(DIR_O)/LexLout.obj: \
- ../../lexers/LexLout.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-$(DIR_O)/LexLua.obj: \
- ../../lexers/LexLua.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/StringCopy.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-$(DIR_O)/LexMagik.obj: \
- ../../lexers/LexMagik.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-$(DIR_O)/LexMake.obj: \
- ../../lexers/LexMake.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-$(DIR_O)/LexMarkdown.obj: \
- ../../lexers/LexMarkdown.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-$(DIR_O)/LexMatlab.obj: \
- ../../lexers/LexMatlab.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-$(DIR_O)/LexMaxima.obj: \
- ../../lexers/LexMaxima.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-$(DIR_O)/LexMetapost.obj: \
- ../../lexers/LexMetapost.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-$(DIR_O)/LexMMIXAL.obj: \
- ../../lexers/LexMMIXAL.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-$(DIR_O)/LexModula.obj: \
- ../../lexers/LexModula.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/PropSetSimple.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-$(DIR_O)/LexMPT.obj: \
- ../../lexers/LexMPT.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-$(DIR_O)/LexMSSQL.obj: \
- ../../lexers/LexMSSQL.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-$(DIR_O)/LexMySQL.obj: \
- ../../lexers/LexMySQL.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-$(DIR_O)/LexNim.obj: \
- ../../lexers/LexNim.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/StringCopy.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h \
- ../../lexlib/OptionSet.h \
- ../../lexlib/DefaultLexer.h
-$(DIR_O)/LexNimrod.obj: \
- ../../lexers/LexNimrod.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-$(DIR_O)/LexNsis.obj: \
- ../../lexers/LexNsis.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-$(DIR_O)/LexNull.obj: \
- ../../lexers/LexNull.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-$(DIR_O)/LexOpal.obj: \
- ../../lexers/LexOpal.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-$(DIR_O)/LexOScript.obj: \
- ../../lexers/LexOScript.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-$(DIR_O)/LexPascal.obj: \
- ../../lexers/LexPascal.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-$(DIR_O)/LexPB.obj: \
- ../../lexers/LexPB.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-$(DIR_O)/LexPerl.obj: \
- ../../lexers/LexPerl.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h \
- ../../lexlib/OptionSet.h \
- ../../lexlib/DefaultLexer.h
-$(DIR_O)/LexPLM.obj: \
- ../../lexers/LexPLM.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-$(DIR_O)/LexPO.obj: \
- ../../lexers/LexPO.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-$(DIR_O)/LexPOV.obj: \
- ../../lexers/LexPOV.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-$(DIR_O)/LexPowerPro.obj: \
- ../../lexers/LexPowerPro.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-$(DIR_O)/LexPowerShell.obj: \
- ../../lexers/LexPowerShell.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-$(DIR_O)/LexProgress.obj: \
- ../../lexers/LexProgress.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h \
- ../../lexlib/OptionSet.h \
- ../../lexlib/SparseState.h \
- ../../lexlib/DefaultLexer.h
-$(DIR_O)/LexProps.obj: \
- ../../lexers/LexProps.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-$(DIR_O)/LexPS.obj: \
- ../../lexers/LexPS.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-$(DIR_O)/LexPython.obj: \
- ../../lexers/LexPython.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/StringCopy.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/CharacterCategory.h \
- ../../lexlib/LexerModule.h \
- ../../lexlib/OptionSet.h \
- ../../lexlib/SubStyles.h \
- ../../lexlib/DefaultLexer.h
-$(DIR_O)/LexR.obj: \
- ../../lexers/LexR.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-$(DIR_O)/LexRaku.obj: \
- ../../lexers/LexRaku.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/CharacterCategory.h \
- ../../lexlib/LexerModule.h \
- ../../lexlib/OptionSet.h \
- ../../lexlib/DefaultLexer.h
-$(DIR_O)/LexRebol.obj: \
- ../../lexers/LexRebol.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-$(DIR_O)/LexRegistry.obj: \
- ../../lexers/LexRegistry.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h \
- ../../lexlib/OptionSet.h \
- ../../lexlib/DefaultLexer.h
-$(DIR_O)/LexRuby.obj: \
- ../../lexers/LexRuby.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-$(DIR_O)/LexRust.obj: \
- ../../lexers/LexRust.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/PropSetSimple.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h \
- ../../lexlib/OptionSet.h \
- ../../lexlib/DefaultLexer.h
-$(DIR_O)/LexSAS.obj: \
- ../../lexers/LexSAS.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-$(DIR_O)/LexScriptol.obj: \
- ../../lexers/LexScriptol.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-$(DIR_O)/LexSmalltalk.obj: \
- ../../lexers/LexSmalltalk.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-$(DIR_O)/LexSML.obj: \
- ../../lexers/LexSML.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-$(DIR_O)/LexSorcus.obj: \
- ../../lexers/LexSorcus.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-$(DIR_O)/LexSpecman.obj: \
- ../../lexers/LexSpecman.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-$(DIR_O)/LexSpice.obj: \
- ../../lexers/LexSpice.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-$(DIR_O)/LexSQL.obj: \
- ../../lexers/LexSQL.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h \
- ../../lexlib/OptionSet.h \
- ../../lexlib/SparseState.h \
- ../../lexlib/DefaultLexer.h
-$(DIR_O)/LexStata.obj: \
- ../../lexers/LexStata.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-$(DIR_O)/LexSTTXT.obj: \
- ../../lexers/LexSTTXT.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-$(DIR_O)/LexTACL.obj: \
- ../../lexers/LexTACL.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-$(DIR_O)/LexTADS3.obj: \
- ../../lexers/LexTADS3.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-$(DIR_O)/LexTAL.obj: \
- ../../lexers/LexTAL.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-$(DIR_O)/LexTCL.obj: \
- ../../lexers/LexTCL.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-$(DIR_O)/LexTCMD.obj: \
- ../../lexers/LexTCMD.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-$(DIR_O)/LexTeX.obj: \
- ../../lexers/LexTeX.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-$(DIR_O)/LexTxt2tags.obj: \
- ../../lexers/LexTxt2tags.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-$(DIR_O)/LexVB.obj: \
- ../../lexers/LexVB.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-$(DIR_O)/LexVerilog.obj: \
- ../../lexers/LexVerilog.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h \
- ../../lexlib/OptionSet.h \
- ../../lexlib/SubStyles.h \
- ../../lexlib/DefaultLexer.h
-$(DIR_O)/LexVHDL.obj: \
- ../../lexers/LexVHDL.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h
-$(DIR_O)/LexVisualProlog.obj: \
- ../../lexers/LexVisualProlog.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/CharacterCategory.h \
- ../../lexlib/LexerModule.h \
- ../../lexlib/OptionSet.h \
- ../../lexlib/DefaultLexer.h
-$(DIR_O)/LexX12.obj: \
- ../../lexers/LexX12.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/LexerModule.h \
- ../../lexlib/DefaultLexer.h
-$(DIR_O)/LexYAML.obj: \
- ../../lexers/LexYAML.cxx \
- ../../include/ILexer.h \
- ../../include/Sci_Position.h \
- ../../include/Scintilla.h \
- ../../include/SciLexer.h \
- ../../lexlib/WordList.h \
- ../../lexlib/LexAccessor.h \
- ../../lexlib/Accessor.h \
- ../../lexlib/StyleContext.h \
- ../../lexlib/CharacterSet.h \
- ../../lexlib/LexerModule.h