diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-08-18 21:44:12 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-08-18 21:44:12 +0200 |
commit | 66b51420e0c8d49bcf6786b792c938d6099e3393 (patch) | |
tree | 04d7f116a3ae2360ba8b68c2f4ce9544afb1e7f4 /src/Makefile | |
parent | db1085a5630ffdaa2e9f342c06cc739ebdf1a99a (diff) | |
download | vim-git-66b51420e0c8d49bcf6786b792c938d6099e3393.tar.gz |
patch 8.1.1886: command line expansion code is spread outv8.1.1886
Problem: Command line expansion code is spread out.
Solution: Move the code to cmdexpand.c. (Yegappan Lakshmanan, closes #4831)
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 5697c28bd..9bdba1f0b 100644 --- a/src/Makefile +++ b/src/Makefile @@ -1585,6 +1585,7 @@ BASIC_SRC = \ buffer.c \ change.c \ charset.c \ + cmdexpand.c \ cmdhist.c \ crypt.c \ crypt_zip.c \ @@ -1712,6 +1713,7 @@ OBJ_COMMON = \ objects/change.o \ objects/blob.o \ objects/blowfish.o \ + objects/cmdexpand.o \ objects/cmdhist.o \ objects/crypt.o \ objects/crypt_zip.o \ @@ -1852,6 +1854,7 @@ PRO_AUTO = \ buffer.pro \ change.pro \ charset.pro \ + cmdexpand.pro \ cmdhist.pro \ crypt.pro \ crypt_zip.pro \ @@ -3013,6 +3016,9 @@ objects/change.o: change.c objects/charset.o: charset.c $(CCC) -o $@ charset.c +objects/cmdexpand.o: cmdexpand.c + $(CCC) -o $@ cmdexpand.c + objects/cmdhist.o: cmdhist.c $(CCC) -o $@ cmdhist.c @@ -3514,6 +3520,10 @@ objects/charset.o: charset.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/cmdexpand.o: cmdexpand.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/cmdhist.o: cmdhist.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 \ |