comparison src/Make_vms.mms @ 16411:5b5c5daf57de v8.1.1210

patch 8.1.1210: support for user commands is spread out commit https://github.com/vim/vim/commit/ac9fb18020d7e8bf16d02d45fbb02cf47328aaf7 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Apr 27 13:04:13 2019 +0200 patch 8.1.1210: support for user commands is spread out Problem: Support for user commands is spread out. No good reason to make user commands optional. Solution: Move user command support to usercmd.c. Always enable the user_commands feature.
author Bram Moolenaar <Bram@vim.org>
date Sat, 27 Apr 2019 13:15:07 +0200
parents 1dcbaa780b8e
children 30de89c1d090
comparison
equal deleted inserted replaced
16410:eb356c5e6287 16411:5b5c5daf57de
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 Mar 22 5 # Last change: 2019 Apr 26
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 quickfix.c regexp.c search.c \ 316 normal.c ops.c option.c popupmnu.c quickfix.c regexp.c search.c \
317 sha256.c sign.c spell.c spellfile.c syntax.c tag.c term.c termlib.c \ 317 sha256.c sign.c spell.c spellfile.c syntax.c tag.c term.c termlib.c \
318 textprop.c ui.c undo.c userfunc.c version.c screen.c window.c \ 318 textprop.c ui.c undo.c usercmd.c userfunc.c version.c screen.c \
319 os_unix.c os_vms.c pathdef.c \ 319 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 \ 323 OBJ = arabic.obj autocmd.obj beval.obj blob.obj blowfish.obj buffer.obj \
324 charset.obj crypt.obj crypt_zip.obj debugger.obj dict.obj diff.obj \ 324 charset.obj crypt.obj crypt_zip.obj debugger.obj dict.obj diff.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 quickfix.obj regexp.obj search.obj sha256.obj sign.obj spell.obj \ 331 quickfix.obj regexp.obj search.obj sha256.obj sign.obj spell.obj \
332 spellfile.obj syntax.obj tag.obj term.obj termlib.obj textprop.obj \ 332 spellfile.obj syntax.obj tag.obj term.obj termlib.obj textprop.obj \
333 ui.obj undo.obj userfunc.obj screen.obj version.obj \ 333 ui.obj undo.obj usercmd.obj userfunc.obj screen.obj version.obj \
334 window.obj os_unix.obj os_vms.obj pathdef.obj if_mzsch.obj \ 334 window.obj os_unix.obj os_vms.obj pathdef.obj if_mzsch.obj \
335 $(GUI_OBJ) $(PERL_OBJ) $(PYTHON_OBJ) $(TCL_OBJ) \ 335 $(GUI_OBJ) $(PERL_OBJ) $(PYTHON_OBJ) $(TCL_OBJ) \
336 $(RUBY_OBJ) $(HANGULIN_OBJ) $(MZSCH_OBJ) $(XDIFF_OBJ) 336 $(RUBY_OBJ) $(HANGULIN_OBJ) $(MZSCH_OBJ) $(XDIFF_OBJ)
337 337
338 # Default target is making the executable 338 # Default target is making the executable
742 742
743 undo.obj : undo.c vim.h [.auto]config.h feature.h os_unix.h \ 743 undo.obj : undo.c vim.h [.auto]config.h feature.h os_unix.h \
744 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \ 744 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
745 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h \ 745 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h \
746 746
747 usercmd.obj : usercmd.c vim.h [.auto]config.h feature.h os_unix.h \
748 ascii.h keymap.h term.h macros.h option.h structs.h \
749 regexp.h gui.h beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h \
750 proto.h globals.h
751
747 userfunc.obj : userfunc.c vim.h [.auto]config.h feature.h os_unix.h \ 752 userfunc.obj : userfunc.c vim.h [.auto]config.h feature.h os_unix.h \
748 ascii.h keymap.h term.h macros.h option.h structs.h \ 753 ascii.h keymap.h term.h macros.h option.h structs.h \
749 regexp.h gui.h beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h \ 754 regexp.h gui.h beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h \
750 proto.h globals.h 755 proto.h globals.h
756
751 version.obj : version.c vim.h [.auto]config.h feature.h os_unix.h \ 757 version.obj : version.c vim.h [.auto]config.h feature.h os_unix.h \
752 ascii.h keymap.h term.h macros.h structs.h regexp.h \ 758 ascii.h keymap.h term.h macros.h structs.h regexp.h \
753 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ 759 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
754 globals.h version.h 760 globals.h version.h
755 window.obj : window.c vim.h [.auto]config.h feature.h os_unix.h \ 761 window.obj : window.c vim.h [.auto]config.h feature.h os_unix.h \