summaryrefslogtreecommitdiffstats
path: root/src/Makefile
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-07-14 21:29:22 +0200
committerBram Moolenaar <Bram@vim.org>2019-07-14 21:29:22 +0200
commitf9cc9f209ede9f15959e4c2351e970477c139614 (patch)
tree58daba9cac6039bc46d575e93d291676a8b0668f /src/Makefile
parentb8be54dcc517c9d57b62409945b7d4b90b6c3071 (diff)
patch 8.1.1693: syntax coloring and highlighting is in one big filev8.1.1693
Problem: Syntax coloring and highlighting is in one big file. Solution: Move the highlighting to a separate file. (Yegappan Lakshmanan, closes #4674)
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/Makefile b/src/Makefile
index 10d2b39385..f4f8cc31da 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -1604,6 +1604,7 @@ BASIC_SRC = \
getchar.c \
hardcopy.c \
hashtab.c \
+ highlight.c \
if_cscope.c \
if_xcmdsrv.c \
indent.c \
@@ -1725,6 +1726,7 @@ OBJ_COMMON = \
objects/getchar.o \
objects/hardcopy.o \
objects/hashtab.o \
+ objects/highlight.o \
$(HANGULIN_OBJ) \
objects/if_cscope.o \
objects/if_xcmdsrv.o \
@@ -1860,6 +1862,7 @@ PRO_AUTO = \
hardcopy.pro \
hashtab.pro \
hangulin.pro \
+ highlight.pro \
if_cscope.pro \
if_lua.pro \
if_mzsch.pro \
@@ -3103,6 +3106,9 @@ objects/gui_mac.o: gui_mac.c
objects/hangulin.o: hangulin.c
$(CCC) -o $@ hangulin.c
+objects/highlight.o: highlight.c
+ $(CCC) -o $@ highlight.c
+
objects/if_cscope.o: if_cscope.c
$(CCC) -o $@ if_cscope.c
@@ -3554,6 +3560,10 @@ objects/hashtab.o: hashtab.c vim.h protodef.h auto/config.h feature.h os_unix.h
auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
proto.h globals.h
+objects/highlight.o: highlight.c vim.h protodef.h auto/config.h feature.h os_unix.h \
+ auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
+ proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
+ proto.h globals.h
objects/if_cscope.o: if_cscope.c vim.h protodef.h auto/config.h feature.h \
os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \