summaryrefslogtreecommitdiffstats
path: root/src/Makefile
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/Makefile
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/Makefile')
-rw-r--r--src/Makefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/Makefile b/src/Makefile
index 221b4f0de8..704721b5f2 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 \