comparison src/Makefile @ 19920:5e41b2e63c73 v8.2.0516

patch 8.2.0516: client-server code is spread out Commit: https://github.com/vim/vim/commit/f87a0400fd81862c33d6ad2291a56e178db7dddd Author: Bram Moolenaar <Bram@vim.org> Date: Sun Apr 5 20:21:03 2020 +0200 patch 8.2.0516: client-server code is spread out Problem: Client-server code is spread out. Solution: Move client-server code to a new file. (Yegappan Lakshmanan, closes #5885)
author Bram Moolenaar <Bram@vim.org>
date Sun, 05 Apr 2020 20:30:35 +0200
parents 1136ec381dd2
children b471038ec3ea
comparison
equal deleted inserted replaced
19919:b4b102849236 19920:5e41b2e63c73
1600 blowfish.c \ 1600 blowfish.c \
1601 buffer.c \ 1601 buffer.c \
1602 change.c \ 1602 change.c \
1603 charset.c \ 1603 charset.c \
1604 cindent.c \ 1604 cindent.c \
1605 clientserver.c \
1605 clipboard.c \ 1606 clipboard.c \
1606 cmdexpand.c \ 1607 cmdexpand.c \
1607 cmdhist.c \ 1608 cmdhist.c \
1608 crypt.c \ 1609 crypt.c \
1609 crypt_zip.c \ 1610 crypt_zip.c \
1745 objects/buffer.o \ 1746 objects/buffer.o \
1746 objects/change.o \ 1747 objects/change.o \
1747 objects/blob.o \ 1748 objects/blob.o \
1748 objects/blowfish.o \ 1749 objects/blowfish.o \
1749 objects/cindent.o \ 1750 objects/cindent.o \
1751 objects/clientserver.o \
1750 objects/clipboard.o \ 1752 objects/clipboard.o \
1751 objects/cmdexpand.o \ 1753 objects/cmdexpand.o \
1752 objects/cmdhist.o \ 1754 objects/cmdhist.o \
1753 objects/crypt.o \ 1755 objects/crypt.o \
1754 objects/crypt_zip.o \ 1756 objects/crypt_zip.o \
1906 bufwrite.pro \ 1908 bufwrite.pro \
1907 change.pro \ 1909 change.pro \
1908 channel.pro \ 1910 channel.pro \
1909 charset.pro \ 1911 charset.pro \
1910 cindent.pro \ 1912 cindent.pro \
1913 clientserver.pro \
1911 clipboard.pro \ 1914 clipboard.pro \
1912 cmdexpand.pro \ 1915 cmdexpand.pro \
1913 cmdhist.pro \ 1916 cmdhist.pro \
1914 crypt.pro \ 1917 crypt.pro \
1915 crypt_zip.pro \ 1918 crypt_zip.pro \
3121 $(CCC) -o $@ charset.c 3124 $(CCC) -o $@ charset.c
3122 3125
3123 objects/cindent.o: cindent.c 3126 objects/cindent.o: cindent.c
3124 $(CCC) -o $@ cindent.c 3127 $(CCC) -o $@ cindent.c
3125 3128
3129 objects/clientserver.o: clientserver.c
3130 $(CCC) -o $@ clientserver.c
3131
3126 objects/clipboard.o: clipboard.c 3132 objects/clipboard.o: clipboard.c
3127 $(CCC) -o $@ clipboard.c 3133 $(CCC) -o $@ clipboard.c
3128 3134
3129 objects/cmdexpand.o: cmdexpand.c 3135 objects/cmdexpand.o: cmdexpand.c
3130 $(CCC) -o $@ cmdexpand.c 3136 $(CCC) -o $@ cmdexpand.c
3738 objects/charset.o: charset.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3744 objects/charset.o: charset.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3739 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3745 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3740 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3746 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3741 proto.h globals.h 3747 proto.h globals.h
3742 objects/cindent.o: cindent.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3748 objects/cindent.o: cindent.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3749 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3750 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3751 proto.h globals.h
3752 objects/clientserver.o: clientserver.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3743 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3753 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3744 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3754 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3745 proto.h globals.h 3755 proto.h globals.h
3746 objects/clipboard.o: clipboard.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3756 objects/clipboard.o: clipboard.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3747 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3757 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \