comparison src/Make_vms.mms @ 17966:46f95606b9ec v8.1.1979

patch 8.1.1979: code for handling file names is spread out Commit: https://github.com/vim/vim/commit/b005cd80cfda591be95146024d9b97eef383500f Author: Bram Moolenaar <Bram@vim.org> Date: Wed Sep 4 15:54:55 2019 +0200 patch 8.1.1979: code for handling file names is spread out Problem: Code for handling file names is spread out. Solution: Move code to new filepath.c file. Graduate FEAT_MODIFY_FNAME.
author Bram Moolenaar <Bram@vim.org>
date Wed, 04 Sep 2019 16:00:04 +0200
parents d50a5faa75bd
children cf8e0c7e0cb9
comparison
equal deleted inserted replaced
17965:621590abaf54 17966:46f95606b9ec
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 Aug 18 5 # Last change: 2019 Sep 04
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:
308 $(PERL_LIB) $(PYTHON_LIB) $(TCL_LIB) $(RUBY_LIB) 308 $(PERL_LIB) $(PYTHON_LIB) $(TCL_LIB) $(RUBY_LIB)
309 309
310 SRC = arabic.c arglist.c autocmd.c beval.c blob.c blowfish.c buffer.c \ 310 SRC = arabic.c arglist.c autocmd.c beval.c blob.c blowfish.c buffer.c \
311 change.c charset.c cmdexpand.c cmdhist.c crypt.c crypt_zip.c \ 311 change.c charset.c cmdexpand.c cmdhist.c crypt.c crypt_zip.c \
312 debugger.c dict.c diff.c digraph.c edit.c eval.c evalfunc.c \ 312 debugger.c dict.c diff.c digraph.c edit.c eval.c evalfunc.c \
313 evalvars.c ex_cmds.c \ 313 evalvars.c ex_cmds.c ex_cmds2.c ex_docmd.c ex_eval.c ex_getln.c \
314 ex_cmds2.c ex_docmd.c ex_eval.c ex_getln.c if_cscope.c if_xcmdsrv.c \ 314 if_cscope.c if_xcmdsrv.c fileio.c filepath.c, findfile.c fold.c \
315 fileio.c findfile.c fold.c getchar.c hardcopy.c hashtab.c highlight.c \ 315 getchar.c hardcopy.c hashtab.c highlight.c \
316 indent.c insexpand.c json.c list.c main.c map.c mark.c menu.c mbyte.c \ 316 indent.c insexpand.c json.c list.c main.c map.c mark.c menu.c mbyte.c \
317 memfile.c memline.c message.c misc1.c misc2.c move.c normal.c ops.c \ 317 memfile.c memline.c message.c misc1.c misc2.c move.c normal.c ops.c \
318 option.c popupmnu.c popupwin.c profiler.c quickfix.c regexp.c \ 318 option.c popupmnu.c popupwin.c profiler.c quickfix.c regexp.c \
319 scriptfile.c \ 319 scriptfile.c \
320 search.c session.c sha256.c sign.c spell.c spellfile.c syntax.c tag.c \ 320 search.c session.c sha256.c sign.c spell.c spellfile.c syntax.c tag.c \
326 326
327 OBJ = arabic.obj arglist.obj autocmd.obj beval.obj blob.obj blowfish.obj \ 327 OBJ = arabic.obj arglist.obj autocmd.obj beval.obj blob.obj blowfish.obj \
328 buffer.obj change.obj charset.obj cmdexpand.obj cmdhist.obj \ 328 buffer.obj change.obj charset.obj cmdexpand.obj cmdhist.obj \
329 crypt.obj crypt_zip.obj debugger.obj dict.obj diff.obj digraph.obj \ 329 crypt.obj crypt_zip.obj debugger.obj dict.obj diff.obj digraph.obj \
330 edit.obj eval.obj evalfunc.obj evalvars.obj ex_cmds.obj ex_cmds2.obj \ 330 edit.obj eval.obj evalfunc.obj evalvars.obj ex_cmds.obj ex_cmds2.obj \
331 ex_docmd.obj \ 331 ex_docmd.obj ex_eval.obj ex_getln.obj if_cscope.obj if_xcmdsrv.obj \
332 ex_eval.obj ex_getln.obj if_cscope.obj if_xcmdsrv.obj fileio.obj \ 332 fileio.obj filepath.obj \
333 findfile.obj fold.obj getchar.obj hardcopy.obj hashtab.obj \ 333 findfile.obj fold.obj getchar.obj hardcopy.obj hashtab.obj \
334 highlight.obj indent.obj insexpand.obj json.obj list.obj main.obj \ 334 highlight.obj indent.obj insexpand.obj json.obj list.obj main.obj \
335 map.obj mark.obj menu.obj memfile.obj memline.obj message.obj \ 335 map.obj mark.obj menu.obj memfile.obj memline.obj message.obj \
336 misc1.obj misc2.obj move.obj mbyte.obj normal.obj ops.obj option.obj \ 336 misc1.obj misc2.obj move.obj mbyte.obj normal.obj ops.obj option.obj \
337 popupmnu.obj popupwin.obj profiler.obj quickfix.obj regexp.obj \ 337 popupmnu.obj popupwin.obj profiler.obj quickfix.obj regexp.obj \
594 ex_getln.obj : ex_getln.c vim.h [.auto]config.h feature.h os_unix.h \ 594 ex_getln.obj : ex_getln.c vim.h [.auto]config.h feature.h os_unix.h \
595 ascii.h keymap.h term.h macros.h structs.h regexp.h \ 595 ascii.h keymap.h term.h macros.h structs.h regexp.h \
596 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ 596 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
597 globals.h 597 globals.h
598 fileio.obj : fileio.c vim.h [.auto]config.h feature.h os_unix.h \ 598 fileio.obj : fileio.c vim.h [.auto]config.h feature.h os_unix.h \
599 ascii.h keymap.h term.h macros.h structs.h regexp.h \
600 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
601 globals.h
602 filepath.obj : filepath.c vim.h [.auto]config.h feature.h os_unix.h \
599 ascii.h keymap.h term.h macros.h structs.h regexp.h \ 603 ascii.h keymap.h term.h macros.h structs.h regexp.h \
600 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ 604 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
601 globals.h 605 globals.h
602 findfile.obj : findfile.c vim.h [.auto]config.h feature.h os_unix.h \ 606 findfile.obj : findfile.c vim.h [.auto]config.h feature.h os_unix.h \
603 ascii.h keymap.h term.h macros.h structs.h regexp.h \ 607 ascii.h keymap.h term.h macros.h structs.h regexp.h \