summaryrefslogtreecommitdiff
path: root/src/Makefile
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-02-14 13:22:17 +0100
committerBram Moolenaar <Bram@vim.org>2020-02-14 13:22:17 +0100
commit0a8fed6231c84e4e1b3a7dd6c0d95d3f98207fe0 (patch)
treeb0545af3bfa25ced1890c33fe9c1facf1e749358 /src/Makefile
parentf2cecb6c10909184281e31a8f968200f3841562d (diff)
downloadvim-git-0a8fed6231c84e4e1b3a7dd6c0d95d3f98207fe0.tar.gz
patch 8.2.0256: time and timer related code is spread outv8.2.0256
Problem: Time and timer related code is spread out. Solution: Move time and timer related code to a new file. (Yegappan Lakshmanan, closes #5604)
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 912098f8b..e28453016 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -1661,6 +1661,7 @@ BASIC_SRC = \
terminal.c \
testing.c \
textprop.c \
+ time.c \
ui.c \
undo.c \
usercmd.c \
@@ -1800,6 +1801,7 @@ OBJ_COMMON = \
objects/terminal.o \
objects/testing.o \
objects/textprop.o \
+ objects/time.o \
objects/ui.o \
objects/undo.o \
objects/usercmd.o \
@@ -1971,6 +1973,7 @@ PRO_AUTO = \
termlib.pro \
testing.pro \
textprop.pro \
+ time.pro \
ui.pro \
undo.pro \
usercmd.pro \
@@ -3433,6 +3436,9 @@ objects/testing.o: testing.c
objects/textprop.o: textprop.c
$(CCC) -o $@ textprop.c
+objects/time.o: time.c
+ $(CCC) -o $@ time.c
+
objects/ui.o: ui.c
$(CCC) -o $@ ui.c
@@ -3959,6 +3965,10 @@ objects/textprop.o: textprop.c vim.h protodef.h auto/config.h feature.h os_unix.
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/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/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 \