summaryrefslogtreecommitdiffstats
path: root/src/Make_vms.mms
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2021-12-20 15:04:29 +0000
committerBram Moolenaar <Bram@vim.org>2021-12-20 15:04:29 +0000
commitdc7c366f3aae65ee691010b08f37acfb26e0742b (patch)
tree90d12bd3030048100a9c5084474aef484f6fc58f /src/Make_vms.mms
parenta99fb23842f055c511bfe1b62de7bbd14d5a99c0 (diff)
patch 8.2.3860: Vim9: codecov struggles with the file sizev8.2.3860
Problem: Vim9: codecov struggles with the file size. Solution: Split vim9compile.c into four files.
Diffstat (limited to 'src/Make_vms.mms')
-rw-r--r--src/Make_vms.mms20
1 files changed, 19 insertions, 1 deletions
diff --git a/src/Make_vms.mms b/src/Make_vms.mms
index ab5be44905..54aa4c3a72 100644
--- a/src/Make_vms.mms
+++ b/src/Make_vms.mms
@@ -2,7 +2,7 @@
# Makefile for Vim on OpenVMS
#
# Maintainer: Zoltan Arpadffy <arpadffy@polarhome.com>
-# Last change: 2021 Nov 19
+# Last change: 2021 Dec 20
#
# This script has been tested on VMS 6.2 to 8.4 on DEC Alpha, VAX and IA64
# with MMS and MMK
@@ -410,8 +410,11 @@ SRC = \
usercmd.c \
userfunc.c \
version.c \
+ vim9cmds.c \
vim9compile.c \
vim9execute.c \
+ vim9expr.c \
+ vim9instr.c \
vim9script.c \
vim9type.c \
viminfo.c \
@@ -531,8 +534,11 @@ OBJ = \
usercmd.obj \
userfunc.obj \
version.obj \
+ vim9cmds.obj \
vim9compile.obj \
vim9execute.obj \
+ vim9expr.obj \
+ vim9instr.obj \
vim9script.obj \
vim9type.obj \
viminfo.obj \
@@ -1112,6 +1118,10 @@ viminfo.obj : viminfo.c vim.h [.auto]config.h feature.h os_unix.h \
ascii.h keymap.h termdefs.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 version.h
+vim9cmds.obj : vim9cmds.c vim.h [.auto]config.h feature.h os_unix.h \
+ ascii.h keymap.h termdefs.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 version.h
vim9compile.obj : vim9compile.c vim.h [.auto]config.h feature.h os_unix.h \
ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \
gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
@@ -1120,6 +1130,14 @@ vim9execute.obj : vim9execute.c vim.h [.auto]config.h feature.h os_unix.h \
ascii.h keymap.h termdefs.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 version.h
+vim9expr.obj : vim9expr.c vim.h [.auto]config.h feature.h os_unix.h \
+ ascii.h keymap.h termdefs.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 version.h
+vim9instr.obj : vim9instr.c vim.h [.auto]config.h feature.h os_unix.h \
+ ascii.h keymap.h termdefs.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 version.h
vim9script.obj : vim9script.c vim.h [.auto]config.h feature.h os_unix.h \
ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \
gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \