comparison src/Makefile @ 17389:635d7f5010b8 v8.1.1693

patch 8.1.1693: syntax coloring and highlighting is in one big file commit https://github.com/vim/vim/commit/f9cc9f209ede9f15959e4c2351e970477c139614 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jul 14 21:29:22 2019 +0200 patch 8.1.1693: syntax coloring and highlighting is in one big file Problem: Syntax coloring and highlighting is in one big file. Solution: Move the highlighting to a separate file. (Yegappan Lakshmanan, closes #4674)
author Bram Moolenaar <Bram@vim.org>
date Sun, 14 Jul 2019 21:30:04 +0200
parents cb008de2a6ec
children cfdef48743ed
comparison
equal deleted inserted replaced
17388:13104cd7dc9f 17389:635d7f5010b8
1602 findfile.c \ 1602 findfile.c \
1603 fold.c \ 1603 fold.c \
1604 getchar.c \ 1604 getchar.c \
1605 hardcopy.c \ 1605 hardcopy.c \
1606 hashtab.c \ 1606 hashtab.c \
1607 highlight.c \
1607 if_cscope.c \ 1608 if_cscope.c \
1608 if_xcmdsrv.c \ 1609 if_xcmdsrv.c \
1609 indent.c \ 1610 indent.c \
1610 insexpand.c \ 1611 insexpand.c \
1611 json.c \ 1612 json.c \
1723 objects/findfile.o \ 1724 objects/findfile.o \
1724 objects/fold.o \ 1725 objects/fold.o \
1725 objects/getchar.o \ 1726 objects/getchar.o \
1726 objects/hardcopy.o \ 1727 objects/hardcopy.o \
1727 objects/hashtab.o \ 1728 objects/hashtab.o \
1729 objects/highlight.o \
1728 $(HANGULIN_OBJ) \ 1730 $(HANGULIN_OBJ) \
1729 objects/if_cscope.o \ 1731 objects/if_cscope.o \
1730 objects/if_xcmdsrv.o \ 1732 objects/if_xcmdsrv.o \
1731 objects/indent.o \ 1733 objects/indent.o \
1732 objects/insexpand.o \ 1734 objects/insexpand.o \
1858 fold.pro \ 1860 fold.pro \
1859 getchar.pro \ 1861 getchar.pro \
1860 hardcopy.pro \ 1862 hardcopy.pro \
1861 hashtab.pro \ 1863 hashtab.pro \
1862 hangulin.pro \ 1864 hangulin.pro \
1865 highlight.pro \
1863 if_cscope.pro \ 1866 if_cscope.pro \
1864 if_lua.pro \ 1867 if_lua.pro \
1865 if_mzsch.pro \ 1868 if_mzsch.pro \
1866 if_python.pro \ 1869 if_python.pro \
1867 if_python3.pro \ 1870 if_python3.pro \
3101 $(CCC) -o $@ gui_mac.c 3104 $(CCC) -o $@ gui_mac.c
3102 3105
3103 objects/hangulin.o: hangulin.c 3106 objects/hangulin.o: hangulin.c
3104 $(CCC) -o $@ hangulin.c 3107 $(CCC) -o $@ hangulin.c
3105 3108
3109 objects/highlight.o: highlight.c
3110 $(CCC) -o $@ highlight.c
3111
3106 objects/if_cscope.o: if_cscope.c 3112 objects/if_cscope.o: if_cscope.c
3107 $(CCC) -o $@ if_cscope.c 3113 $(CCC) -o $@ if_cscope.c
3108 3114
3109 objects/if_xcmdsrv.o: if_xcmdsrv.c 3115 objects/if_xcmdsrv.o: if_xcmdsrv.c
3110 $(CCC) -o $@ if_xcmdsrv.c 3116 $(CCC) -o $@ if_xcmdsrv.c
3549 objects/hardcopy.o: hardcopy.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3555 objects/hardcopy.o: hardcopy.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3550 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3556 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3551 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3557 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3552 proto.h globals.h version.h 3558 proto.h globals.h version.h
3553 objects/hashtab.o: hashtab.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3559 objects/hashtab.o: hashtab.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3560 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3561 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3562 proto.h globals.h
3563 objects/highlight.o: highlight.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3554 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3564 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3555 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3565 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3556 proto.h globals.h 3566 proto.h globals.h
3557 objects/if_cscope.o: if_cscope.c vim.h protodef.h auto/config.h feature.h \ 3567 objects/if_cscope.o: if_cscope.c vim.h protodef.h auto/config.h feature.h \
3558 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3568 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \