summaryrefslogtreecommitdiffstats
path: root/src/Makefile
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-07-14 14:55:39 +0200
committerBram Moolenaar <Bram@vim.org>2019-07-14 14:55:39 +0200
commitecaa70ea29c269dd0dabd3cd5acdfa0ce42ccd54 (patch)
treec711959d1b0fd9cffa3d90a57e62efe1321b9e6d /src/Makefile
parent2898ebb44cee62a70a11b44a97bdad8cc00157b1 (diff)
patch 8.1.1687: the evalfunc.c file is too bigv8.1.1687
Problem: The evalfunc.c file is too big. Solution: Move testing support to a separate file.
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/Makefile b/src/Makefile
index 3f91e5bf1f..10d2b39385 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -1642,6 +1642,7 @@ BASIC_SRC = \
tag.c \
term.c \
terminal.c \
+ testing.c \
textprop.c \
ui.c \
undo.c \
@@ -1759,6 +1760,7 @@ OBJ_COMMON = \
objects/tag.o \
objects/term.o \
objects/terminal.o \
+ objects/testing.o \
objects/textprop.o \
objects/ui.o \
objects/undo.o \
@@ -1902,6 +1904,7 @@ PRO_AUTO = \
term.pro \
terminal.pro \
termlib.pro \
+ testing.pro \
textprop.pro \
ui.pro \
undo.pro \
@@ -3271,6 +3274,9 @@ objects/term.o: term.c
objects/terminal.o: terminal.c $(TERM_DEPS)
$(CCC) -o $@ terminal.c
+objects/testing.o: testing.c
+ $(CCC) -o $@ testing.c
+
objects/textprop.o: textprop.c
$(CCC) -o $@ textprop.c
@@ -3702,6 +3708,10 @@ objects/terminal.o: terminal.c vim.h protodef.h auto/config.h feature.h os_unix.
proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
proto.h globals.h libvterm/include/vterm.h \
libvterm/include/vterm_keycodes.h
+objects/testing.o: testing.c vim.h protodef.h auto/config.h feature.h os_unix.h \
+ auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
+ proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
+ proto.h globals.h
objects/textprop.o: textprop.c vim.h protodef.h auto/config.h feature.h os_unix.h \
auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \