comparison src/Makefile @ 17377:cb008de2a6ec v8.1.1687

patch 8.1.1687: the evalfunc.c file is too big commit https://github.com/vim/vim/commit/ecaa70ea29c269dd0dabd3cd5acdfa0ce42ccd54 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jul 14 14:55:39 2019 +0200 patch 8.1.1687: the evalfunc.c file is too big Problem: The evalfunc.c file is too big. Solution: Move testing support to a separate file.
author Bram Moolenaar <Bram@vim.org>
date Sun, 14 Jul 2019 15:00:05 +0200
parents ba06a1c42274
children 635d7f5010b8
comparison
equal deleted inserted replaced
17376:da3299b8b5c0 17377:cb008de2a6ec
1640 spellfile.c \ 1640 spellfile.c \
1641 syntax.c \ 1641 syntax.c \
1642 tag.c \ 1642 tag.c \
1643 term.c \ 1643 term.c \
1644 terminal.c \ 1644 terminal.c \
1645 testing.c \
1645 textprop.c \ 1646 textprop.c \
1646 ui.c \ 1647 ui.c \
1647 undo.c \ 1648 undo.c \
1648 usercmd.c \ 1649 usercmd.c \
1649 userfunc.c \ 1650 userfunc.c \
1757 objects/spellfile.o \ 1758 objects/spellfile.o \
1758 objects/syntax.o \ 1759 objects/syntax.o \
1759 objects/tag.o \ 1760 objects/tag.o \
1760 objects/term.o \ 1761 objects/term.o \
1761 objects/terminal.o \ 1762 objects/terminal.o \
1763 objects/testing.o \
1762 objects/textprop.o \ 1764 objects/textprop.o \
1763 objects/ui.o \ 1765 objects/ui.o \
1764 objects/undo.o \ 1766 objects/undo.o \
1765 objects/usercmd.o \ 1767 objects/usercmd.o \
1766 objects/userfunc.o \ 1768 objects/userfunc.o \
1900 syntax.pro \ 1902 syntax.pro \
1901 tag.pro \ 1903 tag.pro \
1902 term.pro \ 1904 term.pro \
1903 terminal.pro \ 1905 terminal.pro \
1904 termlib.pro \ 1906 termlib.pro \
1907 testing.pro \
1905 textprop.pro \ 1908 textprop.pro \
1906 ui.pro \ 1909 ui.pro \
1907 undo.pro \ 1910 undo.pro \
1908 usercmd.pro \ 1911 usercmd.pro \
1909 userfunc.pro \ 1912 userfunc.pro \
3269 $(CCC) -o $@ term.c 3272 $(CCC) -o $@ term.c
3270 3273
3271 objects/terminal.o: terminal.c $(TERM_DEPS) 3274 objects/terminal.o: terminal.c $(TERM_DEPS)
3272 $(CCC) -o $@ terminal.c 3275 $(CCC) -o $@ terminal.c
3273 3276
3277 objects/testing.o: testing.c
3278 $(CCC) -o $@ testing.c
3279
3274 objects/textprop.o: textprop.c 3280 objects/textprop.o: textprop.c
3275 $(CCC) -o $@ textprop.c 3281 $(CCC) -o $@ textprop.c
3276 3282
3277 objects/ui.o: ui.c 3283 objects/ui.o: ui.c
3278 $(CCC) -o $@ ui.c 3284 $(CCC) -o $@ ui.c
3700 objects/terminal.o: terminal.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3706 objects/terminal.o: terminal.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3701 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3707 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3702 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3708 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3703 proto.h globals.h libvterm/include/vterm.h \ 3709 proto.h globals.h libvterm/include/vterm.h \
3704 libvterm/include/vterm_keycodes.h 3710 libvterm/include/vterm_keycodes.h
3711 objects/testing.o: testing.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3712 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3713 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3714 proto.h globals.h
3705 objects/textprop.o: textprop.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3715 objects/textprop.o: textprop.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3706 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3716 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3707 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3717 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3708 proto.h globals.h 3718 proto.h globals.h
3709 objects/ui.o: ui.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3719 objects/ui.o: ui.c vim.h protodef.h auto/config.h feature.h os_unix.h \