aboutsummaryrefslogtreecommitdiffhomepage
path: root/gtk
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2022-01-12 13:16:57 +1100
committerNeil <nyamatongwe@gmail.com>2022-01-12 13:16:57 +1100
commit16357f96e8c573cf727f6a0e261799a1f0e03dde (patch)
tree2aafc2338ef9548a879d11741d152f5ce40585fd /gtk
parent76548027b3d8247f20931a0236cc452540f155a1 (diff)
downloadscintilla-mirror-16357f96e8c573cf727f6a0e261799a1f0e03dde.tar.gz
Remove checking for lexers as Scintilla can no longer be built with lexers.
Diffstat (limited to 'gtk')
-rw-r--r--gtk/makefile4
1 files changed, 1 insertions, 3 deletions
diff --git a/gtk/makefile b/gtk/makefile
index a730fe3fa..fcffdcbcd 100644
--- a/gtk/makefile
+++ b/gtk/makefile
@@ -119,8 +119,6 @@ analyze:
depend deps.mak:
$(PYTHON) DepGen.py
-LEX_OBJS:=$(addsuffix .o,$(basename $(sort $(notdir $(wildcard $(basedir)/lexers/Lex*.cxx)))))
-
# Required for base Scintilla
SRC_OBJS = \
AutoComplete.o \
@@ -160,7 +158,7 @@ GTK_OBJS = \
ScintillaGTK.o \
ScintillaGTKAccessible.o
-$(COMPLIB): $(SRC_OBJS) $(GTK_OBJS) $(MARSHALLER) $(LEX_OBJS)
+$(COMPLIB): $(SRC_OBJS) $(GTK_OBJS) $(MARSHALLER)
$(AR) $(ARFLAGS) $@ $^
$(RANLIB) $@