summaryrefslogtreecommitdiffstats
path: root/src/Make_vms.mms
diff options
context:
space:
mode:
authorYegappan Lakshmanan <yegappan@yahoo.com>2021-06-02 17:07:18 +0200
committerBram Moolenaar <Bram@vim.org>2021-06-02 17:07:18 +0200
commit01c798c31a94a50ad0c4a022fc21c1a31553be21 (patch)
treecc720adf347b3afa81846b110dd8f595eed5177c /src/Make_vms.mms
parenta83d06026d0e0dad873de296bff97707ad2faff3 (diff)
patch 8.2.2928: the evalfunc.c file is too bigv8.2.2928
Problem: The evalfunc.c file is too big. Solution: Move float related functionality to a separate file. (Yegappan Lakshmanan, closes #8287)
Diffstat (limited to 'src/Make_vms.mms')
-rw-r--r--src/Make_vms.mms5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/Make_vms.mms b/src/Make_vms.mms
index 3631236360..4928b0be86 100644
--- a/src/Make_vms.mms
+++ b/src/Make_vms.mms
@@ -343,6 +343,7 @@ SRC = \
fileio.c \
filepath.c, \
findfile.c \
+ float.c \
fold.c \
getchar.c \
gui_xim.c \
@@ -460,6 +461,7 @@ OBJ = \
fileio.obj \
filepath.obj \
findfile.obj \
+ float.obj \
fold.obj \
getchar.obj \
gui_xim.obj \
@@ -860,6 +862,9 @@ findfile.obj : findfile.c vim.h [.auto]config.h feature.h os_unix.h \
ascii.h keymap.h term.h macros.h structs.h regexp.h \
gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
errors.h globals.h
+float.obj : float.c vim.h [.auto]config.h feature.h os_unix.h \
+ ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
+ [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h
fold.obj : fold.c vim.h [.auto]config.h feature.h os_unix.h \
ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
[.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h