summaryrefslogtreecommitdiffstats
path: root/src/Makefile
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-05-30 17:06:14 +0200
committerBram Moolenaar <Bram@vim.org>2020-05-30 17:06:14 +0200
commit367d59e6ba65cf554d167933775fa17e40dcc6a7 (patch)
treea7d7fc8c309c7a57f2974c785fe1f1a3dd2875ea /src/Makefile
parentd5c2c7763d73b91efd64a49da8221f9955debdd5 (diff)
patch 8.2.0847: typval related code is spread outv8.2.0847
Problem: Typval related code is spread out. Solution: Move code to new typval.c file. (Yegappan Lakshmanan, closes #6093)
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 9b50eca6d9..c4bce687dc 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -1686,6 +1686,7 @@ BASIC_SRC = \
textobject.c \
textprop.c \
time.c \
+ typval.c \
ui.c \
undo.c \
usercmd.c \
@@ -1830,6 +1831,7 @@ OBJ_COMMON = \
objects/textobject.o \
objects/textprop.o \
objects/time.o \
+ objects/typval.o \
objects/ui.o \
objects/undo.o \
objects/usercmd.o \
@@ -2006,6 +2008,7 @@ PRO_AUTO = \
textobject.pro \
textprop.pro \
time.pro \
+ typval.pro \
ui.pro \
undo.pro \
usercmd.pro \
@@ -3496,6 +3499,9 @@ objects/textprop.o: textprop.c
objects/time.o: time.c
$(CCC) -o $@ time.c
+objects/typval.o: typval.c
+ $(CCC) -o $@ typval.c
+
objects/ui.o: ui.c
$(CCC) -o $@ ui.c
@@ -4098,6 +4104,10 @@ objects/time.o: time.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/typval.o: typval.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/ui.o: ui.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 \