comparison src/Makefile @ 18124:2a806e3c39f6 v8.1.2057

patch 8.1.2057: the screen.c file is much too big Commit: https://github.com/vim/vim/commit/7528d1f6b5422750eb778dfb550cfd0b0e540964 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Sep 19 23:06:20 2019 +0200 patch 8.1.2057: the screen.c file is much too big Problem: The screen.c file is much too big. Solution: Split it in three parts. (Yegappan Lakshmanan, closes https://github.com/vim/vim/issues/4943)
author Bram Moolenaar <Bram@vim.org>
date Thu, 19 Sep 2019 23:15:05 +0200
parents df5778d73320
children 1868ec23360e
comparison
equal deleted inserted replaced
18123:ceb4be0b23c7 18124:2a806e3c39f6
1591 crypt_zip.c \ 1591 crypt_zip.c \
1592 debugger.c \ 1592 debugger.c \
1593 dict.c \ 1593 dict.c \
1594 diff.c \ 1594 diff.c \
1595 digraph.c \ 1595 digraph.c \
1596 drawline.c \
1597 drawscreen.c \
1596 edit.c \ 1598 edit.c \
1597 eval.c \ 1599 eval.c \
1598 evalbuffer.c \ 1600 evalbuffer.c \
1599 evalfunc.c \ 1601 evalfunc.c \
1600 evalvars.c \ 1602 evalvars.c \
1725 objects/crypt_zip.o \ 1727 objects/crypt_zip.o \
1726 objects/debugger.o \ 1728 objects/debugger.o \
1727 objects/dict.o \ 1729 objects/dict.o \
1728 objects/diff.o \ 1730 objects/diff.o \
1729 objects/digraph.o \ 1731 objects/digraph.o \
1732 objects/drawline.o \
1733 objects/drawscreen.o \
1730 objects/edit.o \ 1734 objects/edit.o \
1731 objects/eval.o \ 1735 objects/eval.o \
1732 objects/evalbuffer.o \ 1736 objects/evalbuffer.o \
1733 objects/evalfunc.o \ 1737 objects/evalfunc.o \
1734 objects/evalvars.o \ 1738 objects/evalvars.o \
1872 crypt_zip.pro \ 1876 crypt_zip.pro \
1873 debugger.pro \ 1877 debugger.pro \
1874 dict.pro \ 1878 dict.pro \
1875 diff.pro \ 1879 diff.pro \
1876 digraph.pro \ 1880 digraph.pro \
1881 drawline.pro \
1882 drawscreen.pro \
1877 edit.pro \ 1883 edit.pro \
1878 eval.pro \ 1884 eval.pro \
1879 evalbuffer.pro \ 1885 evalbuffer.pro \
1880 evalfunc.pro \ 1886 evalfunc.pro \
1881 evalvars.pro \ 1887 evalvars.pro \
3081 $(CCC) -o $@ diff.c 3087 $(CCC) -o $@ diff.c
3082 3088
3083 objects/digraph.o: digraph.c 3089 objects/digraph.o: digraph.c
3084 $(CCC) -o $@ digraph.c 3090 $(CCC) -o $@ digraph.c
3085 3091
3092 objects/drawline.o: drawline.c
3093 $(CCC) -o $@ drawline.c
3094
3095 objects/drawscreen.o: drawscreen.c
3096 $(CCC) -o $@ drawscreen.c
3097
3086 objects/edit.o: edit.c 3098 objects/edit.o: edit.c
3087 $(CCC) -o $@ edit.c 3099 $(CCC) -o $@ edit.c
3088 3100
3089 objects/eval.o: eval.c 3101 objects/eval.o: eval.c
3090 $(CCC) -o $@ eval.c 3102 $(CCC) -o $@ eval.c
3608 objects/diff.o: diff.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3620 objects/diff.o: diff.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3609 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3621 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3610 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3622 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3611 proto.h globals.h xdiff/xdiff.h vim.h 3623 proto.h globals.h xdiff/xdiff.h vim.h
3612 objects/digraph.o: digraph.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3624 objects/digraph.o: digraph.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3625 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3626 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3627 proto.h globals.h
3628 objects/drawline.o: drawline.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3629 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3630 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3631 proto.h globals.h
3632 objects/drawscreen.o: drawscreen.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3613 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3633 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3614 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3634 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3615 proto.h globals.h 3635 proto.h globals.h
3616 objects/edit.o: edit.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3636 objects/edit.o: edit.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3617 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3637 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \