comparison src/Makefile @ 19396:a961efb326e5 v8.2.0256

patch 8.2.0256: time and timer related code is spread out Commit: https://github.com/vim/vim/commit/0a8fed6231c84e4e1b3a7dd6c0d95d3f98207fe0 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Feb 14 13:22:17 2020 +0100 patch 8.2.0256: time and timer related code is spread out Problem: Time and timer related code is spread out. Solution: Move time and timer related code to a new file. (Yegappan Lakshmanan, closes #5604)
author Bram Moolenaar <Bram@vim.org>
date Fri, 14 Feb 2020 13:30:05 +0100
parents 94eda51ba9ba
children 22f0dda71638
comparison
equal deleted inserted replaced
19395:eb5ef6f5f58b 19396:a961efb326e5
1659 tag.c \ 1659 tag.c \
1660 term.c \ 1660 term.c \
1661 terminal.c \ 1661 terminal.c \
1662 testing.c \ 1662 testing.c \
1663 textprop.c \ 1663 textprop.c \
1664 time.c \
1664 ui.c \ 1665 ui.c \
1665 undo.c \ 1666 undo.c \
1666 usercmd.c \ 1667 usercmd.c \
1667 userfunc.c \ 1668 userfunc.c \
1668 version.c \ 1669 version.c \
1798 objects/tag.o \ 1799 objects/tag.o \
1799 objects/term.o \ 1800 objects/term.o \
1800 objects/terminal.o \ 1801 objects/terminal.o \
1801 objects/testing.o \ 1802 objects/testing.o \
1802 objects/textprop.o \ 1803 objects/textprop.o \
1804 objects/time.o \
1803 objects/ui.o \ 1805 objects/ui.o \
1804 objects/undo.o \ 1806 objects/undo.o \
1805 objects/usercmd.o \ 1807 objects/usercmd.o \
1806 objects/userfunc.o \ 1808 objects/userfunc.o \
1807 objects/version.o \ 1809 objects/version.o \
1969 term.pro \ 1971 term.pro \
1970 terminal.pro \ 1972 terminal.pro \
1971 termlib.pro \ 1973 termlib.pro \
1972 testing.pro \ 1974 testing.pro \
1973 textprop.pro \ 1975 textprop.pro \
1976 time.pro \
1974 ui.pro \ 1977 ui.pro \
1975 undo.pro \ 1978 undo.pro \
1976 usercmd.pro \ 1979 usercmd.pro \
1977 userfunc.pro \ 1980 userfunc.pro \
1978 version.pro \ 1981 version.pro \
3431 $(CCC) -o $@ testing.c 3434 $(CCC) -o $@ testing.c
3432 3435
3433 objects/textprop.o: textprop.c 3436 objects/textprop.o: textprop.c
3434 $(CCC) -o $@ textprop.c 3437 $(CCC) -o $@ textprop.c
3435 3438
3439 objects/time.o: time.c
3440 $(CCC) -o $@ time.c
3441
3436 objects/ui.o: ui.c 3442 objects/ui.o: ui.c
3437 $(CCC) -o $@ ui.c 3443 $(CCC) -o $@ ui.c
3438 3444
3439 objects/undo.o: undo.c 3445 objects/undo.o: undo.c
3440 $(CCC) -o $@ undo.c 3446 $(CCC) -o $@ undo.c
3954 objects/testing.o: testing.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3960 objects/testing.o: testing.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3955 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3961 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3956 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3962 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3957 proto.h globals.h 3963 proto.h globals.h
3958 objects/textprop.o: textprop.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3964 objects/textprop.o: textprop.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3965 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3966 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3967 proto.h globals.h
3968 objects/time.o: time.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3959 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3969 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3960 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3970 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3961 proto.h globals.h 3971 proto.h globals.h
3962 objects/ui.o: ui.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3972 objects/ui.o: ui.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3963 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3973 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \