comparison src/Makefile @ 19774:00a1b89256ea v8.2.0443

patch 8.2.0443: clipboard code is spread out Commit: https://github.com/vim/vim/commit/45fffdf10b7cb6e59794e76e9b8a2930fcb4b192 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Mar 24 21:42:01 2020 +0100 patch 8.2.0443: clipboard code is spread out Problem: Clipboard code is spread out. Solution: Move clipboard code to its own file. (Yegappan Lakshmanan, closes #5827)
author Bram Moolenaar <Bram@vim.org>
date Tue, 24 Mar 2020 21:45:04 +0100
parents 22f0dda71638
children 1136ec381dd2
comparison
equal deleted inserted replaced
19773:c8242fe426a7 19774:00a1b89256ea
1597 blowfish.c \ 1597 blowfish.c \
1598 buffer.c \ 1598 buffer.c \
1599 change.c \ 1599 change.c \
1600 charset.c \ 1600 charset.c \
1601 cindent.c \ 1601 cindent.c \
1602 clipboard.c \
1602 cmdexpand.c \ 1603 cmdexpand.c \
1603 cmdhist.c \ 1604 cmdhist.c \
1604 crypt.c \ 1605 crypt.c \
1605 crypt_zip.c \ 1606 crypt_zip.c \
1606 debugger.c \ 1607 debugger.c \
1741 objects/buffer.o \ 1742 objects/buffer.o \
1742 objects/change.o \ 1743 objects/change.o \
1743 objects/blob.o \ 1744 objects/blob.o \
1744 objects/blowfish.o \ 1745 objects/blowfish.o \
1745 objects/cindent.o \ 1746 objects/cindent.o \
1747 objects/clipboard.o \
1746 objects/cmdexpand.o \ 1748 objects/cmdexpand.o \
1747 objects/cmdhist.o \ 1749 objects/cmdhist.o \
1748 objects/crypt.o \ 1750 objects/crypt.o \
1749 objects/crypt_zip.o \ 1751 objects/crypt_zip.o \
1750 objects/debugger.o \ 1752 objects/debugger.o \
1901 bufwrite.pro \ 1903 bufwrite.pro \
1902 change.pro \ 1904 change.pro \
1903 channel.pro \ 1905 channel.pro \
1904 charset.pro \ 1906 charset.pro \
1905 cindent.pro \ 1907 cindent.pro \
1908 clipboard.pro \
1906 cmdexpand.pro \ 1909 cmdexpand.pro \
1907 cmdhist.pro \ 1910 cmdhist.pro \
1908 crypt.pro \ 1911 crypt.pro \
1909 crypt_zip.pro \ 1912 crypt_zip.pro \
1910 debugger.pro \ 1913 debugger.pro \
3115 $(CCC) -o $@ charset.c 3118 $(CCC) -o $@ charset.c
3116 3119
3117 objects/cindent.o: cindent.c 3120 objects/cindent.o: cindent.c
3118 $(CCC) -o $@ cindent.c 3121 $(CCC) -o $@ cindent.c
3119 3122
3123 objects/clipboard.o: clipboard.c
3124 $(CCC) -o $@ clipboard.c
3125
3120 objects/cmdexpand.o: cmdexpand.c 3126 objects/cmdexpand.o: cmdexpand.c
3121 $(CCC) -o $@ cmdexpand.c 3127 $(CCC) -o $@ cmdexpand.c
3122 3128
3123 objects/cmdhist.o: cmdhist.c 3129 objects/cmdhist.o: cmdhist.c
3124 $(CCC) -o $@ cmdhist.c 3130 $(CCC) -o $@ cmdhist.c
3729 objects/charset.o: charset.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3735 objects/charset.o: charset.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3730 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3736 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3731 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3737 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3732 proto.h globals.h 3738 proto.h globals.h
3733 objects/cindent.o: cindent.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3739 objects/cindent.o: cindent.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3740 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3741 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3742 proto.h globals.h
3743 objects/clipboard.o: clipboard.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3734 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3744 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3735 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3745 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3736 proto.h globals.h 3746 proto.h globals.h
3737 objects/cmdexpand.o: cmdexpand.c vim.h protodef.h auto/config.h feature.h \ 3747 objects/cmdexpand.o: cmdexpand.c vim.h protodef.h auto/config.h feature.h \
3738 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3748 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \