comparison src/Makefile @ 15330:a6330a49e036 v8.1.0673

patch 8.1.0673: functionality for signs is spread out over several files commit https://github.com/vim/vim/commit/bbea47075cc4e7826e9f8c203e4272ba023ed7b0 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Jan 1 13:20:31 2019 +0100 patch 8.1.0673: functionality for signs is spread out over several files Problem: Functionality for signs is spread out over several files. Solution: Move most of the sign functionality into sign.c. (Yegappan Lakshmanan, closes #3751)
author Bram Moolenaar <Bram@vim.org>
date Tue, 01 Jan 2019 13:30:09 +0100
parents 34f71bcceecd
children d94901eeb762
comparison
equal deleted inserted replaced
15329:9a739a3d145e 15330:a6330a49e036
1624 quickfix.c \ 1624 quickfix.c \
1625 regexp.c \ 1625 regexp.c \
1626 screen.c \ 1626 screen.c \
1627 search.c \ 1627 search.c \
1628 sha256.c \ 1628 sha256.c \
1629 sign.c \
1629 spell.c \ 1630 spell.c \
1630 spellfile.c \ 1631 spellfile.c \
1631 syntax.c \ 1632 syntax.c \
1632 tag.c \ 1633 tag.c \
1633 term.c \ 1634 term.c \
1734 objects/quickfix.o \ 1735 objects/quickfix.o \
1735 objects/regexp.o \ 1736 objects/regexp.o \
1736 objects/screen.o \ 1737 objects/screen.o \
1737 objects/search.o \ 1738 objects/search.o \
1738 objects/sha256.o \ 1739 objects/sha256.o \
1740 objects/sign.o \
1739 objects/spell.o \ 1741 objects/spell.o \
1740 objects/spellfile.o \ 1742 objects/spellfile.o \
1741 objects/syntax.o \ 1743 objects/syntax.o \
1742 objects/tag.o \ 1744 objects/tag.o \
1743 objects/term.o \ 1745 objects/term.o \
1868 quickfix.pro \ 1870 quickfix.pro \
1869 regexp.pro \ 1871 regexp.pro \
1870 screen.pro \ 1872 screen.pro \
1871 search.pro \ 1873 search.pro \
1872 sha256.pro \ 1874 sha256.pro \
1875 sign.pro \
1873 spell.pro \ 1876 spell.pro \
1874 spellfile.pro \ 1877 spellfile.pro \
1875 syntax.pro \ 1878 syntax.pro \
1876 tag.pro \ 1879 tag.pro \
1877 term.pro \ 1880 term.pro \
3198 $(CCC) -o $@ search.c 3201 $(CCC) -o $@ search.c
3199 3202
3200 objects/sha256.o: sha256.c 3203 objects/sha256.o: sha256.c
3201 $(CCC) -o $@ sha256.c 3204 $(CCC) -o $@ sha256.c
3202 3205
3206 objects/sign.o: sign.c
3207 $(CCC) -o $@ sign.c
3208
3203 objects/spell.o: spell.c 3209 objects/spell.o: spell.c
3204 $(CCC) -o $@ spell.c 3210 $(CCC) -o $@ spell.c
3205 3211
3206 objects/spellfile.o: spellfile.c 3212 objects/spellfile.o: spellfile.c
3207 $(CCC) -o $@ spellfile.c 3213 $(CCC) -o $@ spellfile.c
3581 objects/search.o: search.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3587 objects/search.o: search.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3582 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3588 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3583 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3589 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3584 proto.h globals.h farsi.h arabic.h 3590 proto.h globals.h farsi.h arabic.h
3585 objects/sha256.o: sha256.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3591 objects/sha256.o: sha256.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3592 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3593 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3594 proto.h globals.h farsi.h arabic.h
3595 objects/sign.o: sign.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3586 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3596 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3587 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3597 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3588 proto.h globals.h farsi.h arabic.h 3598 proto.h globals.h farsi.h arabic.h
3589 objects/spell.o: spell.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3599 objects/spell.o: spell.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3590 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3600 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \