comparison src/Make_vms.mms @ 26662:4b23672d1f0e v8.2.3860

patch 8.2.3860: Vim9: codecov struggles with the file size Commit: https://github.com/vim/vim/commit/dc7c366f3aae65ee691010b08f37acfb26e0742b Author: Bram Moolenaar <Bram@vim.org> Date: Mon Dec 20 15:04:29 2021 +0000 patch 8.2.3860: Vim9: codecov struggles with the file size Problem: Vim9: codecov struggles with the file size. Solution: Split vim9compile.c into four files.
author Bram Moolenaar <Bram@vim.org>
date Mon, 20 Dec 2021 16:15:03 +0100
parents 13e09dc59f0f
children 92e0b1f2b72f
comparison
equal deleted inserted replaced
26661:8b19a317eec8 26662:4b23672d1f0e
1 # 1 #
2 # Makefile for Vim on OpenVMS 2 # Makefile for Vim on OpenVMS
3 # 3 #
4 # Maintainer: Zoltan Arpadffy <arpadffy@polarhome.com> 4 # Maintainer: Zoltan Arpadffy <arpadffy@polarhome.com>
5 # Last change: 2021 Nov 19 5 # Last change: 2021 Dec 20
6 # 6 #
7 # This script has been tested on VMS 6.2 to 8.4 on DEC Alpha, VAX and IA64 7 # This script has been tested on VMS 6.2 to 8.4 on DEC Alpha, VAX and IA64
8 # with MMS and MMK 8 # with MMS and MMK
9 # 9 #
10 # The following could be built: 10 # The following could be built:
408 ui.c \ 408 ui.c \
409 undo.c \ 409 undo.c \
410 usercmd.c \ 410 usercmd.c \
411 userfunc.c \ 411 userfunc.c \
412 version.c \ 412 version.c \
413 vim9cmds.c \
413 vim9compile.c \ 414 vim9compile.c \
414 vim9execute.c \ 415 vim9execute.c \
416 vim9expr.c \
417 vim9instr.c \
415 vim9script.c \ 418 vim9script.c \
416 vim9type.c \ 419 vim9type.c \
417 viminfo.c \ 420 viminfo.c \
418 window.c \ 421 window.c \
419 $(GUI_SRC) \ 422 $(GUI_SRC) \
529 ui.obj \ 532 ui.obj \
530 undo.obj \ 533 undo.obj \
531 usercmd.obj \ 534 usercmd.obj \
532 userfunc.obj \ 535 userfunc.obj \
533 version.obj \ 536 version.obj \
537 vim9cmds.obj \
534 vim9compile.obj \ 538 vim9compile.obj \
535 vim9execute.obj \ 539 vim9execute.obj \
540 vim9expr.obj \
541 vim9instr.obj \
536 vim9script.obj \ 542 vim9script.obj \
537 vim9type.obj \ 543 vim9type.obj \
538 viminfo.obj \ 544 viminfo.obj \
539 window.obj \ 545 window.obj \
540 $(GUI_OBJ) \ 546 $(GUI_OBJ) \
1110 errors.h globals.h version.h 1116 errors.h globals.h version.h
1111 viminfo.obj : viminfo.c vim.h [.auto]config.h feature.h os_unix.h \ 1117 viminfo.obj : viminfo.c vim.h [.auto]config.h feature.h os_unix.h \
1112 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ 1118 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \
1113 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ 1119 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
1114 errors.h globals.h version.h 1120 errors.h globals.h version.h
1121 vim9cmds.obj : vim9cmds.c vim.h [.auto]config.h feature.h os_unix.h \
1122 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \
1123 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
1124 errors.h globals.h version.h
1115 vim9compile.obj : vim9compile.c vim.h [.auto]config.h feature.h os_unix.h \ 1125 vim9compile.obj : vim9compile.c vim.h [.auto]config.h feature.h os_unix.h \
1116 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ 1126 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \
1117 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ 1127 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
1118 errors.h globals.h version.h 1128 errors.h globals.h version.h
1119 vim9execute.obj : vim9execute.c vim.h [.auto]config.h feature.h os_unix.h \ 1129 vim9execute.obj : vim9execute.c vim.h [.auto]config.h feature.h os_unix.h \
1130 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \
1131 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
1132 errors.h globals.h version.h
1133 vim9expr.obj : vim9expr.c vim.h [.auto]config.h feature.h os_unix.h \
1134 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \
1135 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
1136 errors.h globals.h version.h
1137 vim9instr.obj : vim9instr.c vim.h [.auto]config.h feature.h os_unix.h \
1120 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ 1138 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \
1121 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ 1139 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
1122 errors.h globals.h version.h 1140 errors.h globals.h version.h
1123 vim9script.obj : vim9script.c vim.h [.auto]config.h feature.h os_unix.h \ 1141 vim9script.obj : vim9script.c vim.h [.auto]config.h feature.h os_unix.h \
1124 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ 1142 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \