diff options
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 221b4f0de..704721b5f 100644 --- a/src/Makefile +++ b/src/Makefile @@ -1602,6 +1602,7 @@ BASIC_SRC = \ change.c \ charset.c \ cindent.c \ + clientserver.c \ clipboard.c \ cmdexpand.c \ cmdhist.c \ @@ -1747,6 +1748,7 @@ OBJ_COMMON = \ objects/blob.o \ objects/blowfish.o \ objects/cindent.o \ + objects/clientserver.o \ objects/clipboard.o \ objects/cmdexpand.o \ objects/cmdhist.o \ @@ -1908,6 +1910,7 @@ PRO_AUTO = \ channel.pro \ charset.pro \ cindent.pro \ + clientserver.pro \ clipboard.pro \ cmdexpand.pro \ cmdhist.pro \ @@ -3123,6 +3126,9 @@ objects/charset.o: charset.c objects/cindent.o: cindent.c $(CCC) -o $@ cindent.c +objects/clientserver.o: clientserver.c + $(CCC) -o $@ clientserver.c + objects/clipboard.o: clipboard.c $(CCC) -o $@ clipboard.c @@ -3743,6 +3749,10 @@ objects/cindent.o: cindent.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/clientserver.o: clientserver.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/clipboard.o: clipboard.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 \ |