comparison src/Makefile @ 18164:f57481564f2c v8.1.2077

patch 8.1.2077: the ops.c file is too big Commit: https://github.com/vim/vim/commit/4aea03eb875613e3eae2125b84f02b7cd898b2f8 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Sep 25 22:37:17 2019 +0200 patch 8.1.2077: the ops.c file is too big Problem: The ops.c file is too big. Solution: Move code for dealing with registers to a new file. (Yegappan Lakshmanan, closes #4982)
author Bram Moolenaar <Bram@vim.org>
date Wed, 25 Sep 2019 22:45:03 +0200
parents 1868ec23360e
children 6e53d83e021d
comparison
equal deleted inserted replaced
18163:be0960bbf0c7 18164:f57481564f2c
1642 popupwin.c \ 1642 popupwin.c \
1643 profiler.c \ 1643 profiler.c \
1644 pty.c \ 1644 pty.c \
1645 quickfix.c \ 1645 quickfix.c \
1646 regexp.c \ 1646 regexp.c \
1647 register.c \
1647 scriptfile.c \ 1648 scriptfile.c \
1648 screen.c \ 1649 screen.c \
1649 search.c \ 1650 search.c \
1650 session.c \ 1651 session.c \
1651 sha256.c \ 1652 sha256.c \
1776 objects/popupwin.o \ 1777 objects/popupwin.o \
1777 objects/profiler.o \ 1778 objects/profiler.o \
1778 objects/pty.o \ 1779 objects/pty.o \
1779 objects/quickfix.o \ 1780 objects/quickfix.o \
1780 objects/regexp.o \ 1781 objects/regexp.o \
1782 objects/register.o \
1781 objects/scriptfile.o \ 1783 objects/scriptfile.o \
1782 objects/screen.o \ 1784 objects/screen.o \
1783 objects/search.o \ 1785 objects/search.o \
1784 objects/session.o \ 1786 objects/session.o \
1785 objects/sha256.o \ 1787 objects/sha256.o \
1935 popupwin.pro \ 1937 popupwin.pro \
1936 profiler.pro \ 1938 profiler.pro \
1937 pty.pro \ 1939 pty.pro \
1938 quickfix.pro \ 1940 quickfix.pro \
1939 regexp.pro \ 1941 regexp.pro \
1942 register.pro \
1940 scriptfile.pro \ 1943 scriptfile.pro \
1941 screen.pro \ 1944 screen.pro \
1942 search.pro \ 1945 search.pro \
1943 session.pro \ 1946 session.pro \
1944 sha256.pro \ 1947 sha256.pro \
3351 $(CCC) -o $@ quickfix.c 3354 $(CCC) -o $@ quickfix.c
3352 3355
3353 objects/regexp.o: regexp.c regexp_bt.c regexp_nfa.c 3356 objects/regexp.o: regexp.c regexp_bt.c regexp_nfa.c
3354 $(CCC) -o $@ regexp.c 3357 $(CCC) -o $@ regexp.c
3355 3358
3359 objects/register.o: register.c
3360 $(CCC) -o $@ register.c
3361
3356 objects/scriptfile.o: scriptfile.c 3362 objects/scriptfile.o: scriptfile.c
3357 $(CCC) -o $@ scriptfile.c 3363 $(CCC) -o $@ scriptfile.c
3358 3364
3359 objects/screen.o: screen.c 3365 objects/screen.o: screen.c
3360 $(CCC) -o $@ screen.c 3366 $(CCC) -o $@ screen.c
3833 proto.h globals.h 3839 proto.h globals.h
3834 objects/regexp.o: regexp.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3840 objects/regexp.o: regexp.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3835 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3841 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3836 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3842 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3837 proto.h globals.h regexp_bt.c regexp_nfa.c 3843 proto.h globals.h regexp_bt.c regexp_nfa.c
3844 objects/register.o: register.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3845 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3846 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3847 proto.h globals.h
3838 objects/scriptfile.o: scriptfile.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3848 objects/scriptfile.o: scriptfile.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3839 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3849 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3840 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3850 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3841 proto.h globals.h 3851 proto.h globals.h
3842 objects/screen.o: screen.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3852 objects/screen.o: screen.c vim.h protodef.h auto/config.h feature.h os_unix.h \