comparison src/Make_vms.mms @ 17377:cb008de2a6ec v8.1.1687

patch 8.1.1687: the evalfunc.c file is too big commit https://github.com/vim/vim/commit/ecaa70ea29c269dd0dabd3cd5acdfa0ce42ccd54 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jul 14 14:55:39 2019 +0200 patch 8.1.1687: the evalfunc.c file is too big Problem: The evalfunc.c file is too big. Solution: Move testing support to a separate file.
author Bram Moolenaar <Bram@vim.org>
date Sun, 14 Jul 2019 15:00:05 +0200
parents ba06a1c42274
children 635d7f5010b8
comparison
equal deleted inserted replaced
17376:da3299b8b5c0 17377:cb008de2a6ec
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: 2019 May 24 5 # Last change: 2019 Jul 14
6 # 6 #
7 # This has script been tested on VMS 6.2 to 8.2 on DEC Alpha, VAX and IA64 7 # This has script been tested on VMS 6.2 to 8.2 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:
313 if_cscope.c if_xcmdsrv.c fileio.c findfile.c fold.c getchar.c \ 313 if_cscope.c if_xcmdsrv.c fileio.c findfile.c fold.c getchar.c \
314 hardcopy.c hashtab.c indent.c insexpand.c json.c list.c main.c mark.c \ 314 hardcopy.c hashtab.c indent.c insexpand.c json.c list.c main.c mark.c \
315 menu.c mbyte.c memfile.c memline.c message.c misc1.c misc2.c move.c \ 315 menu.c mbyte.c memfile.c memline.c message.c misc1.c misc2.c move.c \
316 normal.c ops.c option.c popupmnu.c popupwin.c profiler.c quickfix.c \ 316 normal.c ops.c option.c popupmnu.c popupwin.c profiler.c quickfix.c \
317 regexp.c search.c sha256.c sign.c spell.c spellfile.c syntax.c tag.c \ 317 regexp.c search.c sha256.c sign.c spell.c spellfile.c syntax.c tag.c \
318 term.c termlib.c textprop.c ui.c undo.c usercmd.c userfunc.c \ 318 term.c termlib.c testing.c textprop.c ui.c undo.c usercmd.c userfunc.c \
319 version.c screen.c window.c os_unix.c os_vms.c pathdef.c \ 319 version.c screen.c window.c os_unix.c os_vms.c pathdef.c \
320 $(GUI_SRC) $(PERL_SRC) $(PYTHON_SRC) $(TCL_SRC) \ 320 $(GUI_SRC) $(PERL_SRC) $(PYTHON_SRC) $(TCL_SRC) \
321 $(RUBY_SRC) $(HANGULIN_SRC) $(MZSCH_SRC) $(XDIFF_SRC) 321 $(RUBY_SRC) $(HANGULIN_SRC) $(MZSCH_SRC) $(XDIFF_SRC)
322 322
323 OBJ = arabic.obj autocmd.obj beval.obj blob.obj blowfish.obj buffer.obj change.obj \ 323 OBJ = arabic.obj autocmd.obj beval.obj blob.obj blowfish.obj buffer.obj change.obj \
328 indent.obj insexpand.obj json.obj list.obj main.obj mark.obj \ 328 indent.obj insexpand.obj json.obj list.obj main.obj mark.obj \
329 menu.obj memfile.obj memline.obj message.obj misc1.obj misc2.obj \ 329 menu.obj memfile.obj memline.obj message.obj misc1.obj misc2.obj \
330 move.obj mbyte.obj normal.obj ops.obj option.obj popupmnu.obj \ 330 move.obj mbyte.obj normal.obj ops.obj option.obj popupmnu.obj \
331 popupwin.obj profiler.obj quickfix.obj regexp.obj search.obj \ 331 popupwin.obj profiler.obj quickfix.obj regexp.obj search.obj \
332 sha256.obj sign.obj spell.obj spellfile.obj syntax.obj tag.obj \ 332 sha256.obj sign.obj spell.obj spellfile.obj syntax.obj tag.obj \
333 term.obj termlib.obj textprop.obj ui.obj undo.obj usercmd.obj \ 333 term.obj termlib.obj testing.obj textprop.obj ui.obj undo.obj usercmd.obj \
334 userfunc.obj screen.obj version.obj window.obj os_unix.obj os_vms.obj \ 334 userfunc.obj screen.obj version.obj window.obj os_unix.obj os_vms.obj \
335 pathdef.obj if_mzsch.obj \ 335 pathdef.obj if_mzsch.obj \
336 $(GUI_OBJ) $(PERL_OBJ) $(PYTHON_OBJ) $(TCL_OBJ) \ 336 $(GUI_OBJ) $(PERL_OBJ) $(PYTHON_OBJ) $(TCL_OBJ) \
337 $(RUBY_OBJ) $(HANGULIN_OBJ) $(MZSCH_OBJ) $(XDIFF_OBJ) 337 $(RUBY_OBJ) $(HANGULIN_OBJ) $(MZSCH_OBJ) $(XDIFF_OBJ)
338 338
740 term.obj : term.c vim.h [.auto]config.h feature.h os_unix.h \ 740 term.obj : term.c vim.h [.auto]config.h feature.h os_unix.h \
741 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \ 741 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
742 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h \ 742 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h \
743 743
744 termlib.obj : termlib.c vim.h [.auto]config.h feature.h os_unix.h \ 744 termlib.obj : termlib.c vim.h [.auto]config.h feature.h os_unix.h \
745 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
746 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h \
747
748 testing.obj : testing.c vim.h [.auto]config.h feature.h os_unix.h \
745 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \ 749 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
746 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h \ 750 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h \
747 751
748 textprop.obj : textprop.c vim.h [.auto]config.h feature.h os_unix.h \ 752 textprop.obj : textprop.c vim.h [.auto]config.h feature.h os_unix.h \
749 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \ 753 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \