Mercurial > vim
annotate src/Make_vms.mms @ 34157:e7d64a3fffe4 v9.1.0039
patch 9.1.0039: too vague errors for 'listchars'/'fillchars'
Commit: https://github.com/vim/vim/commit/6a8d2e1634f8f0d7463a2786dbcbe0f38dd287a7
Author: zeertzjq <zeertzjq@outlook.com>
Date: Wed Jan 17 20:54:49 2024 +0100
patch 9.1.0039: too vague errors for 'listchars'/'fillchars'
Problem: too vague errors for 'listchars'/'fillchars'
Solution: Include the field name in error message.
(zeertzjq)
related: neovim/neovim#27050
closes: #13877
Co-authored-by: Cole Frankenhoff <cole.nhf@gmail.com>
Signed-off-by: zeertzjq <zeertzjq@outlook.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Wed, 17 Jan 2024 21:15:03 +0100 |
parents | 6d9e20b403e8 |
children | 500731fe8161 |
rev | line source |
---|---|
7 | 1 # |
2 # Makefile for Vim on OpenVMS | |
3 # | |
34072
6d9e20b403e8
patch 9.1.0005: OpenVMS does not support python3 and xterm_save
Christian Brabandt <cb@256bit.org>
parents:
33988
diff
changeset
|
4 # Maintainer: Zoltan Arpadffy <zoltan.arpadffy@gmail.com> |
6d9e20b403e8
patch 9.1.0005: OpenVMS does not support python3 and xterm_save
Christian Brabandt <cb@256bit.org>
parents:
33988
diff
changeset
|
5 # Last change: 2024 Jan 03 |
7 | 6 # |
33888
cb88e5c589d0
patch 9.0.2153: no support to build on OpenVMS
Christian Brabandt <cb@256bit.org>
parents:
31335
diff
changeset
|
7 # This script has been tested on VMS 6.2 to 9.2 on VAX, ALPHA, IA64 and X86_64 |
7 | 8 # with MMS and MMK |
9 # | |
10 # The following could be built: | |
11 # vim.exe: standard (terminal, GUI/Motif, GUI/GTK) | |
12 # dvim.exe: debug | |
13 # | |
14 # Edit the lines in the Configuration section below for fine tuning. | |
15 # | |
1045 | 16 # To build: mms/descrip=Make_vms.mms /ignore=warning |
7 | 17 # To clean up: mms/descrip=Make_vms.mms clean |
18 # | |
19 # Hints and detailed description could be found in INSTALLVMS.TXT file. | |
20 # | |
21 ###################################################################### | |
22 # Configuration section. | |
23 ###################################################################### | |
24 | |
25 # Compiler selection. | |
26 # Comment out if you use the VAXC compiler | |
27 DECC = YES | |
28 | |
29 # Build model selection | |
30645
101f08b49ed3
patch 9.0.0657: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
27484
diff
changeset
|
30 # TINY - No optional features enabled |
7 | 31 # NORMAL - A default selection of features enabled |
4352 | 32 # HUGE - All possible features enabled. |
7 | 33 # Please select one of these alternatives above. |
1709 | 34 MODEL = HUGE |
7 | 35 |
36 # GUI or terminal mode executable. | |
37 # Comment out if you want just the character terminal mode only. | |
826 | 38 # GUI with Motif |
23503
49d866e9b439
patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents:
23408
diff
changeset
|
39 # GUI = YES |
7 | 40 |
41 # GUI with GTK | |
42 # If you have GTK installed you might want to enable this option. | |
1045 | 43 # NOTE: you will need to properly define GTK_DIR below |
23503
49d866e9b439
patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents:
23408
diff
changeset
|
44 # NOTE: since Vim 7.3 GTK 2+ is used that is not ported to VMS, |
49d866e9b439
patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents:
23408
diff
changeset
|
45 # therefore this option should not be used |
7 | 46 # GTK = YES |
47 | |
414 | 48 # GUI/Motif with XPM |
49 # If you have XPM installed you might want to build Motif version with toolbar | |
23503
49d866e9b439
patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents:
23408
diff
changeset
|
50 # XPM = YES |
414 | 51 |
7 | 52 # Comment out if you want the compiler version with :ver command. |
53 # NOTE: This part can make some complications if you're using some | |
54 # predefined symbols/flags for your compiler. If does, just leave behind | |
4352 | 55 # the comment variable CCVER. |
7 | 56 CCVER = YES |
57 | |
58 # Uncomment if want a debug version. Resulting executable is DVIM.EXE | |
59 # Development purpose only! Normally, it should not be defined. !!! | |
23503
49d866e9b439
patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents:
23408
diff
changeset
|
60 # DEBUG = YES |
7 | 61 |
62 # Languages support for Perl, Python, TCL etc. | |
63 # If you don't need it really, leave them behind the comment. | |
64 # You will need related libraries, include files etc. | |
65 # VIM_TCL = YES | |
66 # VIM_PERL = YES | |
67 # VIM_PYTHON = YES | |
34072
6d9e20b403e8
patch 9.1.0005: OpenVMS does not support python3 and xterm_save
Christian Brabandt <cb@256bit.org>
parents:
33988
diff
changeset
|
68 # VIM_PYTHON3= YES |
7 | 69 # VIM_RUBY = YES |
23503
49d866e9b439
patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents:
23408
diff
changeset
|
70 # VIM_LUA = YES |
7 | 71 |
72 # X Input Method. For entering special languages like chinese and | |
18673
f1658662ea84
patch 8.1.2328: a few hangul input pieces remain
Bram Moolenaar <Bram@vim.org>
parents:
18265
diff
changeset
|
73 # Japanese. |
7 | 74 # If you don't need it really, leave it behind the comment. |
75 # VIM_XIM = YES | |
76 | |
77 # Allow any white space to separate the fields in a tags file | |
78 # When not defined, only a TAB is allowed. | |
79 # VIM_TAG_ANYWHITE = YES | |
80 | |
2441
620a42739426
Improvements for VMS. (Zoltan Arpadffy)
Bram Moolenaar <bram@vim.org>
parents:
2428
diff
changeset
|
81 # Allow FEATURE_MZSCHEME |
620a42739426
Improvements for VMS. (Zoltan Arpadffy)
Bram Moolenaar <bram@vim.org>
parents:
2428
diff
changeset
|
82 # VIM_MZSCHEME = YES |
620a42739426
Improvements for VMS. (Zoltan Arpadffy)
Bram Moolenaar <bram@vim.org>
parents:
2428
diff
changeset
|
83 |
5704 | 84 # Use ICONV |
33888
cb88e5c589d0
patch 9.0.2153: no support to build on OpenVMS
Christian Brabandt <cb@256bit.org>
parents:
31335
diff
changeset
|
85 # VIM_ICONV = YES |
cb88e5c589d0
patch 9.0.2153: no support to build on OpenVMS
Christian Brabandt <cb@256bit.org>
parents:
31335
diff
changeset
|
86 |
cb88e5c589d0
patch 9.0.2153: no support to build on OpenVMS
Christian Brabandt <cb@256bit.org>
parents:
31335
diff
changeset
|
87 # If you modified the source code and plan to distribute the build |
cb88e5c589d0
patch 9.0.2153: no support to build on OpenVMS
Christian Brabandt <cb@256bit.org>
parents:
31335
diff
changeset
|
88 # please, let the users know that. |
cb88e5c589d0
patch 9.0.2153: no support to build on OpenVMS
Christian Brabandt <cb@256bit.org>
parents:
31335
diff
changeset
|
89 # MODIFIED_BY = "name surname <your@email.com>" |
5704 | 90 |
7 | 91 ###################################################################### |
92 # Directory, library and include files configuration section. | |
93 # Normally you need not to change anything below. ! | |
94 # These may need to be defined if things are not in standard locations | |
95 # | |
96 # You can find some explanation in INSTALLVMS.TXT | |
97 ###################################################################### | |
98 | |
99 # Compiler setup | |
100 | |
1045 | 101 .IFDEF MMSVAX |
7 | 102 .IFDEF DECC # VAX with DECC |
5704 | 103 CC_DEF = cc # /decc # some versions require /decc switch but when it is not required /ver might fail |
23408
bdda90ed5f6c
patch 8.2.2247: VMS: various smaller problems
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
104 PREFIX = /prefix=all/name=(upper,short) |
5704 | 105 OPTIMIZE= /noopt # do not optimize on VAX. The compiler has hard time with crypto functions |
7 | 106 .ELSE # VAX with VAXC |
107 CC_DEF = cc | |
108 PREFIX = | |
5704 | 109 OPTIMIZE= /noopt |
7 | 110 CCVER = |
111 .ENDIF | |
33888
cb88e5c589d0
patch 9.0.2153: no support to build on OpenVMS
Christian Brabandt <cb@256bit.org>
parents:
31335
diff
changeset
|
112 .ELSE # AXP, IA64, X86 with DECC |
7 | 113 CC_DEF = cc |
23408
bdda90ed5f6c
patch 8.2.2247: VMS: various smaller problems
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
114 PREFIX = /prefix=all/name=(upper,short) |
5704 | 115 OPTIMIZE= /opt |
33988
7c30841c60a0
patch 9.0.2180: POSIX function name in exarg causes issues
Christian Brabandt <cb@256bit.org>
parents:
33888
diff
changeset
|
116 .IFDEF MMSX86_64 |
34072
6d9e20b403e8
patch 9.1.0005: OpenVMS does not support python3 and xterm_save
Christian Brabandt <cb@256bit.org>
parents:
33988
diff
changeset
|
117 ARCH_DEF= # ,__CRTL_VER_OVERRIDE=80400000 |
7 | 118 .ENDIF |
33888
cb88e5c589d0
patch 9.0.2153: no support to build on OpenVMS
Christian Brabandt <cb@256bit.org>
parents:
31335
diff
changeset
|
119 .ENDIF |
5704 | 120 |
7 | 121 LD_DEF = link |
122 C_INC = [.proto] | |
123 | |
124 .IFDEF DEBUG | |
125 DEBUG_DEF = ,"DEBUG" | |
126 TARGET = dvim.exe | |
127 CFLAGS = /debug/noopt$(PREFIX) | |
128 LDFLAGS = /debug | |
129 .ELSE | |
130 TARGET = vim.exe | |
5704 | 131 CFLAGS = $(OPTIMIZE)$(PREFIX) |
7 | 132 LDFLAGS = |
133 .ENDIF | |
134 | |
135 # Predefined VIM directories | |
136 # Please, use $VIM and $VIMRUNTIME logicals instead | |
137 VIMLOC = "" | |
138 VIMRUN = "" | |
139 | |
140 CONFIG_H = os_vms_conf.h | |
141 | |
826 | 142 # GTK or XPM but not both |
7 | 143 .IFDEF GTK |
144 .IFDEF GUI | |
145 .ELSE | |
146 GUI = YES | |
147 .ENDIF | |
826 | 148 .IFDEF XPM |
149 XPM = "" | |
150 .ENDIF | |
151 .ENDIF | |
152 | |
153 .IFDEF XPM | |
154 .IFDEF GUI | |
155 .ELSE | |
156 GUI = YES | |
157 .ENDIF | |
158 .IFDEF GTK | |
159 GTK = "" | |
7 | 160 .ENDIF |
414 | 161 .ENDIF |
7 | 162 |
163 .IFDEF GUI | |
164 # X/Motif/GTK executable (also works in terminal mode ) | |
165 | |
166 .IFDEF GTK | |
819 | 167 # NOTE: you need to set up your GTK_DIR (GTK root directory), because it is |
168 # unique on every system - logicals are not accepted | |
414 | 169 # please note: directory should end with . in order to /trans=conc work |
1045 | 170 # This value for GTK_DIR is an example. |
15517
2ad5f0ffaa2e
patch 8.1.0766: various problems when using Vim on VMS
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
171 GTK_DIR = DKA0:[WORK.GTK1210.] |
33888
cb88e5c589d0
patch 9.0.2153: no support to build on OpenVMS
Christian Brabandt <cb@256bit.org>
parents:
31335
diff
changeset
|
172 DEFS = ,"HAVE_CONFIG_H","FEAT_GUI_GTK" |
7 | 173 LIBS = ,OS_VMS_GTK.OPT/OPT |
33888
cb88e5c589d0
patch 9.0.2153: no support to build on OpenVMS
Christian Brabandt <cb@256bit.org>
parents:
31335
diff
changeset
|
174 GUI_FLAG = /float=ieee/ieee=denorm/WARNINGS=(DISABLE=MACROREDEF) |
414 | 175 GUI_SRC = gui.c gui_gtk.c gui_gtk_f.c gui_gtk_x11.c gui_beval.c pty.c |
176 GUI_OBJ = gui.obj gui_gtk.obj gui_gtk_f.obj gui_gtk_x11.obj gui_beval.obj pty.obj | |
7 | 177 GUI_INC = ,"/gtk_root/gtk","/gtk_root/glib" |
178 # GUI_INC_VER is used just for :ver information | |
179 # this string should escape from C and DCL in the same time | |
180 GUI_INC_VER= ,\""/gtk_root/gtk\"",\""/gtk_root/glib\"" | |
414 | 181 .ELSE |
7 | 182 MOTIF = YES |
414 | 183 .IFDEF XPM |
33888
cb88e5c589d0
patch 9.0.2153: no support to build on OpenVMS
Christian Brabandt <cb@256bit.org>
parents:
31335
diff
changeset
|
184 DEFS = ,"HAVE_CONFIG_H","FEAT_GUI_MOTIF","HAVE_XPM" |
15517
2ad5f0ffaa2e
patch 8.1.0766: various problems when using Vim on VMS
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
185 XPM_INC = ,[.xpm.include] |
23408
bdda90ed5f6c
patch 8.2.2247: VMS: various smaller problems
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
186 XPM_LIB = ,OS_VMS_XPM.OPT/OPT |
414 | 187 .ELSE |
33888
cb88e5c589d0
patch 9.0.2153: no support to build on OpenVMS
Christian Brabandt <cb@256bit.org>
parents:
31335
diff
changeset
|
188 DEFS = ,"HAVE_CONFIG_H","FEAT_GUI_MOTIF" |
23503
49d866e9b439
patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents:
23408
diff
changeset
|
189 XPM_INC = |
414 | 190 .ENDIF |
7 | 191 LIBS = ,OS_VMS_MOTIF.OPT/OPT |
33888
cb88e5c589d0
patch 9.0.2153: no support to build on OpenVMS
Christian Brabandt <cb@256bit.org>
parents:
31335
diff
changeset
|
192 GUI_FLAG = /WARNINGS=(DISABLE=MACROREDEF) |
414 | 193 GUI_SRC = gui.c gui_motif.c gui_x11.c gui_beval.c gui_xmdlg.c gui_xmebw.c |
194 GUI_OBJ = gui.obj gui_motif.obj gui_x11.obj gui_beval.obj gui_xmdlg.obj gui_xmebw.obj | |
7 | 195 GUI_INC = |
196 .ENDIF | |
197 | |
198 # You need to define these variables if you do not have DECW files | |
199 # at standard location | |
200 GUI_INC_DIR = ,decw$include: | |
201 # GUI_LIB_DIR = ,sys$library: | |
202 | |
203 .ELSE | |
204 # Character terminal only executable | |
33888
cb88e5c589d0
patch 9.0.2153: no support to build on OpenVMS
Christian Brabandt <cb@256bit.org>
parents:
31335
diff
changeset
|
205 DEFS = ,"HAVE_CONFIG_H" |
7 | 206 LIBS = |
207 .ENDIF | |
208 | |
209 .IFDEF VIM_PERL | |
210 # Perl related setup. | |
211 PERL = perl | |
212 PERL_DEF = ,"FEAT_PERL" | |
213 PERL_SRC = if_perlsfio.c if_perl.xs | |
214 PERL_OBJ = if_perlsfio.obj if_perl.obj | |
215 PERL_LIB = ,OS_VMS_PERL.OPT/OPT | |
216 PERL_INC = ,dka0:[perlbuild.perl.lib.vms_axp.5_6_1.core] | |
217 .ENDIF | |
218 | |
219 .IFDEF VIM_PYTHON | |
220 # Python related setup. | |
221 PYTHON_DEF = ,"FEAT_PYTHON" | |
222 PYTHON_SRC = if_python.c | |
223 PYTHON_OBJ = if_python.obj | |
224 PYTHON_LIB = ,OS_VMS_PYTHON.OPT/OPT | |
225 PYTHON_INC = ,PYTHON_INCLUDE | |
226 .ENDIF | |
227 | |
34072
6d9e20b403e8
patch 9.1.0005: OpenVMS does not support python3 and xterm_save
Christian Brabandt <cb@256bit.org>
parents:
33988
diff
changeset
|
228 .IFDEF VIM_PYTHON3 |
6d9e20b403e8
patch 9.1.0005: OpenVMS does not support python3 and xterm_save
Christian Brabandt <cb@256bit.org>
parents:
33988
diff
changeset
|
229 # Python related setup. |
6d9e20b403e8
patch 9.1.0005: OpenVMS does not support python3 and xterm_save
Christian Brabandt <cb@256bit.org>
parents:
33988
diff
changeset
|
230 PYTHON3_DEF = ,"FEAT_PYTHON3" |
6d9e20b403e8
patch 9.1.0005: OpenVMS does not support python3 and xterm_save
Christian Brabandt <cb@256bit.org>
parents:
33988
diff
changeset
|
231 PYTHON3_SRC = if_python3.c |
6d9e20b403e8
patch 9.1.0005: OpenVMS does not support python3 and xterm_save
Christian Brabandt <cb@256bit.org>
parents:
33988
diff
changeset
|
232 PYTHON3_OBJ = if_python3.obj |
6d9e20b403e8
patch 9.1.0005: OpenVMS does not support python3 and xterm_save
Christian Brabandt <cb@256bit.org>
parents:
33988
diff
changeset
|
233 PYTHON3_LIB = ,OS_VMS_PYTHON3.OPT/OPT |
6d9e20b403e8
patch 9.1.0005: OpenVMS does not support python3 and xterm_save
Christian Brabandt <cb@256bit.org>
parents:
33988
diff
changeset
|
234 PYTHON3_INC = ,PYTHON3_INCLUDE |
6d9e20b403e8
patch 9.1.0005: OpenVMS does not support python3 and xterm_save
Christian Brabandt <cb@256bit.org>
parents:
33988
diff
changeset
|
235 .ENDIF |
6d9e20b403e8
patch 9.1.0005: OpenVMS does not support python3 and xterm_save
Christian Brabandt <cb@256bit.org>
parents:
33988
diff
changeset
|
236 |
6d9e20b403e8
patch 9.1.0005: OpenVMS does not support python3 and xterm_save
Christian Brabandt <cb@256bit.org>
parents:
33988
diff
changeset
|
237 |
7 | 238 .IFDEF VIM_TCL |
239 # TCL related setup. | |
240 TCL_DEF = ,"FEAT_TCL" | |
241 TCL_SRC = if_tcl.c | |
242 TCL_OBJ = if_tcl.obj | |
243 TCL_LIB = ,OS_VMS_TCL.OPT/OPT | |
244 TCL_INC = ,dka0:[tcl80.generic] | |
245 .ENDIF | |
246 | |
247 .IFDEF VIM_RUBY | |
248 # RUBY related setup. | |
249 RUBY_DEF = ,"FEAT_RUBY" | |
250 RUBY_SRC = if_ruby.c | |
251 RUBY_OBJ = if_ruby.obj | |
252 RUBY_LIB = ,OS_VMS_RUBY.OPT/OPT | |
253 RUBY_INC = | |
254 .ENDIF | |
255 | |
23503
49d866e9b439
patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents:
23408
diff
changeset
|
256 .IFDEF VIM_LUA |
49d866e9b439
patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents:
23408
diff
changeset
|
257 # LUA related setup. |
49d866e9b439
patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents:
23408
diff
changeset
|
258 LUA_DEF = ,"FEAT_LUA" |
49d866e9b439
patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents:
23408
diff
changeset
|
259 LUA_SRC = if_lua.c |
49d866e9b439
patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents:
23408
diff
changeset
|
260 LUA_OBJ = if_lua.obj |
49d866e9b439
patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents:
23408
diff
changeset
|
261 LUA_LIB = ,OS_VMS_LUA.OPT/OPT |
49d866e9b439
patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents:
23408
diff
changeset
|
262 LUA_INC = ,LUA$ROOT:[INCLUDE] |
49d866e9b439
patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents:
23408
diff
changeset
|
263 .ENDIF |
49d866e9b439
patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents:
23408
diff
changeset
|
264 |
7 | 265 .IFDEF VIM_XIM |
266 # XIM related setup. | |
267 .IFDEF GUI | |
268 XIM_DEF = ,"FEAT_XIM" | |
269 .ENDIF | |
270 .ENDIF | |
271 | |
2441
620a42739426
Improvements for VMS. (Zoltan Arpadffy)
Bram Moolenaar <bram@vim.org>
parents:
2428
diff
changeset
|
272 .IFDEF VIM_MZSCHEME |
620a42739426
Improvements for VMS. (Zoltan Arpadffy)
Bram Moolenaar <bram@vim.org>
parents:
2428
diff
changeset
|
273 # MZSCHEME related setup |
34072
6d9e20b403e8
patch 9.1.0005: OpenVMS does not support python3 and xterm_save
Christian Brabandt <cb@256bit.org>
parents:
33988
diff
changeset
|
274 MZSCHEME_DEF = ,"FEAT_MZSCHEME" |
6d9e20b403e8
patch 9.1.0005: OpenVMS does not support python3 and xterm_save
Christian Brabandt <cb@256bit.org>
parents:
33988
diff
changeset
|
275 MZSCHEME_SRC = if_mzsch.c |
6d9e20b403e8
patch 9.1.0005: OpenVMS does not support python3 and xterm_save
Christian Brabandt <cb@256bit.org>
parents:
33988
diff
changeset
|
276 MZSCHEME_OBJ = if_mzsch.obj |
2441
620a42739426
Improvements for VMS. (Zoltan Arpadffy)
Bram Moolenaar <bram@vim.org>
parents:
2428
diff
changeset
|
277 .ENDIF |
7 | 278 |
5704 | 279 .IFDEF VIM_ICONV |
280 # ICONV related setup | |
281 ICONV_DEF = ,"USE_ICONV" | |
282 .ENDIF | |
283 | |
15517
2ad5f0ffaa2e
patch 8.1.0766: various problems when using Vim on VMS
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
284 # XDIFF related setup. |
2ad5f0ffaa2e
patch 8.1.0766: various problems when using Vim on VMS
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
285 XDIFF_SRC = xdiffi.c,xemit.c,xprepare.c,xutils.c,xhistogram.c,xpatience.c |
23503
49d866e9b439
patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents:
23408
diff
changeset
|
286 XDIFF_OBJ = xdiffi.obj,xemit.obj,xprepare.obj,xutils.obj,xhistogram.obj,xpatience.obj |
15517
2ad5f0ffaa2e
patch 8.1.0766: various problems when using Vim on VMS
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
287 XDIFF_INC = ,[.xdiff] |
2ad5f0ffaa2e
patch 8.1.0766: various problems when using Vim on VMS
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
288 |
34072
6d9e20b403e8
patch 9.1.0005: OpenVMS does not support python3 and xterm_save
Christian Brabandt <cb@256bit.org>
parents:
33988
diff
changeset
|
289 .IFDEF MODIFIED_BY |
33888
cb88e5c589d0
patch 9.0.2153: no support to build on OpenVMS
Christian Brabandt <cb@256bit.org>
parents:
31335
diff
changeset
|
290 DEF_MODIFIED = YES |
cb88e5c589d0
patch 9.0.2153: no support to build on OpenVMS
Christian Brabandt <cb@256bit.org>
parents:
31335
diff
changeset
|
291 .ELSE |
cb88e5c589d0
patch 9.0.2153: no support to build on OpenVMS
Christian Brabandt <cb@256bit.org>
parents:
31335
diff
changeset
|
292 DEF_MODIFIED = NO |
cb88e5c589d0
patch 9.0.2153: no support to build on OpenVMS
Christian Brabandt <cb@256bit.org>
parents:
31335
diff
changeset
|
293 .ENDIF |
cb88e5c589d0
patch 9.0.2153: no support to build on OpenVMS
Christian Brabandt <cb@256bit.org>
parents:
31335
diff
changeset
|
294 |
7 | 295 ###################################################################### |
296 # End of configuration section. | |
297 # Please, do not change anything below without programming experience. | |
298 ###################################################################### | |
299 | |
33888
cb88e5c589d0
patch 9.0.2153: no support to build on OpenVMS
Christian Brabandt <cb@256bit.org>
parents:
31335
diff
changeset
|
300 MODEL_DEF = "FEAT_$(MODEL)" |
7 | 301 |
302 # These go into pathdef.c | |
303 VIMUSER = "''F$EDIT(F$GETJPI(" ","USERNAME"),"TRIM")'" | |
304 VIMHOST = "''F$TRNLNM("SYS$NODE")'''F$TRNLNM("UCX$INET_HOST")'.''F$TRNLNM("UCX$INET_DOMAIN")'" | |
305 | |
306 .SUFFIXES : .obj .c | |
307 | |
34072
6d9e20b403e8
patch 9.1.0005: OpenVMS does not support python3 and xterm_save
Christian Brabandt <cb@256bit.org>
parents:
33988
diff
changeset
|
308 ALL_CFLAGS = /def=($(MODEL_DEF)$(DEFS)$(DEBUG_DEF)$(PERL_DEF)$(PYTHON_DEF)$(PYTHON3_DEF) - |
6d9e20b403e8
patch 9.1.0005: OpenVMS does not support python3 and xterm_save
Christian Brabandt <cb@256bit.org>
parents:
33988
diff
changeset
|
309 $(TCL_DEF)$(RUBY_DEF)$(LUA_DEF)$(XIM_DEF)$(TAG_DEF)$(MZSCHEME_DEF) - |
33888
cb88e5c589d0
patch 9.0.2153: no support to build on OpenVMS
Christian Brabandt <cb@256bit.org>
parents:
31335
diff
changeset
|
310 $(ICONV_DEF)$(ARCH_DEF)) - |
7 | 311 $(CFLAGS)$(GUI_FLAG) - |
34072
6d9e20b403e8
patch 9.1.0005: OpenVMS does not support python3 and xterm_save
Christian Brabandt <cb@256bit.org>
parents:
33988
diff
changeset
|
312 /include=($(C_INC)$(GUI_INC_DIR)$(GUI_INC)$(PERL_INC)$(PYTHON_INC)$(PYTHON3_INC) - |
15517
2ad5f0ffaa2e
patch 8.1.0766: various problems when using Vim on VMS
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
313 $(TCL_INC)$(XDIFF_INC)$(XPM_INC)) |
7 | 314 |
315 # CFLAGS displayed in :ver information | |
19195
2ef19eed524a
patch 8.2.0156: various typos in source files and tests
Bram Moolenaar <Bram@vim.org>
parents:
18884
diff
changeset
|
316 # It is specially formatted for correct display of unix like includes |
7 | 317 # as $(GUI_INC) - replaced with $(GUI_INC_VER) |
318 # Otherwise should not be any other difference. | |
34072
6d9e20b403e8
patch 9.1.0005: OpenVMS does not support python3 and xterm_save
Christian Brabandt <cb@256bit.org>
parents:
33988
diff
changeset
|
319 ALL_CFLAGS_VER = /def=($(MODEL_DEF)$(DEFS)$(DEBUG_DEF)$(PERL_DEF)$(PYTHON_DEF)$(PYTHON3_DEF) - |
6d9e20b403e8
patch 9.1.0005: OpenVMS does not support python3 and xterm_save
Christian Brabandt <cb@256bit.org>
parents:
33988
diff
changeset
|
320 $(TCL_DEF)$(RUBY_DEF)$(LUA_DEF)$(XIM_DEF)$(TAG_DEF)$(MZSCHEME_DEF) - |
33888
cb88e5c589d0
patch 9.0.2153: no support to build on OpenVMS
Christian Brabandt <cb@256bit.org>
parents:
31335
diff
changeset
|
321 $(ICONV_DEF)$(ARCH_DEF)) - |
7 | 322 $(CFLAGS)$(GUI_FLAG) - |
34072
6d9e20b403e8
patch 9.1.0005: OpenVMS does not support python3 and xterm_save
Christian Brabandt <cb@256bit.org>
parents:
33988
diff
changeset
|
323 /include=($(C_INC)$(GUI_INC_DIR)$(GUI_INC_VER)$(PERL_INC)$(PYTHON_INC)$(PYTHON3_INC) - |
15517
2ad5f0ffaa2e
patch 8.1.0766: various problems when using Vim on VMS
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
324 $(TCL_INC)$(XDIFF_INC)$(XPM_INC)) |
7 | 325 |
23408
bdda90ed5f6c
patch 8.2.2247: VMS: various smaller problems
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
326 ALL_LIBS = $(LIBS) $(GUI_LIB_DIR) $(GUI_LIB) $(XPM_LIB)\ |
34072
6d9e20b403e8
patch 9.1.0005: OpenVMS does not support python3 and xterm_save
Christian Brabandt <cb@256bit.org>
parents:
33988
diff
changeset
|
327 $(PERL_LIB) $(PYTHON_LIB) $(PYTHON3_LIB) $(TCL_LIB) $(RUBY_LIB) $(LUA_LIB) |
7 | 328 |
18199
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
329 SRC = \ |
25529
bb1097899693
patch 8.2.3301: memory allocation functions don't have their own place
Bram Moolenaar <Bram@vim.org>
parents:
25206
diff
changeset
|
330 alloc.c \ |
18199
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
331 arabic.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
332 arglist.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
333 autocmd.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
334 beval.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
335 blob.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
336 blowfish.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
337 buffer.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
338 bufwrite.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
339 change.c \ |
33888
cb88e5c589d0
patch 9.0.2153: no support to build on OpenVMS
Christian Brabandt <cb@256bit.org>
parents:
31335
diff
changeset
|
340 channel.c \ |
18199
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
341 charset.c \ |
18265
fe5afdc03bd2
patch 8.1.2127: the indent.c file is a bit big
Bram Moolenaar <Bram@vim.org>
parents:
18199
diff
changeset
|
342 cindent.c \ |
19920
5e41b2e63c73
patch 8.2.0516: client-server code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
19774
diff
changeset
|
343 clientserver.c \ |
19774
00a1b89256ea
patch 8.2.0443: clipboard code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
19396
diff
changeset
|
344 clipboard.c \ |
18199
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
345 cmdexpand.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
346 cmdhist.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
347 crypt.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
348 crypt_zip.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
349 debugger.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
350 dict.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
351 diff.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
352 digraph.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
353 drawline.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
354 drawscreen.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
355 edit.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
356 eval.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
357 evalbuffer.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
358 evalfunc.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
359 evalvars.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
360 evalwindow.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
361 ex_cmds.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
362 ex_cmds2.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
363 ex_docmd.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
364 ex_eval.c \ |
18010
cf8e0c7e0cb9
patch 8.1.2001: some source files are too big
Bram Moolenaar <Bram@vim.org>
parents:
17966
diff
changeset
|
365 ex_getln.c \ |
18199
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
366 fileio.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
367 filepath.c, \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
368 findfile.c \ |
24780
7bc92a651472
patch 8.2.2928: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
23503
diff
changeset
|
369 float.c \ |
18199
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
370 fold.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
371 getchar.c \ |
20637
6c5b11458f31
patch 8.2.0872: XIM code is mixed with multi-byte code
Bram Moolenaar <Bram@vim.org>
parents:
20587
diff
changeset
|
372 gui_xim.c \ |
18199
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
373 hardcopy.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
374 hashtab.c \ |
21423
5db63c2c6929
patch 8.2.1262: src/ex_cmds.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
21054
diff
changeset
|
375 help.c \ |
18199
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
376 highlight.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
377 if_cscope.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
378 if_xcmdsrv.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
379 indent.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
380 insexpand.c \ |
33888
cb88e5c589d0
patch 9.0.2153: no support to build on OpenVMS
Christian Brabandt <cb@256bit.org>
parents:
31335
diff
changeset
|
381 job.c \ |
18199
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
382 json.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
383 list.c \ |
21437
b32b67a108f2
patch 8.2.1269: language and locale code spread out
Bram Moolenaar <Bram@vim.org>
parents:
21423
diff
changeset
|
384 locale.c \ |
31287
fa309d9af73c
patch 9.0.0977: it is not easy to see what client-server commands are doing
Bram Moolenaar <Bram@vim.org>
parents:
30731
diff
changeset
|
385 logfile.c \ |
18199
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
386 main.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
387 map.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
388 mark.c \ |
21054
b1fac55cf8a3
patch 8.2.1078: highlight and match functionality together in one file
Bram Moolenaar <Bram@vim.org>
parents:
20637
diff
changeset
|
389 match.c \ |
18199
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
390 mbyte.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
391 memfile.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
392 memline.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
393 menu.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
394 message.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
395 misc1.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
396 misc2.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
397 mouse.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
398 move.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
399 normal.c \ |
18135
1868ec23360e
patch 8.1.2062: the mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18124
diff
changeset
|
400 ops.c \ |
18199
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
401 option.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
402 optionstr.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
403 os_unix.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
404 os_vms.c \ |
17744
4a3dca734d36
patch 8.1.1869: code for the argument list is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17652
diff
changeset
|
405 pathdef.c \ |
18199
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
406 popupmenu.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
407 popupwin.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
408 profiler.c \ |
33888
cb88e5c589d0
patch 9.0.2153: no support to build on OpenVMS
Christian Brabandt <cb@256bit.org>
parents:
31335
diff
changeset
|
409 pty.c \ |
18199
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
410 quickfix.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
411 regexp.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
412 register.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
413 screen.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
414 scriptfile.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
415 search.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
416 session.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
417 sha256.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
418 sign.c \ |
33888
cb88e5c589d0
patch 9.0.2153: no support to build on OpenVMS
Christian Brabandt <cb@256bit.org>
parents:
31335
diff
changeset
|
419 sound.c \ |
18199
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
420 spell.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
421 spellfile.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
422 spellsuggest.c \ |
25206
dc66d0284518
patch 8.2.3139: functions for string manipulation are spread out
Bram Moolenaar <Bram@vim.org>
parents:
24780
diff
changeset
|
423 strings.c \ |
18199
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
424 syntax.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
425 tag.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
426 term.c \ |
33888
cb88e5c589d0
patch 9.0.2153: no support to build on OpenVMS
Christian Brabandt <cb@256bit.org>
parents:
31335
diff
changeset
|
427 terminal.c \ |
18199
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
428 termlib.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
429 testing.c \ |
20237
918245588b50
patch 8.2.0674: some source files are too big
Bram Moolenaar <Bram@vim.org>
parents:
20209
diff
changeset
|
430 textformat.c \ |
20209
6ca6a372fef6
patch 8.2.0660: the search.c file is a bit big
Bram Moolenaar <Bram@vim.org>
parents:
19920
diff
changeset
|
431 textobject.c \ |
18199
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
432 textprop.c \ |
19396
a961efb326e5
patch 8.2.0256: time and timer related code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
19394
diff
changeset
|
433 time.c \ |
20587
f502455965c0
patch 8.2.0847: typval related code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
20237
diff
changeset
|
434 typval.c \ |
18199
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
435 ui.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
436 undo.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
437 usercmd.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
438 userfunc.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
439 version.c \ |
31335
5acc0d2cf4f7
patch 9.0.1001: classes are not documented or implemented yet
Bram Moolenaar <Bram@vim.org>
parents:
31287
diff
changeset
|
440 vim9class.c \ |
26662
4b23672d1f0e
patch 8.2.3860: Vim9: codecov struggles with the file size
Bram Moolenaar <Bram@vim.org>
parents:
26177
diff
changeset
|
441 vim9cmds.c \ |
19394
4d4c489e8be1
patch 8.2.0255: VMS: missing files in build
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
442 vim9compile.c \ |
4d4c489e8be1
patch 8.2.0255: VMS: missing files in build
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
443 vim9execute.c \ |
26662
4b23672d1f0e
patch 8.2.3860: Vim9: codecov struggles with the file size
Bram Moolenaar <Bram@vim.org>
parents:
26177
diff
changeset
|
444 vim9expr.c \ |
4b23672d1f0e
patch 8.2.3860: Vim9: codecov struggles with the file size
Bram Moolenaar <Bram@vim.org>
parents:
26177
diff
changeset
|
445 vim9instr.c \ |
19394
4d4c489e8be1
patch 8.2.0255: VMS: missing files in build
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
446 vim9script.c \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
447 vim9type.c \ |
18199
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
448 viminfo.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
449 window.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
450 $(GUI_SRC) \ |
34072
6d9e20b403e8
patch 9.1.0005: OpenVMS does not support python3 and xterm_save
Christian Brabandt <cb@256bit.org>
parents:
33988
diff
changeset
|
451 $(XDIFF_SRC) \ |
6d9e20b403e8
patch 9.1.0005: OpenVMS does not support python3 and xterm_save
Christian Brabandt <cb@256bit.org>
parents:
33988
diff
changeset
|
452 $(LUA_SRC) \ |
6d9e20b403e8
patch 9.1.0005: OpenVMS does not support python3 and xterm_save
Christian Brabandt <cb@256bit.org>
parents:
33988
diff
changeset
|
453 $(MZSCHEME_SRC) \ |
18199
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
454 $(PERL_SRC) \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
455 $(PYTHON_SRC) \ |
34072
6d9e20b403e8
patch 9.1.0005: OpenVMS does not support python3 and xterm_save
Christian Brabandt <cb@256bit.org>
parents:
33988
diff
changeset
|
456 $(PYTHON3_SRC) \ |
18199
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
457 $(TCL_SRC) \ |
34072
6d9e20b403e8
patch 9.1.0005: OpenVMS does not support python3 and xterm_save
Christian Brabandt <cb@256bit.org>
parents:
33988
diff
changeset
|
458 $(RUBY_SRC) |
7 | 459 |
18199
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
460 OBJ = \ |
25529
bb1097899693
patch 8.2.3301: memory allocation functions don't have their own place
Bram Moolenaar <Bram@vim.org>
parents:
25206
diff
changeset
|
461 alloc.obj \ |
18199
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
462 arabic.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
463 arglist.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
464 autocmd.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
465 beval.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
466 blob.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
467 blowfish.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
468 buffer.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
469 bufwrite.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
470 change.obj \ |
33888
cb88e5c589d0
patch 9.0.2153: no support to build on OpenVMS
Christian Brabandt <cb@256bit.org>
parents:
31335
diff
changeset
|
471 channel.obj \ |
18199
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
472 charset.obj \ |
18265
fe5afdc03bd2
patch 8.1.2127: the indent.c file is a bit big
Bram Moolenaar <Bram@vim.org>
parents:
18199
diff
changeset
|
473 cindent.obj \ |
19920
5e41b2e63c73
patch 8.2.0516: client-server code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
19774
diff
changeset
|
474 clientserver.obj \ |
19774
00a1b89256ea
patch 8.2.0443: clipboard code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
19396
diff
changeset
|
475 clipboard.obj \ |
18199
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
476 cmdexpand.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
477 cmdhist.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
478 crypt.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
479 crypt_zip.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
480 debugger.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
481 dict.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
482 diff.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
483 digraph.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
484 drawline.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
485 drawscreen.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
486 edit.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
487 eval.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
488 evalbuffer.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
489 evalfunc.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
490 evalvars.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
491 evalwindow.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
492 ex_cmds.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
493 ex_cmds2.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
494 ex_docmd.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
495 ex_eval.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
496 ex_getln.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
497 fileio.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
498 filepath.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
499 findfile.obj \ |
24780
7bc92a651472
patch 8.2.2928: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
23503
diff
changeset
|
500 float.obj \ |
18199
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
501 fold.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
502 getchar.obj \ |
20637
6c5b11458f31
patch 8.2.0872: XIM code is mixed with multi-byte code
Bram Moolenaar <Bram@vim.org>
parents:
20587
diff
changeset
|
503 gui_xim.obj \ |
18199
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
504 hardcopy.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
505 hashtab.obj \ |
21423
5db63c2c6929
patch 8.2.1262: src/ex_cmds.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
21054
diff
changeset
|
506 help.obj \ |
18199
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
507 highlight.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
508 if_cscope.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
509 if_mzsch.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
510 if_xcmdsrv.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
511 indent.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
512 insexpand.obj \ |
33888
cb88e5c589d0
patch 9.0.2153: no support to build on OpenVMS
Christian Brabandt <cb@256bit.org>
parents:
31335
diff
changeset
|
513 job.obj \ |
18199
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
514 json.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
515 list.obj \ |
21437
b32b67a108f2
patch 8.2.1269: language and locale code spread out
Bram Moolenaar <Bram@vim.org>
parents:
21423
diff
changeset
|
516 locale.obj \ |
31287
fa309d9af73c
patch 9.0.0977: it is not easy to see what client-server commands are doing
Bram Moolenaar <Bram@vim.org>
parents:
30731
diff
changeset
|
517 logfile.obj \ |
18199
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
518 main.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
519 map.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
520 mark.obj \ |
21054
b1fac55cf8a3
patch 8.2.1078: highlight and match functionality together in one file
Bram Moolenaar <Bram@vim.org>
parents:
20637
diff
changeset
|
521 match.obj \ |
18199
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
522 mbyte.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
523 memfile.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
524 memline.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
525 menu.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
526 message.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
527 misc1.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
528 misc2.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
529 mouse.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
530 move.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
531 normal.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
532 ops.obj \ |
18135
1868ec23360e
patch 8.1.2062: the mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18124
diff
changeset
|
533 option.obj \ |
18199
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
534 optionstr.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
535 os_unix.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
536 os_vms.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
537 pathdef.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
538 popupmenu.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
539 popupwin.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
540 profiler.obj \ |
33888
cb88e5c589d0
patch 9.0.2153: no support to build on OpenVMS
Christian Brabandt <cb@256bit.org>
parents:
31335
diff
changeset
|
541 pty.obj \ |
18199
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
542 quickfix.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
543 regexp.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
544 register.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
545 screen.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
546 scriptfile.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
547 search.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
548 session.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
549 sha256.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
550 sign.obj \ |
33888
cb88e5c589d0
patch 9.0.2153: no support to build on OpenVMS
Christian Brabandt <cb@256bit.org>
parents:
31335
diff
changeset
|
551 sound.obj \ |
18199
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
552 spell.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
553 spellfile.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
554 spellsuggest.obj \ |
25206
dc66d0284518
patch 8.2.3139: functions for string manipulation are spread out
Bram Moolenaar <Bram@vim.org>
parents:
24780
diff
changeset
|
555 strings.obj \ |
18199
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
556 syntax.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
557 tag.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
558 term.obj \ |
33888
cb88e5c589d0
patch 9.0.2153: no support to build on OpenVMS
Christian Brabandt <cb@256bit.org>
parents:
31335
diff
changeset
|
559 terminal.obj \ |
18199
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
560 termlib.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
561 testing.obj \ |
20237
918245588b50
patch 8.2.0674: some source files are too big
Bram Moolenaar <Bram@vim.org>
parents:
20209
diff
changeset
|
562 textformat.obj \ |
20209
6ca6a372fef6
patch 8.2.0660: the search.c file is a bit big
Bram Moolenaar <Bram@vim.org>
parents:
19920
diff
changeset
|
563 textobject.obj \ |
18172
6e53d83e021d
patch 8.1.2081: the spell.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18164
diff
changeset
|
564 textprop.obj \ |
19396
a961efb326e5
patch 8.2.0256: time and timer related code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
19394
diff
changeset
|
565 time.obj \ |
20587
f502455965c0
patch 8.2.0847: typval related code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
20237
diff
changeset
|
566 typval.obj \ |
18199
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
567 ui.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
568 undo.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
569 usercmd.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
570 userfunc.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
571 version.obj \ |
31335
5acc0d2cf4f7
patch 9.0.1001: classes are not documented or implemented yet
Bram Moolenaar <Bram@vim.org>
parents:
31287
diff
changeset
|
572 vim9class.obj \ |
26662
4b23672d1f0e
patch 8.2.3860: Vim9: codecov struggles with the file size
Bram Moolenaar <Bram@vim.org>
parents:
26177
diff
changeset
|
573 vim9cmds.obj \ |
19394
4d4c489e8be1
patch 8.2.0255: VMS: missing files in build
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
574 vim9compile.obj \ |
4d4c489e8be1
patch 8.2.0255: VMS: missing files in build
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
575 vim9execute.obj \ |
26662
4b23672d1f0e
patch 8.2.3860: Vim9: codecov struggles with the file size
Bram Moolenaar <Bram@vim.org>
parents:
26177
diff
changeset
|
576 vim9expr.obj \ |
4b23672d1f0e
patch 8.2.3860: Vim9: codecov struggles with the file size
Bram Moolenaar <Bram@vim.org>
parents:
26177
diff
changeset
|
577 vim9instr.obj \ |
19394
4d4c489e8be1
patch 8.2.0255: VMS: missing files in build
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
578 vim9script.obj \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
579 vim9type.obj \ |
18199
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
580 viminfo.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
581 window.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
582 $(GUI_OBJ) \ |
34072
6d9e20b403e8
patch 9.1.0005: OpenVMS does not support python3 and xterm_save
Christian Brabandt <cb@256bit.org>
parents:
33988
diff
changeset
|
583 $(XDIFF_OBJ) \ |
6d9e20b403e8
patch 9.1.0005: OpenVMS does not support python3 and xterm_save
Christian Brabandt <cb@256bit.org>
parents:
33988
diff
changeset
|
584 $(LUA_OBJ) \ |
6d9e20b403e8
patch 9.1.0005: OpenVMS does not support python3 and xterm_save
Christian Brabandt <cb@256bit.org>
parents:
33988
diff
changeset
|
585 $(MZSCHEME_OBJ) \ |
18199
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
586 $(PERL_OBJ) \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
587 $(PYTHON_OBJ) \ |
34072
6d9e20b403e8
patch 9.1.0005: OpenVMS does not support python3 and xterm_save
Christian Brabandt <cb@256bit.org>
parents:
33988
diff
changeset
|
588 $(PYTHON3_OBJ) \ |
18199
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
589 $(TCL_OBJ) \ |
34072
6d9e20b403e8
patch 9.1.0005: OpenVMS does not support python3 and xterm_save
Christian Brabandt <cb@256bit.org>
parents:
33988
diff
changeset
|
590 $(RUBY_OBJ) |
7 | 591 |
592 # Default target is making the executable | |
23503
49d866e9b439
patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents:
23408
diff
changeset
|
593 all : [.auto]config.h mmk_compat motif_env gtk_env perl_env python_env tcl_env ruby_env lua_env $(TARGET) |
7 | 594 ! $@ |
595 | |
596 [.auto]config.h : $(CONFIG_H) | |
597 copy/nolog $(CONFIG_H) [.auto]config.h | |
33888
cb88e5c589d0
patch 9.0.2153: no support to build on OpenVMS
Christian Brabandt <cb@256bit.org>
parents:
31335
diff
changeset
|
598 -@ open/append ac [.auto]config.h |
cb88e5c589d0
patch 9.0.2153: no support to build on OpenVMS
Christian Brabandt <cb@256bit.org>
parents:
31335
diff
changeset
|
599 -@ hash[0,8]=35 |
cb88e5c589d0
patch 9.0.2153: no support to build on OpenVMS
Christian Brabandt <cb@256bit.org>
parents:
31335
diff
changeset
|
600 -@ quotes[0,8]=34 |
cb88e5c589d0
patch 9.0.2153: no support to build on OpenVMS
Christian Brabandt <cb@256bit.org>
parents:
31335
diff
changeset
|
601 -@ if ""$(DEF_MODIFIED)"" .EQS. "YES" then write ac ''hash',"define MODIFIED_BY ",''quotes',$(MODIFIED_BY),''quotes' |
cb88e5c589d0
patch 9.0.2153: no support to build on OpenVMS
Christian Brabandt <cb@256bit.org>
parents:
31335
diff
changeset
|
602 -@ close ac |
7 | 603 |
604 mmk_compat : | |
605 -@ open/write pd pathdef.c | |
606 -@ write pd "/* Empty file to satisfy MMK depend. */" | |
1221 | 607 -@ write pd "/* It will be overwritten later on... */" |
7 | 608 -@ close pd |
609 clean : | |
610 -@ if "''F$SEARCH("*.exe")'" .NES. "" then delete/noconfirm/nolog *.exe;* | |
611 -@ if "''F$SEARCH("*.obj")'" .NES. "" then delete/noconfirm/nolog *.obj;* | |
612 -@ if "''F$SEARCH("[.auto]config.h")'" .NES. "" then delete/noconfirm/nolog [.auto]config.h;* | |
613 -@ if "''F$SEARCH("pathdef.c")'" .NES. "" then delete/noconfirm/nolog pathdef.c;* | |
614 -@ if "''F$SEARCH("if_perl.c")'" .NES. "" then delete/noconfirm/nolog if_perl.c;* | |
615 -@ if "''F$SEARCH("*.opt")'" .NES. "" then delete/noconfirm/nolog *.opt;* | |
23408
bdda90ed5f6c
patch 8.2.2247: VMS: various smaller problems
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
616 -@ if "''F$SEARCH("*.dmp")'" .NES. "" then delete/noconfirm/nolog *.dmp;* |
7 | 617 |
618 # Link the target | |
619 $(TARGET) : $(OBJ) | |
18761
e3785af3ba0f
patch 8.1.2370: build problems on VMS
Bram Moolenaar <Bram@vim.org>
parents:
18673
diff
changeset
|
620 # make an OPT file - as the obj file list is too long for one command line |
e3785af3ba0f
patch 8.1.2370: build problems on VMS
Bram Moolenaar <Bram@vim.org>
parents:
18673
diff
changeset
|
621 -@ DIRECTORY *.OBJ. /BRIEF/COLUMNS=1/NOHEADING/NOTRAILING /SELECT=FILE=(NONODE,NODEVICE,NODIRECTORY,NOVERSION)/OUTPUT=ALL_OBJS_LIST.OPT |
e3785af3ba0f
patch 8.1.2370: build problems on VMS
Bram Moolenaar <Bram@vim.org>
parents:
18673
diff
changeset
|
622 $(LD_DEF) $(LDFLAGS) /exe=$(TARGET) ALL_OBJS_LIST.OPT/OPT $(ALL_LIBS) |
7 | 623 |
624 .c.obj : | |
625 $(CC_DEF) $(ALL_CFLAGS) $< | |
626 | |
627 pathdef.c : check_ccver $(CONFIG_H) | |
628 -@ write sys$output "creating PATHDEF.C file." | |
629 -@ open/write pd pathdef.c | |
630 -@ write pd "/* pathdef.c -- DO NOT EDIT! */" | |
631 -@ write pd "/* This file is automatically created by MAKE_VMS.MMS" | |
632 -@ write pd " * Change the file MAKE_VMS.MMS Only. */" | |
633 -@ write pd "typedef unsigned char char_u;" | |
634 -@ write pd "char_u *default_vim_dir = (char_u *)"$(VIMLOC)";" | |
635 -@ write pd "char_u *default_vimruntime_dir = (char_u *)"$(VIMRUN)";" | |
636 -@ write pd "char_u *all_cflags = (char_u *)""$(CC_DEF)$(ALL_CFLAGS_VER)"";" | |
18761
e3785af3ba0f
patch 8.1.2370: build problems on VMS
Bram Moolenaar <Bram@vim.org>
parents:
18673
diff
changeset
|
637 -@ write pd "char_u *all_lflags = (char_u *)""$(LD_DEF)$(LDFLAGS) /exe=$(TARGET) ALL_OBJS_LIST.OPT/OPT $(ALL_LIBS)"";" |
7 | 638 -@ write pd "char_u *compiler_version = (char_u *) ""''CC_VER'"";" |
639 -@ write pd "char_u *compiled_user = (char_u *) "$(VIMUSER)";" | |
1045 | 640 -@ write pd "char_u *compiled_sys = (char_u *) "$(VIMHOST)";" |
641 -@ write pd "char_u *compiled_arch = (char_u *) ""$(MMSARCH_NAME)"";" | |
7 | 642 -@ close pd |
643 | |
644 if_perl.c : if_perl.xs | |
18761
e3785af3ba0f
patch 8.1.2370: build problems on VMS
Bram Moolenaar <Bram@vim.org>
parents:
18673
diff
changeset
|
645 -@ $(PERL) PERL_ROOT:[LIB.ExtUtils]xsubpp -prototypes -typemap - PERL_ROOT:[LIB.ExtUtils]typemap if_perl.xs >> $@ |
7 | 646 |
647 make_vms.mms : | |
648 -@ write sys$output "The name of the makefile MUST be <MAKE_VMS.MMS> !!!" | |
649 | |
650 .IFDEF CCVER | |
651 # This part can make some complications if you're using some predefined | |
652 # symbols/flags for your compiler. If does, just comment out CCVER variable | |
653 check_ccver : | |
654 -@ define sys$output cc_ver.tmp | |
655 -@ $(CC_DEF)/version | |
656 -@ deassign sys$output | |
657 -@ open/read file cc_ver.tmp | |
658 -@ read file CC_VER | |
659 -@ close file | |
660 -@ delete/noconfirm/nolog cc_ver.tmp.* | |
661 .ELSE | |
662 check_ccver : | |
663 -@ ! | |
664 .ENDIF | |
665 | |
666 .IFDEF MOTIF | |
667 motif_env : | |
414 | 668 .IFDEF XPM |
669 -@ write sys$output "using DECW/Motif/XPM environment." | |
23408
bdda90ed5f6c
patch 8.2.2247: VMS: various smaller problems
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
670 -@ write sys$output "creating OS_VMS_XPM.OPT file." |
bdda90ed5f6c
patch 8.2.2247: VMS: various smaller problems
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
671 -@ open/write opt_file OS_VMS_XPM.OPT |
bdda90ed5f6c
patch 8.2.2247: VMS: various smaller problems
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
672 .IFDEF MMSVAX |
bdda90ed5f6c
patch 8.2.2247: VMS: various smaller problems
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
673 -@ write opt_file "[.xpm.vms.vax]libxpm.olb/lib" |
bdda90ed5f6c
patch 8.2.2247: VMS: various smaller problems
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
674 .ENDIF |
bdda90ed5f6c
patch 8.2.2247: VMS: various smaller problems
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
675 .IFDEF MMSALPHA |
bdda90ed5f6c
patch 8.2.2247: VMS: various smaller problems
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
676 -@ write opt_file "[.xpm.vms.axp]libxpm.olb/lib" |
bdda90ed5f6c
patch 8.2.2247: VMS: various smaller problems
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
677 .ENDIF |
bdda90ed5f6c
patch 8.2.2247: VMS: various smaller problems
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
678 .IFDEF MMSIA64 |
bdda90ed5f6c
patch 8.2.2247: VMS: various smaller problems
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
679 -@ write opt_file "[.xpm.vms.ia64]libxpm.olb/lib" |
23503
49d866e9b439
patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents:
23408
diff
changeset
|
680 .ENDIF |
23408
bdda90ed5f6c
patch 8.2.2247: VMS: various smaller problems
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
681 -@ close opt_file |
414 | 682 .ELSE |
856 | 683 -@ write sys$output "using DECW/Motif environment." |
414 | 684 .ENDIF |
7 | 685 -@ write sys$output "creating OS_VMS_MOTIF.OPT file." |
686 -@ open/write opt_file OS_VMS_MOTIF.OPT | |
687 -@ write opt_file "sys$share:decw$xmlibshr12.exe/share,-" | |
688 -@ write opt_file "sys$share:decw$xtlibshrr5.exe/share,-" | |
689 -@ write opt_file "sys$share:decw$xlibshr.exe/share" | |
690 -@ close opt_file | |
691 .ELSE | |
692 motif_env : | |
693 -@ ! | |
694 .ENDIF | |
695 | |
696 | |
697 .IFDEF GTK | |
698 gtk_env : | |
699 -@ write sys$output "using GTK environment:" | |
700 -@ define/nolog gtk_root /trans=conc $(GTK_DIR) | |
701 -@ show logical gtk_root | |
702 -@ write sys$output " include path: "$(GUI_INC)"" | |
703 -@ write sys$output "creating OS_VMS_GTK.OPT file." | |
704 -@ open/write opt_file OS_VMS_GTK.OPT | |
705 -@ write opt_file "gtk_root:[glib]libglib.exe /share,-" | |
706 -@ write opt_file "gtk_root:[glib.gmodule]libgmodule.exe /share,-" | |
707 -@ write opt_file "gtk_root:[gtk.gdk]libgdk.exe /share,-" | |
708 -@ write opt_file "gtk_root:[gtk.gtk]libgtk.exe /share,-" | |
709 -@ write opt_file "sys$share:decw$xmlibshr12.exe/share,-" | |
710 -@ write opt_file "sys$share:decw$xtlibshrr5.exe/share,-" | |
711 -@ write opt_file "sys$share:decw$xlibshr.exe/share" | |
712 -@ close opt_file | |
713 .ELSE | |
714 gtk_env : | |
715 -@ ! | |
716 .ENDIF | |
717 | |
718 .IFDEF VIM_PERL | |
719 perl_env : | |
720 -@ write sys$output "using PERL environment:" | |
721 -@ show logical PERLSHR | |
722 -@ write sys$output " include path: ""$(PERL_INC)""" | |
723 -@ show symbol perl | |
724 -@ open/write pd if_perl.c | |
725 -@ write pd "/* Empty file to satisfy MMK depend. */" | |
1221 | 726 -@ write pd "/* It will be overwritten later on... */" |
7 | 727 -@ close pd |
728 -@ write sys$output "creating OS_VMS_PERL.OPT file." | |
729 -@ open/write opt_file OS_VMS_PERL.OPT | |
730 -@ write opt_file "PERLSHR /share" | |
731 -@ close opt_file | |
732 .ELSE | |
733 perl_env : | |
734 -@ ! | |
735 .ENDIF | |
736 | |
737 .IFDEF VIM_PYTHON | |
738 python_env : | |
739 -@ write sys$output "using PYTHON environment:" | |
740 -@ show logical PYTHON_INCLUDE | |
741 -@ show logical PYTHON_OLB | |
742 -@ write sys$output "creating OS_VMS_PYTHON.OPT file." | |
743 -@ open/write opt_file OS_VMS_PYTHON.OPT | |
744 -@ write opt_file "PYTHON_OLB:PYTHON.OLB /share" | |
745 -@ close opt_file | |
746 .ELSE | |
747 python_env : | |
748 -@ ! | |
749 .ENDIF | |
750 | |
34072
6d9e20b403e8
patch 9.1.0005: OpenVMS does not support python3 and xterm_save
Christian Brabandt <cb@256bit.org>
parents:
33988
diff
changeset
|
751 .IFDEF VIM_PYTHON3 |
6d9e20b403e8
patch 9.1.0005: OpenVMS does not support python3 and xterm_save
Christian Brabandt <cb@256bit.org>
parents:
33988
diff
changeset
|
752 python3_env : |
6d9e20b403e8
patch 9.1.0005: OpenVMS does not support python3 and xterm_save
Christian Brabandt <cb@256bit.org>
parents:
33988
diff
changeset
|
753 -@ write sys$output "using PYTHON3 environment:" |
6d9e20b403e8
patch 9.1.0005: OpenVMS does not support python3 and xterm_save
Christian Brabandt <cb@256bit.org>
parents:
33988
diff
changeset
|
754 -@ show logical PYTHON3_INCLUDE |
6d9e20b403e8
patch 9.1.0005: OpenVMS does not support python3 and xterm_save
Christian Brabandt <cb@256bit.org>
parents:
33988
diff
changeset
|
755 -@ show logical PYTHON3_OLB |
6d9e20b403e8
patch 9.1.0005: OpenVMS does not support python3 and xterm_save
Christian Brabandt <cb@256bit.org>
parents:
33988
diff
changeset
|
756 -@ write sys$output "creating OS_VMS_PYTHON3.OPT file." |
6d9e20b403e8
patch 9.1.0005: OpenVMS does not support python3 and xterm_save
Christian Brabandt <cb@256bit.org>
parents:
33988
diff
changeset
|
757 -@ open/write opt_file OS_VMS_PYTHON3.OPT |
6d9e20b403e8
patch 9.1.0005: OpenVMS does not support python3 and xterm_save
Christian Brabandt <cb@256bit.org>
parents:
33988
diff
changeset
|
758 -@ write opt_file "PYTHON3_OLB:PYTHON3.OLB /share" |
6d9e20b403e8
patch 9.1.0005: OpenVMS does not support python3 and xterm_save
Christian Brabandt <cb@256bit.org>
parents:
33988
diff
changeset
|
759 -@ close opt_file |
6d9e20b403e8
patch 9.1.0005: OpenVMS does not support python3 and xterm_save
Christian Brabandt <cb@256bit.org>
parents:
33988
diff
changeset
|
760 .ELSE |
6d9e20b403e8
patch 9.1.0005: OpenVMS does not support python3 and xterm_save
Christian Brabandt <cb@256bit.org>
parents:
33988
diff
changeset
|
761 python3_env : |
6d9e20b403e8
patch 9.1.0005: OpenVMS does not support python3 and xterm_save
Christian Brabandt <cb@256bit.org>
parents:
33988
diff
changeset
|
762 -@ ! |
6d9e20b403e8
patch 9.1.0005: OpenVMS does not support python3 and xterm_save
Christian Brabandt <cb@256bit.org>
parents:
33988
diff
changeset
|
763 .ENDIF |
6d9e20b403e8
patch 9.1.0005: OpenVMS does not support python3 and xterm_save
Christian Brabandt <cb@256bit.org>
parents:
33988
diff
changeset
|
764 |
7 | 765 .IFDEF VIM_TCL |
766 tcl_env : | |
767 -@ write sys$output "using TCL environment:" | |
768 -@ show logical TCLSHR | |
769 -@ write sys$output " include path: ""$(TCL_INC)""" | |
770 -@ write sys$output "creating OS_VMS_TCL.OPT file." | |
771 -@ open/write opt_file OS_VMS_TCL.OPT | |
772 -@ write opt_file "TCLSHR /share" | |
773 -@ close opt_file | |
774 .ELSE | |
775 tcl_env : | |
776 -@ ! | |
777 .ENDIF | |
778 | |
779 .IFDEF VIM_RUBY | |
780 ruby_env : | |
781 -@ write sys$output "using RUBY environment:" | |
782 -@ write sys$output " include path: ""$(RUBY_INC)""" | |
783 -@ write sys$output "creating OS_VMS_RUBY.OPT file." | |
784 -@ open/write opt_file OS_VMS_RUBY.OPT | |
785 -@ write opt_file "RUBYSHR /share" | |
786 -@ close opt_file | |
787 .ELSE | |
788 ruby_env : | |
789 -@ ! | |
790 .ENDIF | |
791 | |
23503
49d866e9b439
patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents:
23408
diff
changeset
|
792 .IFDEF VIM_LUA |
49d866e9b439
patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents:
23408
diff
changeset
|
793 lua_env : |
49d866e9b439
patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents:
23408
diff
changeset
|
794 -@ write sys$output "using LUA environment:" |
49d866e9b439
patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents:
23408
diff
changeset
|
795 -@ write sys$output " include path: ""$(LUA_INC)""" |
49d866e9b439
patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents:
23408
diff
changeset
|
796 -@ write sys$output "creating OS_VMS_LUA.OPT file." |
49d866e9b439
patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents:
23408
diff
changeset
|
797 -@ open/write opt_file OS_VMS_LUA.OPT |
49d866e9b439
patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents:
23408
diff
changeset
|
798 -@ write opt_file "LUA$ROOT:[LIB]LUA$SHR.EXE /share" |
49d866e9b439
patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents:
23408
diff
changeset
|
799 -@ close opt_file |
49d866e9b439
patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents:
23408
diff
changeset
|
800 .ELSE |
49d866e9b439
patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents:
23408
diff
changeset
|
801 lua_env : |
49d866e9b439
patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents:
23408
diff
changeset
|
802 -@ ! |
49d866e9b439
patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents:
23408
diff
changeset
|
803 .ENDIF |
49d866e9b439
patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents:
23408
diff
changeset
|
804 |
25529
bb1097899693
patch 8.2.3301: memory allocation functions don't have their own place
Bram Moolenaar <Bram@vim.org>
parents:
25206
diff
changeset
|
805 alloc.obj : alloc.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
806 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h gui.h beval.h \ |
25529
bb1097899693
patch 8.2.3301: memory allocation functions don't have their own place
Bram Moolenaar <Bram@vim.org>
parents:
25206
diff
changeset
|
807 [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
9408
6814811b90d5
commit https://github.com/vim/vim/commit/3b98b830017b8bf5fd270db93dfe187434df1960
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
808 arabic.obj : arabic.c vim.h |
17744
4a3dca734d36
patch 8.1.1869: code for the argument list is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17652
diff
changeset
|
809 arglist.obj : arglist.c vim.h [.auto]config.h feature.h os_unix.h |
15634
746b95fd25ad
patch 8.1.0825: code for autocommands is mixed with file I/O code
Bram Moolenaar <Bram@vim.org>
parents:
15533
diff
changeset
|
810 autocmd.obj : autocmd.c vim.h [.auto]config.h feature.h os_unix.h |
15533
08604d82fc9e
patch 8.1.0774: VMS build is missing the blob file
Bram Moolenaar <Bram@vim.org>
parents:
15517
diff
changeset
|
811 blowfish.obj : blowfish.c vim.h [.auto]config.h feature.h os_unix.h |
23503
49d866e9b439
patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents:
23408
diff
changeset
|
812 blob.obj : blob.c vim.h [.auto]config.h feature.h os_unix.h |
39 | 813 buffer.obj : buffer.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
814 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
12871
1a450ce6980c
patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
815 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
816 errors.h globals.h version.h |
18199
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
817 bufwrite.obj : bufwrite.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
818 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
18199
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
819 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
820 errors.h globals.h |
16632
30de89c1d090
patch 8.1.1318: code for text changes is in a "misc" file
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
821 change.obj : change.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
822 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
16632
30de89c1d090
patch 8.1.1318: code for text changes is in a "misc" file
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
823 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
824 errors.h globals.h |
39 | 825 charset.obj : charset.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
826 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
12871
1a450ce6980c
patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
827 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
828 errors.h globals.h |
33888
cb88e5c589d0
patch 9.0.2153: no support to build on OpenVMS
Christian Brabandt <cb@256bit.org>
parents:
31335
diff
changeset
|
829 channel.obj : channel.c vim.h [.auto]config.h feature.h |
18265
fe5afdc03bd2
patch 8.1.2127: the indent.c file is a bit big
Bram Moolenaar <Bram@vim.org>
parents:
18199
diff
changeset
|
830 cindent.obj : cindent.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
831 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
18265
fe5afdc03bd2
patch 8.1.2127: the indent.c file is a bit big
Bram Moolenaar <Bram@vim.org>
parents:
18199
diff
changeset
|
832 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
833 errors.h globals.h |
19920
5e41b2e63c73
patch 8.2.0516: client-server code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
19774
diff
changeset
|
834 clientserver.obj : clientserver.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
835 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
19920
5e41b2e63c73
patch 8.2.0516: client-server code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
19774
diff
changeset
|
836 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
837 errors.h globals.h |
19774
00a1b89256ea
patch 8.2.0443: clipboard code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
19396
diff
changeset
|
838 clipboard.obj : clipboard.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
839 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
19774
00a1b89256ea
patch 8.2.0443: clipboard code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
19396
diff
changeset
|
840 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
841 errors.h globals.h |
17779
87a8760babec
patch 8.1.1886: command line expansion code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17744
diff
changeset
|
842 cmdexpand.obj : cmdexpand.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
843 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
17779
87a8760babec
patch 8.1.1886: command line expansion code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17744
diff
changeset
|
844 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
845 errors.h globals.h |
17652
9efb4dda9720
patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17576
diff
changeset
|
846 cmdhist.obj : cmdhist.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
847 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
17652
9efb4dda9720
patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17576
diff
changeset
|
848 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
849 errors.h globals.h |
10328
299f1669c20e
commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents:
9408
diff
changeset
|
850 crypt.obj : crypt.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
851 ascii.h keymap.h termdefs.h macros.h option.h structs.h regexp.h gui.h \ |
12871
1a450ce6980c
patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
852 beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
853 errors.h globals.h |
10328
299f1669c20e
commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents:
9408
diff
changeset
|
854 crypt_zip.obj : crypt_zip.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
855 ascii.h keymap.h termdefs.h macros.h option.h structs.h \ |
12871
1a450ce6980c
patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
856 regexp.h gui.h beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
857 proto.h errors.h globals.h |
16381
1dcbaa780b8e
patch 8.1.1195: Vim script debugger functionality needs cleanup
Bram Moolenaar <Bram@vim.org>
parents:
16142
diff
changeset
|
858 debugger.obj : debugger.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
859 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
16381
1dcbaa780b8e
patch 8.1.1195: Vim script debugger functionality needs cleanup
Bram Moolenaar <Bram@vim.org>
parents:
16142
diff
changeset
|
860 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
861 errors.h globals.h |
10328
299f1669c20e
commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents:
9408
diff
changeset
|
862 dict.obj : dict.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
863 ascii.h keymap.h termdefs.h macros.h option.h structs.h regexp.h gui.h \ |
12871
1a450ce6980c
patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
864 beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
865 errors.h globals.h |
39 | 866 diff.obj : diff.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
867 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h gui.h beval.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
868 [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
39 | 869 digraph.obj : digraph.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
870 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
12871
1a450ce6980c
patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
871 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
872 errors.h globals.h |
18124
2a806e3c39f6
patch 8.1.2057: the screen.c file is much too big
Bram Moolenaar <Bram@vim.org>
parents:
18100
diff
changeset
|
873 drawline.obj : drawline.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
874 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
18124
2a806e3c39f6
patch 8.1.2057: the screen.c file is much too big
Bram Moolenaar <Bram@vim.org>
parents:
18100
diff
changeset
|
875 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
876 errors.h globals.h |
18124
2a806e3c39f6
patch 8.1.2057: the screen.c file is much too big
Bram Moolenaar <Bram@vim.org>
parents:
18100
diff
changeset
|
877 drawscreen.obj : drawscreen.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
878 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
18124
2a806e3c39f6
patch 8.1.2057: the screen.c file is much too big
Bram Moolenaar <Bram@vim.org>
parents:
18100
diff
changeset
|
879 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
880 errors.h globals.h |
39 | 881 edit.obj : edit.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
882 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h gui.h beval.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
883 [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
39 | 884 eval.obj : eval.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
885 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h gui.h beval.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
886 [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
18010
cf8e0c7e0cb9
patch 8.1.2001: some source files are too big
Bram Moolenaar <Bram@vim.org>
parents:
17966
diff
changeset
|
887 evalbuffer.obj : evalbuffer.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
888 ascii.h keymap.h termdefs.h macros.h option.h structs.h \ |
18010
cf8e0c7e0cb9
patch 8.1.2001: some source files are too big
Bram Moolenaar <Bram@vim.org>
parents:
17966
diff
changeset
|
889 regexp.h gui.h beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
890 proto.h errors.h globals.h |
10328
299f1669c20e
commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents:
9408
diff
changeset
|
891 evalfunc.obj : evalfunc.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
892 ascii.h keymap.h termdefs.h macros.h option.h structs.h \ |
12871
1a450ce6980c
patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
893 regexp.h gui.h beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
894 proto.h errors.h globals.h version.h |
17873
d50a5faa75bd
patch 8.1.1933: the eval.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
17861
diff
changeset
|
895 evalvars.obj : evalvars.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
896 ascii.h keymap.h termdefs.h macros.h option.h structs.h \ |
17873
d50a5faa75bd
patch 8.1.1933: the eval.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
17861
diff
changeset
|
897 regexp.h gui.h beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
898 proto.h errors.h globals.h version.h |
18010
cf8e0c7e0cb9
patch 8.1.2001: some source files are too big
Bram Moolenaar <Bram@vim.org>
parents:
17966
diff
changeset
|
899 evalwindow.obj : evalwindow.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
900 ascii.h keymap.h termdefs.h macros.h option.h structs.h \ |
18010
cf8e0c7e0cb9
patch 8.1.2001: some source files are too big
Bram Moolenaar <Bram@vim.org>
parents:
17966
diff
changeset
|
901 regexp.h gui.h beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
902 proto.h errors.h globals.h |
39 | 903 ex_cmds.obj : ex_cmds.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
904 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
12871
1a450ce6980c
patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
905 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
906 errors.h globals.h version.h |
39 | 907 ex_cmds2.obj : ex_cmds2.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
908 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
12871
1a450ce6980c
patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
909 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
910 errors.h globals.h version.h |
39 | 911 ex_docmd.obj : ex_docmd.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
912 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
12871
1a450ce6980c
patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
913 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
914 errors.h globals.h ex_cmdidxs.h |
39 | 915 ex_eval.obj : ex_eval.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
916 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
12871
1a450ce6980c
patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
917 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
918 errors.h globals.h |
39 | 919 ex_getln.obj : ex_getln.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
920 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
12871
1a450ce6980c
patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
921 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
922 errors.h globals.h |
39 | 923 fileio.obj : fileio.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
924 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
12871
1a450ce6980c
patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
925 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
926 errors.h globals.h |
17966
46f95606b9ec
patch 8.1.1979: code for handling file names is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17873
diff
changeset
|
927 filepath.obj : filepath.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
928 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
17966
46f95606b9ec
patch 8.1.1979: code for handling file names is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17873
diff
changeset
|
929 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
930 errors.h globals.h |
15814
99ebf78686a9
patch 8.1.0914: code related to findfile() is spread out
Bram Moolenaar <Bram@vim.org>
parents:
15699
diff
changeset
|
931 findfile.obj : findfile.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
932 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
15814
99ebf78686a9
patch 8.1.0914: code related to findfile() is spread out
Bram Moolenaar <Bram@vim.org>
parents:
15699
diff
changeset
|
933 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
934 errors.h globals.h |
24780
7bc92a651472
patch 8.2.2928: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
23503
diff
changeset
|
935 float.obj : float.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
936 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h gui.h beval.h \ |
24780
7bc92a651472
patch 8.2.2928: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
23503
diff
changeset
|
937 [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
39 | 938 fold.obj : fold.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
939 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h gui.h beval.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
940 [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
39 | 941 getchar.obj : getchar.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
942 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
12871
1a450ce6980c
patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
943 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
944 errors.h globals.h |
20637
6c5b11458f31
patch 8.2.0872: XIM code is mixed with multi-byte code
Bram Moolenaar <Bram@vim.org>
parents:
20587
diff
changeset
|
945 gui_xim.obj : gui_xim.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
946 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
20637
6c5b11458f31
patch 8.2.0872: XIM code is mixed with multi-byte code
Bram Moolenaar <Bram@vim.org>
parents:
20587
diff
changeset
|
947 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
948 errors.h globals.h |
440 | 949 hardcopy.obj : hardcopy.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
950 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
12871
1a450ce6980c
patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
951 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
952 errors.h globals.h version.h |
800 | 953 hashtab.obj : hashtab.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
954 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
12871
1a450ce6980c
patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
955 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
956 errors.h globals.h |
21423
5db63c2c6929
patch 8.2.1262: src/ex_cmds.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
21054
diff
changeset
|
957 help.obj : help.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
958 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
21423
5db63c2c6929
patch 8.2.1262: src/ex_cmds.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
21054
diff
changeset
|
959 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
960 errors.h globals.h |
17389
635d7f5010b8
patch 8.1.1693: syntax coloring and highlighting is in one big file
Bram Moolenaar <Bram@vim.org>
parents:
17377
diff
changeset
|
961 highlight.obj : highlight.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
962 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
17389
635d7f5010b8
patch 8.1.1693: syntax coloring and highlighting is in one big file
Bram Moolenaar <Bram@vim.org>
parents:
17377
diff
changeset
|
963 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
964 errors.h globals.h |
39 | 965 if_cscope.obj : if_cscope.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
966 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
12871
1a450ce6980c
patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
967 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
27104
92e0b1f2b72f
patch 8.2.4081: CodeQL reports problem in if_cscope causing it to fail
Bram Moolenaar <Bram@vim.org>
parents:
26662
diff
changeset
|
968 errors.h globals.h |
39 | 969 if_xcmdsrv.obj : if_xcmdsrv.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
970 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
12871
1a450ce6980c
patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
971 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
972 errors.h globals.h version.h |
2441
620a42739426
Improvements for VMS. (Zoltan Arpadffy)
Bram Moolenaar <bram@vim.org>
parents:
2428
diff
changeset
|
973 if_mzsch.obj : if_mzsch.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
974 ascii.h keymap.h termdefs.h macros.h option.h structs.h \ |
12871
1a450ce6980c
patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
975 regexp.h gui.h beval.h [.proto]gui_beval.pro ex_cmds.h proto.h \ |
23503
49d866e9b439
patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents:
23408
diff
changeset
|
976 errors.h globals.h if_mzsch.h |
15699
2d941023bd2f
patch 8.1.0857: indent functionality is not separated
Bram Moolenaar <Bram@vim.org>
parents:
15634
diff
changeset
|
977 indent.obj : indent.c vim.h [.auto]config.h feature.h os_unix.h |
16142
570a296aa0b4
patch 8.1.1076: file for Insert mode is much too big
Bram Moolenaar <Bram@vim.org>
parents:
16070
diff
changeset
|
978 insexpand.obj : insexpand.c vim.h [.auto]config.h feature.h os_unix.h |
33888
cb88e5c589d0
patch 9.0.2153: no support to build on OpenVMS
Christian Brabandt <cb@256bit.org>
parents:
31335
diff
changeset
|
979 job.obj : job.c vim.h [.auto]config.h feature.h os_unix.h |
7712
bce3b5ddb393
commit https://github.com/vim/vim/commit/520e1e41f35b063ede63b41738c82d6636e78c34
Christian Brabandt <cb@256bit.org>
parents:
6448
diff
changeset
|
980 json.obj : json.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
981 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h gui.h beval.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
982 [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
10328
299f1669c20e
commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents:
9408
diff
changeset
|
983 list.obj : list.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
984 ascii.h keymap.h termdefs.h macros.h option.h structs.h regexp.h gui.h \ |
12871
1a450ce6980c
patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
985 beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
986 errors.h globals.h |
21437
b32b67a108f2
patch 8.2.1269: language and locale code spread out
Bram Moolenaar <Bram@vim.org>
parents:
21423
diff
changeset
|
987 locale.obj : locale.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
988 ascii.h keymap.h termdefs.h macros.h option.h structs.h regexp.h gui.h \ |
21437
b32b67a108f2
patch 8.2.1269: language and locale code spread out
Bram Moolenaar <Bram@vim.org>
parents:
21423
diff
changeset
|
989 beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
990 errors.h globals.h |
31287
fa309d9af73c
patch 9.0.0977: it is not easy to see what client-server commands are doing
Bram Moolenaar <Bram@vim.org>
parents:
30731
diff
changeset
|
991 logfile.obj : logfile.c vim.h [.auto]config.h feature.h os_unix.h \ |
fa309d9af73c
patch 9.0.0977: it is not easy to see what client-server commands are doing
Bram Moolenaar <Bram@vim.org>
parents:
30731
diff
changeset
|
992 ascii.h keymap.h termdefs.h macros.h option.h structs.h regexp.h gui.h \ |
fa309d9af73c
patch 9.0.0977: it is not easy to see what client-server commands are doing
Bram Moolenaar <Bram@vim.org>
parents:
30731
diff
changeset
|
993 beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \ |
fa309d9af73c
patch 9.0.0977: it is not easy to see what client-server commands are doing
Bram Moolenaar <Bram@vim.org>
parents:
30731
diff
changeset
|
994 errors.h globals.h |
39 | 995 main.obj : main.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
996 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h gui.h beval.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
997 [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h \ |
16068
8c160339de22
patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
998 arabic.c |
17576
97a750e8707f
patch 8.1.1785: map functionality mixed with character input
Bram Moolenaar <Bram@vim.org>
parents:
17536
diff
changeset
|
999 map.obj : map.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
1000 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h gui.h beval.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
1001 [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
39 | 1002 mark.obj : mark.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
1003 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h gui.h beval.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
1004 [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
21054
b1fac55cf8a3
patch 8.2.1078: highlight and match functionality together in one file
Bram Moolenaar <Bram@vim.org>
parents:
20637
diff
changeset
|
1005 match.obj : match.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
1006 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h gui.h beval.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
1007 [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
39 | 1008 memfile.obj : memfile.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
1009 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
12871
1a450ce6980c
patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
1010 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
1011 errors.h globals.h |
39 | 1012 memline.obj : memline.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
1013 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
12871
1a450ce6980c
patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
1014 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
1015 errors.h globals.h |
39 | 1016 menu.obj : menu.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
1017 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h gui.h beval.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
1018 [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
39 | 1019 message.obj : message.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
1020 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
12871
1a450ce6980c
patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
1021 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
1022 errors.h globals.h |
39 | 1023 misc1.obj : misc1.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
1024 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h gui.h beval.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
1025 [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h \ |
16068
8c160339de22
patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
1026 version.h |
39 | 1027 misc2.obj : misc2.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
1028 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h gui.h beval.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
1029 [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
18135
1868ec23360e
patch 8.1.2062: the mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18124
diff
changeset
|
1030 mouse.obj : mouse.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
1031 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h gui.h beval.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
1032 [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
39 | 1033 move.obj : move.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
1034 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h gui.h beval.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
1035 [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
39 | 1036 mbyte.obj : mbyte.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
1037 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h gui.h beval.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
1038 [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
39 | 1039 normal.obj : normal.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
1040 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
12871
1a450ce6980c
patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
1041 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
27484
ee1019e59bef
patch 8.2.4270: generating nv_cmdidxs.h requires building Vim twice
Bram Moolenaar <Bram@vim.org>
parents:
27447
diff
changeset
|
1042 errors.h globals.h nv_cmdidxs.h nv_cmds.h |
39 | 1043 ops.obj : ops.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
1044 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h gui.h beval.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
1045 [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
39 | 1046 option.obj : option.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
1047 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
12871
1a450ce6980c
patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
1048 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
1049 errors.h globals.h optiondefs.h |
18100
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18054
diff
changeset
|
1050 optionstr.obj : optionstr.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
1051 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
18100
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18054
diff
changeset
|
1052 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
1053 errors.h globals.h |
39 | 1054 os_unix.obj : os_unix.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
1055 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
12871
1a450ce6980c
patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
1056 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
1057 errors.h globals.h os_unixx.h |
39 | 1058 os_vms.obj : os_vms.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
1059 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
12871
1a450ce6980c
patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
1060 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
1061 errors.h globals.h os_unixx.h |
39 | 1062 pathdef.obj : pathdef.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
1063 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
12871
1a450ce6980c
patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
1064 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
1065 errors.h globals.h |
18174
1ec6539cef68
patch 8.1.2082: some files have a weird name to fit in 8.3 characters
Bram Moolenaar <Bram@vim.org>
parents:
18172
diff
changeset
|
1066 popupmenu.obj : popupmenu.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
1067 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
12871
1a450ce6980c
patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
1068 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
1069 errors.h globals.h |
16778
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16644
diff
changeset
|
1070 popupwin.obj : popupwin.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
1071 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
16778
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16644
diff
changeset
|
1072 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
1073 errors.h globals.h |
33888
cb88e5c589d0
patch 9.0.2153: no support to build on OpenVMS
Christian Brabandt <cb@256bit.org>
parents:
31335
diff
changeset
|
1074 pty.obj : pty.c vim.h [.auto]config.h feature.h os_unix.h |
17370
ba06a1c42274
patch 8.1.1684: profiling functionality is spread out
Bram Moolenaar <Bram@vim.org>
parents:
16778
diff
changeset
|
1075 profiler.obj : profiler.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
1076 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
17370
ba06a1c42274
patch 8.1.1684: profiling functionality is spread out
Bram Moolenaar <Bram@vim.org>
parents:
16778
diff
changeset
|
1077 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
1078 errors.h globals.h |
39 | 1079 quickfix.obj : quickfix.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
1080 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
12871
1a450ce6980c
patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
1081 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
1082 errors.h globals.h |
39 | 1083 regexp.obj : regexp.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
1084 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
12871
1a450ce6980c
patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
1085 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
1086 errors.h globals.h |
18164
f57481564f2c
patch 8.1.2077: the ops.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
1087 register.obj : register.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
1088 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
18164
f57481564f2c
patch 8.1.2077: the ops.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18135
diff
changeset
|
1089 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
1090 errors.h globals.h |
17861
0a5c615cd949
patch 8.1.1927: code for dealing with script files is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17779
diff
changeset
|
1091 scriptfile.obj : scriptfile.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
1092 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
17861
0a5c615cd949
patch 8.1.1927: code for dealing with script files is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17779
diff
changeset
|
1093 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
1094 errors.h globals.h |
39 | 1095 screen.obj : screen.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
1096 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
12871
1a450ce6980c
patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
1097 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
1098 errors.h globals.h |
39 | 1099 search.obj : search.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
1100 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
12871
1a450ce6980c
patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
1101 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
1102 errors.h globals.h |
17536
e00d12c085a5
patch 8.1.1766: code for writing session file is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17458
diff
changeset
|
1103 session.obj : session.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
1104 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
17536
e00d12c085a5
patch 8.1.1766: code for writing session file is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17458
diff
changeset
|
1105 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
1106 errors.h globals.h |
10328
299f1669c20e
commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents:
9408
diff
changeset
|
1107 sha256.obj : sha256.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
1108 ascii.h keymap.h termdefs.h macros.h option.h structs.h regexp.h gui.h \ |
12871
1a450ce6980c
patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
1109 beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
1110 errors.h globals.h |
15330
a6330a49e036
patch 8.1.0673: functionality for signs is spread out over several files
Bram Moolenaar <Bram@vim.org>
parents:
12871
diff
changeset
|
1111 sign.obj : sign.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
1112 ascii.h keymap.h termdefs.h macros.h option.h structs.h regexp.h gui.h \ |
15330
a6330a49e036
patch 8.1.0673: functionality for signs is spread out over several files
Bram Moolenaar <Bram@vim.org>
parents:
12871
diff
changeset
|
1113 beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
1114 errors.h globals.h |
34072
6d9e20b403e8
patch 9.1.0005: OpenVMS does not support python3 and xterm_save
Christian Brabandt <cb@256bit.org>
parents:
33988
diff
changeset
|
1115 sound.obj : sound.c vim.h [.auto]config.h feature.h |
221 | 1116 spell.obj : spell.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
1117 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
12871
1a450ce6980c
patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
1118 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
1119 errors.h globals.h |
10328
299f1669c20e
commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents:
9408
diff
changeset
|
1120 spellfile.obj : spellfile.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
1121 ascii.h keymap.h termdefs.h macros.h option.h structs.h \ |
12871
1a450ce6980c
patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
1122 regexp.h gui.h beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
1123 proto.h errors.h globals.h |
18172
6e53d83e021d
patch 8.1.2081: the spell.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18164
diff
changeset
|
1124 spellsuggest.obj : spellsuggest.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
1125 ascii.h keymap.h termdefs.h macros.h option.h structs.h \ |
18172
6e53d83e021d
patch 8.1.2081: the spell.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18164
diff
changeset
|
1126 regexp.h gui.h beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
1127 proto.h errors.h globals.h |
25206
dc66d0284518
patch 8.2.3139: functions for string manipulation are spread out
Bram Moolenaar <Bram@vim.org>
parents:
24780
diff
changeset
|
1128 strings.obj : strings.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
1129 ascii.h keymap.h termdefs.h macros.h option.h structs.h \ |
25206
dc66d0284518
patch 8.2.3139: functions for string manipulation are spread out
Bram Moolenaar <Bram@vim.org>
parents:
24780
diff
changeset
|
1130 regexp.h gui.h beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h \ |
dc66d0284518
patch 8.2.3139: functions for string manipulation are spread out
Bram Moolenaar <Bram@vim.org>
parents:
24780
diff
changeset
|
1131 proto.h errors.h globals.h |
39 | 1132 syntax.obj : syntax.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
1133 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
12871
1a450ce6980c
patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
1134 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
1135 errors.h globals.h |
39 | 1136 tag.obj : tag.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
1137 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h gui.h beval.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
1138 [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
39 | 1139 term.obj : term.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
1140 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h gui.h beval.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
1141 [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
33888
cb88e5c589d0
patch 9.0.2153: no support to build on OpenVMS
Christian Brabandt <cb@256bit.org>
parents:
31335
diff
changeset
|
1142 terminal.obj : terminal.c vim.h [.auto]config.h feature.h os_unix.h |
39 | 1143 termlib.obj : termlib.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
1144 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h gui.h beval.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
1145 [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
17377
cb008de2a6ec
patch 8.1.1687: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
17370
diff
changeset
|
1146 testing.obj : testing.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
1147 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h gui.h beval.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
1148 [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
20237
918245588b50
patch 8.2.0674: some source files are too big
Bram Moolenaar <Bram@vim.org>
parents:
20209
diff
changeset
|
1149 textformat.obj : textformat.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
1150 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h gui.h beval.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
1151 [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
20209
6ca6a372fef6
patch 8.2.0660: the search.c file is a bit big
Bram Moolenaar <Bram@vim.org>
parents:
19920
diff
changeset
|
1152 textobject.obj : textobject.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
1153 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h gui.h beval.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
1154 [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
15517
2ad5f0ffaa2e
patch 8.1.0766: various problems when using Vim on VMS
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
1155 textprop.obj : textprop.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
1156 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h gui.h beval.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
1157 [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
19396
a961efb326e5
patch 8.2.0256: time and timer related code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
19394
diff
changeset
|
1158 time.obj : time.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
1159 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h gui.h beval.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
1160 [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
20587
f502455965c0
patch 8.2.0847: typval related code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
20237
diff
changeset
|
1161 typval.obj : typval.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
1162 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h gui.h beval.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
1163 [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
39 | 1164 ui.obj : ui.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
1165 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h gui.h beval.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
1166 [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
39 | 1167 undo.obj : undo.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
1168 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h gui.h beval.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
1169 [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
16411
5b5c5daf57de
patch 8.1.1210: support for user commands is spread out
Bram Moolenaar <Bram@vim.org>
parents:
16381
diff
changeset
|
1170 usercmd.obj : usercmd.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
1171 ascii.h keymap.h termdefs.h macros.h option.h structs.h \ |
16411
5b5c5daf57de
patch 8.1.1210: support for user commands is spread out
Bram Moolenaar <Bram@vim.org>
parents:
16381
diff
changeset
|
1172 regexp.h gui.h beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
1173 proto.h errors.h globals.h |
10328
299f1669c20e
commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents:
9408
diff
changeset
|
1174 userfunc.obj : userfunc.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
1175 ascii.h keymap.h termdefs.h macros.h option.h structs.h \ |
12871
1a450ce6980c
patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
1176 regexp.h gui.h beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
1177 proto.h errors.h globals.h |
39 | 1178 version.obj : version.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
1179 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
12871
1a450ce6980c
patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
1180 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
1181 errors.h globals.h version.h |
17458
cfdef48743ed
patch 8.1.1727: code for viminfo support is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17389
diff
changeset
|
1182 viminfo.obj : viminfo.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
1183 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
17458
cfdef48743ed
patch 8.1.1727: code for viminfo support is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17389
diff
changeset
|
1184 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
1185 errors.h globals.h version.h |
31335
5acc0d2cf4f7
patch 9.0.1001: classes are not documented or implemented yet
Bram Moolenaar <Bram@vim.org>
parents:
31287
diff
changeset
|
1186 vim9class.obj : vim9class.c vim.h [.auto]config.h feature.h os_unix.h \ |
5acc0d2cf4f7
patch 9.0.1001: classes are not documented or implemented yet
Bram Moolenaar <Bram@vim.org>
parents:
31287
diff
changeset
|
1187 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
5acc0d2cf4f7
patch 9.0.1001: classes are not documented or implemented yet
Bram Moolenaar <Bram@vim.org>
parents:
31287
diff
changeset
|
1188 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
5acc0d2cf4f7
patch 9.0.1001: classes are not documented or implemented yet
Bram Moolenaar <Bram@vim.org>
parents:
31287
diff
changeset
|
1189 errors.h globals.h version.h |
26662
4b23672d1f0e
patch 8.2.3860: Vim9: codecov struggles with the file size
Bram Moolenaar <Bram@vim.org>
parents:
26177
diff
changeset
|
1190 vim9cmds.obj : vim9cmds.c vim.h [.auto]config.h feature.h os_unix.h \ |
4b23672d1f0e
patch 8.2.3860: Vim9: codecov struggles with the file size
Bram Moolenaar <Bram@vim.org>
parents:
26177
diff
changeset
|
1191 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
4b23672d1f0e
patch 8.2.3860: Vim9: codecov struggles with the file size
Bram Moolenaar <Bram@vim.org>
parents:
26177
diff
changeset
|
1192 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
4b23672d1f0e
patch 8.2.3860: Vim9: codecov struggles with the file size
Bram Moolenaar <Bram@vim.org>
parents:
26177
diff
changeset
|
1193 errors.h globals.h version.h |
19394
4d4c489e8be1
patch 8.2.0255: VMS: missing files in build
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
1194 vim9compile.obj : vim9compile.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
1195 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
19394
4d4c489e8be1
patch 8.2.0255: VMS: missing files in build
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
1196 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
1197 errors.h globals.h version.h |
19394
4d4c489e8be1
patch 8.2.0255: VMS: missing files in build
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
1198 vim9execute.obj : vim9execute.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
1199 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
19394
4d4c489e8be1
patch 8.2.0255: VMS: missing files in build
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
1200 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
1201 errors.h globals.h version.h |
26662
4b23672d1f0e
patch 8.2.3860: Vim9: codecov struggles with the file size
Bram Moolenaar <Bram@vim.org>
parents:
26177
diff
changeset
|
1202 vim9expr.obj : vim9expr.c vim.h [.auto]config.h feature.h os_unix.h \ |
4b23672d1f0e
patch 8.2.3860: Vim9: codecov struggles with the file size
Bram Moolenaar <Bram@vim.org>
parents:
26177
diff
changeset
|
1203 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
4b23672d1f0e
patch 8.2.3860: Vim9: codecov struggles with the file size
Bram Moolenaar <Bram@vim.org>
parents:
26177
diff
changeset
|
1204 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
4b23672d1f0e
patch 8.2.3860: Vim9: codecov struggles with the file size
Bram Moolenaar <Bram@vim.org>
parents:
26177
diff
changeset
|
1205 errors.h globals.h version.h |
4b23672d1f0e
patch 8.2.3860: Vim9: codecov struggles with the file size
Bram Moolenaar <Bram@vim.org>
parents:
26177
diff
changeset
|
1206 vim9instr.obj : vim9instr.c vim.h [.auto]config.h feature.h os_unix.h \ |
4b23672d1f0e
patch 8.2.3860: Vim9: codecov struggles with the file size
Bram Moolenaar <Bram@vim.org>
parents:
26177
diff
changeset
|
1207 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
4b23672d1f0e
patch 8.2.3860: Vim9: codecov struggles with the file size
Bram Moolenaar <Bram@vim.org>
parents:
26177
diff
changeset
|
1208 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
4b23672d1f0e
patch 8.2.3860: Vim9: codecov struggles with the file size
Bram Moolenaar <Bram@vim.org>
parents:
26177
diff
changeset
|
1209 errors.h globals.h version.h |
19394
4d4c489e8be1
patch 8.2.0255: VMS: missing files in build
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
1210 vim9script.obj : vim9script.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
1211 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
19394
4d4c489e8be1
patch 8.2.0255: VMS: missing files in build
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
1212 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
1213 errors.h globals.h version.h |
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
1214 vim9type.obj : vim9type.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
1215 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
1216 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
1217 errors.h globals.h version.h |
39 | 1218 window.obj : window.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
1219 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
12871
1a450ce6980c
patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
1220 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
1221 errors.h globals.h |
39 | 1222 gui.obj : gui.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
1223 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h gui.h beval.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
1224 [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
39 | 1225 gui_gtk.obj : gui_gtk.c gui_gtk_f.h vim.h [.auto]config.h feature.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
1226 os_unix.h ascii.h keymap.h termdefs.h macros.h structs.h \ |
12871
1a450ce6980c
patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
1227 regexp.h gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
1228 proto.h errors.h globals.h [-.pixmaps]stock_icons.h |
39 | 1229 gui_gtk_f.obj : gui_gtk_f.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
1230 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
12871
1a450ce6980c
patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
1231 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
1232 errors.h globals.h gui_gtk_f.h |
39 | 1233 gui_motif.obj : gui_motif.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
1234 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
12871
1a450ce6980c
patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
1235 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
1236 errors.h globals.h [-.pixmaps]alert.xpm [-.pixmaps]error.xpm \ |
39 | 1237 [-.pixmaps]generic.xpm [-.pixmaps]info.xpm [-.pixmaps]quest.xpm |
1238 gui_athena.obj : gui_athena.c vim.h [.auto]config.h feature.h os_unix.h \ | |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
1239 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
12871
1a450ce6980c
patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
1240 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
1241 errors.h globals.h gui_at_sb.h |
39 | 1242 gui_gtk_x11.obj : gui_gtk_x11.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
1243 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
12871
1a450ce6980c
patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
1244 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
1245 errors.h globals.h gui_gtk_f.h [-.runtime]vim32x32.xpm \ |
18884
9a723f1e2d4e
patch 8.2.0003: Build file dependencies are incomplete
Bram Moolenaar <Bram@vim.org>
parents:
18853
diff
changeset
|
1246 [-.runtime]vim16x16.xpm [-.runtime]vim48x48.xpm version.h |
39 | 1247 gui_x11.obj : gui_x11.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
1248 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
12871
1a450ce6980c
patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
1249 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
1250 errors.h globals.h [-.runtime]vim32x32.xpm \ |
39 | 1251 [-.runtime]vim16x16.xpm [-.runtime]vim48x48.xpm [-.pixmaps]tb_new.xpm \ |
1252 [-.pixmaps]tb_open.xpm [-.pixmaps]tb_close.xpm [-.pixmaps]tb_save.xpm \ | |
1253 [-.pixmaps]tb_print.xpm [-.pixmaps]tb_cut.xpm [-.pixmaps]tb_copy.xpm \ | |
1254 [-.pixmaps]tb_paste.xpm [-.pixmaps]tb_find.xpm \ | |
1255 [-.pixmaps]tb_find_next.xpm [-.pixmaps]tb_find_prev.xpm \ | |
1256 [-.pixmaps]tb_find_help.xpm [-.pixmaps]tb_exit.xpm \ | |
1257 [-.pixmaps]tb_undo.xpm [-.pixmaps]tb_redo.xpm [-.pixmaps]tb_help.xpm \ | |
1258 [-.pixmaps]tb_macro.xpm [-.pixmaps]tb_make.xpm \ | |
1259 [-.pixmaps]tb_save_all.xpm [-.pixmaps]tb_jump.xpm \ | |
1260 [-.pixmaps]tb_ctags.xpm [-.pixmaps]tb_load_session.xpm \ | |
1261 [-.pixmaps]tb_save_session.xpm [-.pixmaps]tb_new_session.xpm \ | |
1262 [-.pixmaps]tb_blank.xpm [-.pixmaps]tb_maximize.xpm \ | |
1263 [-.pixmaps]tb_split.xpm [-.pixmaps]tb_minimize.xpm \ | |
1264 [-.pixmaps]tb_shell.xpm [-.pixmaps]tb_replace.xpm \ | |
1265 [-.pixmaps]tb_vsplit.xpm [-.pixmaps]tb_maxwidth.xpm \ | |
1266 [-.pixmaps]tb_minwidth.xpm | |
1267 gui_at_sb.obj : gui_at_sb.c vim.h [.auto]config.h feature.h os_unix.h \ | |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
1268 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
12871
1a450ce6980c
patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
1269 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
1270 errors.h globals.h gui_at_sb.h |
39 | 1271 gui_at_fs.obj : gui_at_fs.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
1272 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
12871
1a450ce6980c
patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
1273 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
1274 errors.h globals.h gui_at_sb.h |
39 | 1275 pty.obj : pty.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
1276 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h gui.h beval.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
1277 [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
39 | 1278 if_perl.obj : [.auto]if_perl.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
1279 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
12871
1a450ce6980c
patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
1280 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
1281 errors.h globals.h |
39 | 1282 if_perlsfio.obj : if_perlsfio.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
1283 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
12871
1a450ce6980c
patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
1284 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
1285 errors.h globals.h |
39 | 1286 if_python.obj : if_python.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
1287 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
12871
1a450ce6980c
patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
1288 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
1289 errors.h globals.h |
39 | 1290 if_tcl.obj : if_tcl.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
1291 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
12871
1a450ce6980c
patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
1292 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
1293 errors.h globals.h |
39 | 1294 if_ruby.obj : if_ruby.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
1295 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
12871
1a450ce6980c
patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
1296 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
1297 errors.h globals.h version.h |
23503
49d866e9b439
patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents:
23408
diff
changeset
|
1298 if_lua.obj : if_lua.c vim.h [.auto]config.h feature.h os_unix.h \ |
49d866e9b439
patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents:
23408
diff
changeset
|
1299 errors.h globals.h version.h |
12871
1a450ce6980c
patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
1300 beval.obj : beval.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
1301 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
12871
1a450ce6980c
patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
1302 gui.h beval.h option.h ex_cmds.h proto.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
1303 errors.h globals.h |
39 | 1304 gui_beval.obj : gui_beval.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
1305 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
12871
1a450ce6980c
patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
1306 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
1307 errors.h globals.h |
39 | 1308 netbeans.obj : netbeans.c vim.h [.auto]config.h feature.h os_unix.h \ |
26177
13e09dc59f0f
patch 8.2.3620: memory leak reported in libtlib
Bram Moolenaar <Bram@vim.org>
parents:
25529
diff
changeset
|
1309 ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
12871
1a450ce6980c
patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
1310 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
21437
diff
changeset
|
1311 errors.h globals.h version.h |
15517
2ad5f0ffaa2e
patch 8.1.0766: various problems when using Vim on VMS
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
1312 gui_xmdlg.obj : gui_xmdlg.c [.auto]config.h vim.h feature.h os_unix.h |
2ad5f0ffaa2e
patch 8.1.0766: various problems when using Vim on VMS
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
1313 gui_xmebw.obj : gui_xmebw.c [.auto]config.h vim.h feature.h os_unix.h |
2ad5f0ffaa2e
patch 8.1.0766: various problems when using Vim on VMS
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
1314 xdiffi.obj : [.xdiff]xdiffi.c [.xdiff]xinclude.h [.auto]config.h vim.h feature.h os_unix.h |
2ad5f0ffaa2e
patch 8.1.0766: various problems when using Vim on VMS
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
1315 xemit.obj : [.xdiff]xemit.c [.xdiff]xinclude.h [.auto]config.h vim.h feature.h os_unix.h |
2ad5f0ffaa2e
patch 8.1.0766: various problems when using Vim on VMS
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
1316 xprepare.obj : [.xdiff]xprepare.c [.xdiff]xinclude.h [.auto]config.h vim.h feature.h os_unix.h |
2ad5f0ffaa2e
patch 8.1.0766: various problems when using Vim on VMS
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
1317 xutils.obj : [.xdiff]xutils.c [.xdiff]xinclude.h [.auto]config.h vim.h feature.h os_unix.h |
2ad5f0ffaa2e
patch 8.1.0766: various problems when using Vim on VMS
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
1318 xhistogram.obj : [.xdiff]xhistogram.c [.xdiff]xinclude.h [.auto]config.h vim.h feature.h os_unix.h |
23503
49d866e9b439
patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents:
23408
diff
changeset
|
1319 xpatience.obj : [.xdiff]xpatience.c [.xdiff]xinclude.h [.auto]config.h vim.h feature.h os_unix.h |