diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-09-27 12:41:56 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-09-27 12:41:56 +0200 |
commit | 46a426c9acfdd3d6c0fa134a17681634b9325bee (patch) | |
tree | 04524eaade951e753e388a890c287a4373683fb0 /src/Makefile | |
parent | d2842ea60bd608b7f9ec93c77d3f36a8e3bf5fe9 (diff) | |
download | vim-git-46a426c9acfdd3d6c0fa134a17681634b9325bee.tar.gz |
patch 8.1.2081: the spell.c file is too bigv8.1.2081
Problem: The spell.c file is too big.
Solution: Move the code for spell suggestions to a separate file. (Yegappan
Lakshmanan, closes #4988)
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/Makefile b/src/Makefile index 9462404ad..0f949a891 100644 --- a/src/Makefile +++ b/src/Makefile @@ -1654,6 +1654,7 @@ BASIC_SRC = \ sound.c \ spell.c \ spellfile.c \ + spellsuggest.c \ syntax.c \ tag.c \ term.c \ @@ -1789,6 +1790,7 @@ OBJ_COMMON = \ objects/sound.o \ objects/spell.o \ objects/spellfile.o \ + objects/spellsuggest.o \ objects/syntax.o \ objects/tag.o \ objects/term.o \ @@ -1949,6 +1951,7 @@ PRO_AUTO = \ sound.pro \ spell.pro \ spellfile.pro \ + spellsuggest.pro \ syntax.pro \ tag.pro \ term.pro \ @@ -3386,6 +3389,9 @@ objects/spell.o: spell.c objects/spellfile.o: spellfile.c $(CCC) -o $@ spellfile.c +objects/spellsuggest.o: spellsuggest.c + $(CCC) -o $@ spellsuggest.c + objects/syntax.o: syntax.c $(CCC) -o $@ syntax.c @@ -3881,6 +3887,10 @@ objects/spellfile.o: spellfile.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/spellsuggest.o: spellsuggest.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/syntax.o: syntax.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 \ |