comparison src/Makefile @ 21054:b1fac55cf8a3 v8.2.1078

patch 8.2.1078: highlight and match functionality together in one file Commit: https://github.com/vim/vim/commit/06cf97e714fd8bf9b35ff5f8a6f2302c79acdd03 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jun 28 13:17:26 2020 +0200 patch 8.2.1078: highlight and match functionality together in one file Problem: Highlight and match functionality together in one file. Solution: Move match functionality to a separate file. (Yegappan Lakshmanan, closes #6352)
author Bram Moolenaar <Bram@vim.org>
date Sun, 28 Jun 2020 13:30:04 +0200
parents 5ddd4df27068
children c2cbe6cc7620
comparison
equal deleted inserted replaced
21053:c1f0a0815090 21054:b1fac55cf8a3
1647 json.c \ 1647 json.c \
1648 list.c \ 1648 list.c \
1649 main.c \ 1649 main.c \
1650 map.c \ 1650 map.c \
1651 mark.c \ 1651 mark.c \
1652 match.c \
1652 mbyte.c \ 1653 mbyte.c \
1653 memfile.c \ 1654 memfile.c \
1654 memline.c \ 1655 memline.c \
1655 menu.c \ 1656 menu.c \
1656 message.c \ 1657 message.c \
1795 objects/indent.o \ 1796 objects/indent.o \
1796 objects/insexpand.o \ 1797 objects/insexpand.o \
1797 objects/list.o \ 1798 objects/list.o \
1798 objects/map.o \ 1799 objects/map.o \
1799 objects/mark.o \ 1800 objects/mark.o \
1801 objects/match.o \
1800 objects/mbyte.o \ 1802 objects/mbyte.o \
1801 objects/memline.o \ 1803 objects/memline.o \
1802 objects/menu.o \ 1804 objects/menu.o \
1803 objects/misc1.o \ 1805 objects/misc1.o \
1804 objects/misc2.o \ 1806 objects/misc2.o \
1969 json.pro \ 1971 json.pro \
1970 list.pro \ 1972 list.pro \
1971 main.pro \ 1973 main.pro \
1972 map.pro \ 1974 map.pro \
1973 mark.pro \ 1975 mark.pro \
1976 match.pro \
1974 mbyte.pro \ 1977 mbyte.pro \
1975 memfile.pro \ 1978 memfile.pro \
1976 memline.pro \ 1979 memline.pro \
1977 menu.pro \ 1980 menu.pro \
1978 message.pro \ 1981 message.pro \
3377 $(CCC) -o $@ map.c 3380 $(CCC) -o $@ map.c
3378 3381
3379 objects/mark.o: mark.c 3382 objects/mark.o: mark.c
3380 $(CCC) -o $@ mark.c 3383 $(CCC) -o $@ mark.c
3381 3384
3385 objects/match.o: match.c
3386 $(CCC) -o $@ match.c
3387
3382 objects/memfile.o: memfile.c 3388 objects/memfile.o: memfile.c
3383 $(CCC) -o $@ memfile.c 3389 $(CCC) -o $@ memfile.c
3384 3390
3385 objects/memfile_test.o: memfile_test.c 3391 objects/memfile_test.o: memfile_test.c
3386 $(CCC) -o $@ memfile_test.c 3392 $(CCC) -o $@ memfile_test.c
3961 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3967 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3962 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3968 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3963 proto.h globals.h 3969 proto.h globals.h
3964 objects/mark.o: mark.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3970 objects/mark.o: mark.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3965 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3971 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3972 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3973 proto.h globals.h
3974 objects/match.o: match.c vim.h protodef.h auto/config.h feature.h \
3975 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3966 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3976 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3967 proto.h globals.h 3977 proto.h globals.h
3968 objects/mbyte.o: mbyte.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3978 objects/mbyte.o: mbyte.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3969 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3979 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3970 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3980 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \