summaryrefslogtreecommitdiffstats
path: root/src/Make_vms.mms
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-04-05 20:21:03 +0200
committerBram Moolenaar <Bram@vim.org>2020-04-05 20:21:03 +0200
commitf87a0400fd81862c33d6ad2291a56e178db7dddd (patch)
tree2a1ef72193db1883d8aa81c158d99148b5412fb6 /src/Make_vms.mms
parentb8ed3aa9e708ec0af4e9ee8921ad198f0e949c0d (diff)
patch 8.2.0516: client-server code is spread outv8.2.0516
Problem: Client-server code is spread out. Solution: Move client-server code to a new file. (Yegappan Lakshmanan, closes #5885)
Diffstat (limited to 'src/Make_vms.mms')
-rw-r--r--src/Make_vms.mms6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/Make_vms.mms b/src/Make_vms.mms
index ea6a8d76f5..fdd7ba7c1e 100644
--- a/src/Make_vms.mms
+++ b/src/Make_vms.mms
@@ -306,6 +306,7 @@ SRC = \
change.c \
charset.c \
cindent.c \
+ clientserver.c \
clipboard.c \
cmdexpand.c \
cmdhist.c \
@@ -413,6 +414,7 @@ OBJ = \
change.obj \
charset.obj \
cindent.obj \
+ clientserver.obj \
clipboard.obj \
cmdexpand.obj \
cmdhist.obj \
@@ -702,6 +704,10 @@ cindent.obj : cindent.c vim.h [.auto]config.h feature.h os_unix.h \
ascii.h keymap.h term.h macros.h structs.h regexp.h \
gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
globals.h
+clientserver.obj : clientserver.c vim.h [.auto]config.h feature.h os_unix.h \
+ ascii.h keymap.h term.h macros.h structs.h regexp.h \
+ gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
+ globals.h
clipboard.obj : clipboard.c vim.h [.auto]config.h feature.h os_unix.h \
ascii.h keymap.h term.h macros.h structs.h regexp.h \
gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \