Mercurial > vim
annotate src/Make_vms.mms @ 27301:ebe56a24acb6 v8.2.4179
patch 8.2.4179: 'foldtext' is evaluated in the current script context
Commit: https://github.com/vim/vim/commit/9530b580a7b71960dbbdb2b12a3aafeb540bd135
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Jan 22 13:39:08 2022 +0000
patch 8.2.4179: 'foldtext' is evaluated in the current script context
Problem: 'foldtext' is evaluated in the current script context.
Solution: Use the script context where the option was set.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sat, 22 Jan 2022 14:45:02 +0100 |
parents | 92e0b1f2b72f |
children | 4050f0554902 |
rev | line source |
---|---|
7 | 1 # |
2 # Makefile for Vim on OpenVMS | |
3 # | |
4 # Maintainer: Zoltan Arpadffy <arpadffy@polarhome.com> | |
26662
4b23672d1f0e
patch 8.2.3860: Vim9: codecov struggles with the file size
Bram Moolenaar <Bram@vim.org>
parents:
26177
diff
changeset
|
5 # Last change: 2021 Dec 20 |
7 | 6 # |
18761
e3785af3ba0f
patch 8.1.2370: build problems on VMS
Bram Moolenaar <Bram@vim.org>
parents:
18673
diff
changeset
|
7 # This script has been tested on VMS 6.2 to 8.4 on DEC Alpha, VAX and IA64 |
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 | |
30 # TINY - Almost no features enabled, not even multiple windows | |
31 # SMALL - Few features enabled, as basic as possible | |
32 # NORMAL - A default selection of features enabled | |
33 # BIG - Many features enabled, as rich as possible. (default) | |
4352 | 34 # HUGE - All possible features enabled. |
7 | 35 # Please select one of these alternatives above. |
1709 | 36 MODEL = HUGE |
7 | 37 |
38 # GUI or terminal mode executable. | |
39 # Comment out if you want just the character terminal mode only. | |
826 | 40 # GUI with Motif |
23503
49d866e9b439
patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents:
23408
diff
changeset
|
41 # GUI = YES |
7 | 42 |
43 # GUI with GTK | |
44 # If you have GTK installed you might want to enable this option. | |
1045 | 45 # 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
|
46 # 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
|
47 # therefore this option should not be used |
7 | 48 # GTK = YES |
49 | |
414 | 50 # GUI/Motif with XPM |
51 # 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
|
52 # XPM = YES |
414 | 53 |
7 | 54 # Comment out if you want the compiler version with :ver command. |
55 # NOTE: This part can make some complications if you're using some | |
56 # predefined symbols/flags for your compiler. If does, just leave behind | |
4352 | 57 # the comment variable CCVER. |
7 | 58 CCVER = YES |
59 | |
60 # Uncomment if want a debug version. Resulting executable is DVIM.EXE | |
61 # 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
|
62 # DEBUG = YES |
7 | 63 |
64 # Languages support for Perl, Python, TCL etc. | |
65 # If you don't need it really, leave them behind the comment. | |
66 # You will need related libraries, include files etc. | |
67 # VIM_TCL = YES | |
68 # VIM_PERL = YES | |
69 # VIM_PYTHON = YES | |
70 # VIM_RUBY = YES | |
23503
49d866e9b439
patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents:
23408
diff
changeset
|
71 # VIM_LUA = YES |
7 | 72 |
73 # 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
|
74 # Japanese. |
7 | 75 # If you don't need it really, leave it behind the comment. |
76 # VIM_XIM = YES | |
77 | |
78 # Allow any white space to separate the fields in a tags file | |
79 # When not defined, only a TAB is allowed. | |
80 # VIM_TAG_ANYWHITE = YES | |
81 | |
2441
620a42739426
Improvements for VMS. (Zoltan Arpadffy)
Bram Moolenaar <bram@vim.org>
parents:
2428
diff
changeset
|
82 # Allow FEATURE_MZSCHEME |
620a42739426
Improvements for VMS. (Zoltan Arpadffy)
Bram Moolenaar <bram@vim.org>
parents:
2428
diff
changeset
|
83 # VIM_MZSCHEME = YES |
620a42739426
Improvements for VMS. (Zoltan Arpadffy)
Bram Moolenaar <bram@vim.org>
parents:
2428
diff
changeset
|
84 |
5704 | 85 # Use ICONV |
86 # VIM_ICONV = YES | |
87 | |
7 | 88 ###################################################################### |
89 # Directory, library and include files configuration section. | |
90 # Normally you need not to change anything below. ! | |
91 # These may need to be defined if things are not in standard locations | |
92 # | |
93 # You can find some explanation in INSTALLVMS.TXT | |
94 ###################################################################### | |
95 | |
96 # Compiler setup | |
97 | |
1045 | 98 .IFDEF MMSVAX |
7 | 99 .IFDEF DECC # VAX with DECC |
5704 | 100 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
|
101 PREFIX = /prefix=all/name=(upper,short) |
5704 | 102 OPTIMIZE= /noopt # do not optimize on VAX. The compiler has hard time with crypto functions |
7 | 103 .ELSE # VAX with VAXC |
104 CC_DEF = cc | |
105 PREFIX = | |
5704 | 106 OPTIMIZE= /noopt |
7 | 107 CCVER = |
108 .ENDIF | |
5704 | 109 .ELSE # AXP and IA64 with DECC |
7 | 110 CC_DEF = cc |
23408
bdda90ed5f6c
patch 8.2.2247: VMS: various smaller problems
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
111 PREFIX = /prefix=all/name=(upper,short) |
5704 | 112 OPTIMIZE= /opt |
7 | 113 .ENDIF |
114 | |
5704 | 115 |
7 | 116 LD_DEF = link |
117 C_INC = [.proto] | |
118 | |
119 .IFDEF DEBUG | |
120 DEBUG_DEF = ,"DEBUG" | |
121 TARGET = dvim.exe | |
122 CFLAGS = /debug/noopt$(PREFIX) | |
123 LDFLAGS = /debug | |
124 .ELSE | |
125 TARGET = vim.exe | |
5704 | 126 CFLAGS = $(OPTIMIZE)$(PREFIX) |
7 | 127 LDFLAGS = |
128 .ENDIF | |
129 | |
130 # Predefined VIM directories | |
131 # Please, use $VIM and $VIMRUNTIME logicals instead | |
132 VIMLOC = "" | |
133 VIMRUN = "" | |
134 | |
135 CONFIG_H = os_vms_conf.h | |
136 | |
826 | 137 # GTK or XPM but not both |
7 | 138 .IFDEF GTK |
139 .IFDEF GUI | |
140 .ELSE | |
141 GUI = YES | |
142 .ENDIF | |
826 | 143 .IFDEF XPM |
144 XPM = "" | |
145 .ENDIF | |
146 .ENDIF | |
147 | |
148 .IFDEF XPM | |
149 .IFDEF GUI | |
150 .ELSE | |
151 GUI = YES | |
152 .ENDIF | |
153 .IFDEF GTK | |
154 GTK = "" | |
7 | 155 .ENDIF |
414 | 156 .ENDIF |
7 | 157 |
158 .IFDEF GUI | |
159 # X/Motif/GTK executable (also works in terminal mode ) | |
160 | |
161 .IFDEF GTK | |
819 | 162 # NOTE: you need to set up your GTK_DIR (GTK root directory), because it is |
163 # unique on every system - logicals are not accepted | |
414 | 164 # please note: directory should end with . in order to /trans=conc work |
1045 | 165 # 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
|
166 GTK_DIR = DKA0:[WORK.GTK1210.] |
7 | 167 DEFS = "HAVE_CONFIG_H","FEAT_GUI_GTK" |
168 LIBS = ,OS_VMS_GTK.OPT/OPT | |
23408
bdda90ed5f6c
patch 8.2.2247: VMS: various smaller problems
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
169 GUI_FLAG = /float=ieee/ieee=denorm |
414 | 170 GUI_SRC = gui.c gui_gtk.c gui_gtk_f.c gui_gtk_x11.c gui_beval.c pty.c |
171 GUI_OBJ = gui.obj gui_gtk.obj gui_gtk_f.obj gui_gtk_x11.obj gui_beval.obj pty.obj | |
7 | 172 GUI_INC = ,"/gtk_root/gtk","/gtk_root/glib" |
173 # GUI_INC_VER is used just for :ver information | |
174 # this string should escape from C and DCL in the same time | |
175 GUI_INC_VER= ,\""/gtk_root/gtk\"",\""/gtk_root/glib\"" | |
414 | 176 .ELSE |
7 | 177 MOTIF = YES |
414 | 178 .IFDEF XPM |
179 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
|
180 XPM_INC = ,[.xpm.include] |
23408
bdda90ed5f6c
patch 8.2.2247: VMS: various smaller problems
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
181 XPM_LIB = ,OS_VMS_XPM.OPT/OPT |
414 | 182 .ELSE |
7 | 183 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
|
184 XPM_INC = |
414 | 185 .ENDIF |
7 | 186 LIBS = ,OS_VMS_MOTIF.OPT/OPT |
187 GUI_FLAG = | |
414 | 188 GUI_SRC = gui.c gui_motif.c gui_x11.c gui_beval.c gui_xmdlg.c gui_xmebw.c |
189 GUI_OBJ = gui.obj gui_motif.obj gui_x11.obj gui_beval.obj gui_xmdlg.obj gui_xmebw.obj | |
7 | 190 GUI_INC = |
191 .ENDIF | |
192 | |
193 # You need to define these variables if you do not have DECW files | |
194 # at standard location | |
195 GUI_INC_DIR = ,decw$include: | |
196 # GUI_LIB_DIR = ,sys$library: | |
197 | |
198 .ELSE | |
199 # Character terminal only executable | |
200 DEFS = "HAVE_CONFIG_H" | |
201 LIBS = | |
202 .ENDIF | |
203 | |
204 .IFDEF VIM_PERL | |
205 # Perl related setup. | |
206 PERL = perl | |
207 PERL_DEF = ,"FEAT_PERL" | |
208 PERL_SRC = if_perlsfio.c if_perl.xs | |
209 PERL_OBJ = if_perlsfio.obj if_perl.obj | |
210 PERL_LIB = ,OS_VMS_PERL.OPT/OPT | |
211 PERL_INC = ,dka0:[perlbuild.perl.lib.vms_axp.5_6_1.core] | |
212 .ENDIF | |
213 | |
214 .IFDEF VIM_PYTHON | |
215 # Python related setup. | |
216 PYTHON_DEF = ,"FEAT_PYTHON" | |
217 PYTHON_SRC = if_python.c | |
218 PYTHON_OBJ = if_python.obj | |
219 PYTHON_LIB = ,OS_VMS_PYTHON.OPT/OPT | |
220 PYTHON_INC = ,PYTHON_INCLUDE | |
221 .ENDIF | |
222 | |
223 .IFDEF VIM_TCL | |
224 # TCL related setup. | |
225 TCL_DEF = ,"FEAT_TCL" | |
226 TCL_SRC = if_tcl.c | |
227 TCL_OBJ = if_tcl.obj | |
228 TCL_LIB = ,OS_VMS_TCL.OPT/OPT | |
229 TCL_INC = ,dka0:[tcl80.generic] | |
230 .ENDIF | |
231 | |
232 .IFDEF VIM_RUBY | |
233 # RUBY related setup. | |
234 RUBY_DEF = ,"FEAT_RUBY" | |
235 RUBY_SRC = if_ruby.c | |
236 RUBY_OBJ = if_ruby.obj | |
237 RUBY_LIB = ,OS_VMS_RUBY.OPT/OPT | |
238 RUBY_INC = | |
239 .ENDIF | |
240 | |
23503
49d866e9b439
patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents:
23408
diff
changeset
|
241 .IFDEF VIM_LUA |
49d866e9b439
patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents:
23408
diff
changeset
|
242 # LUA related setup. |
49d866e9b439
patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents:
23408
diff
changeset
|
243 LUA_DEF = ,"FEAT_LUA" |
49d866e9b439
patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents:
23408
diff
changeset
|
244 LUA_SRC = if_lua.c |
49d866e9b439
patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents:
23408
diff
changeset
|
245 LUA_OBJ = if_lua.obj |
49d866e9b439
patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents:
23408
diff
changeset
|
246 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
|
247 LUA_INC = ,LUA$ROOT:[INCLUDE] |
49d866e9b439
patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents:
23408
diff
changeset
|
248 .ENDIF |
49d866e9b439
patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents:
23408
diff
changeset
|
249 |
7 | 250 .IFDEF VIM_XIM |
251 # XIM related setup. | |
252 .IFDEF GUI | |
253 XIM_DEF = ,"FEAT_XIM" | |
254 .ENDIF | |
255 .ENDIF | |
256 | |
2441
620a42739426
Improvements for VMS. (Zoltan Arpadffy)
Bram Moolenaar <bram@vim.org>
parents:
2428
diff
changeset
|
257 .IFDEF VIM_MZSCHEME |
620a42739426
Improvements for VMS. (Zoltan Arpadffy)
Bram Moolenaar <bram@vim.org>
parents:
2428
diff
changeset
|
258 # MZSCHEME related setup |
620a42739426
Improvements for VMS. (Zoltan Arpadffy)
Bram Moolenaar <bram@vim.org>
parents:
2428
diff
changeset
|
259 MZSCH_DEF = ,"FEAT_MZSCHEME" |
23503
49d866e9b439
patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents:
23408
diff
changeset
|
260 MZSCH_SRC = if_mzsch.c |
2441
620a42739426
Improvements for VMS. (Zoltan Arpadffy)
Bram Moolenaar <bram@vim.org>
parents:
2428
diff
changeset
|
261 MZSCH_OBJ = if_mzsch.obj |
620a42739426
Improvements for VMS. (Zoltan Arpadffy)
Bram Moolenaar <bram@vim.org>
parents:
2428
diff
changeset
|
262 .ENDIF |
7 | 263 |
5704 | 264 .IFDEF VIM_ICONV |
265 # ICONV related setup | |
266 ICONV_DEF = ,"USE_ICONV" | |
267 .ENDIF | |
268 | |
15517
2ad5f0ffaa2e
patch 8.1.0766: various problems when using Vim on VMS
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
269 # XDIFF related setup. |
2ad5f0ffaa2e
patch 8.1.0766: various problems when using Vim on VMS
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
270 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
|
271 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
|
272 XDIFF_INC = ,[.xdiff] |
2ad5f0ffaa2e
patch 8.1.0766: various problems when using Vim on VMS
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
273 |
7 | 274 ###################################################################### |
275 # End of configuration section. | |
276 # Please, do not change anything below without programming experience. | |
277 ###################################################################### | |
278 | |
279 MODEL_DEF = "FEAT_$(MODEL)", | |
280 | |
281 # These go into pathdef.c | |
282 VIMUSER = "''F$EDIT(F$GETJPI(" ","USERNAME"),"TRIM")'" | |
283 VIMHOST = "''F$TRNLNM("SYS$NODE")'''F$TRNLNM("UCX$INET_HOST")'.''F$TRNLNM("UCX$INET_DOMAIN")'" | |
284 | |
285 .SUFFIXES : .obj .c | |
286 | |
5704 | 287 ALL_CFLAGS = /def=($(MODEL_DEF)$(DEFS)$(DEBUG_DEF)$(PERL_DEF)$(PYTHON_DEF) - |
23503
49d866e9b439
patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents:
23408
diff
changeset
|
288 $(TCL_DEF)$(RUBY_DEF)$(LUA_DEF)$(XIM_DEF)$(TAG_DEF)$(MZSCH_DEF) - |
15517
2ad5f0ffaa2e
patch 8.1.0766: various problems when using Vim on VMS
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
289 $(ICONV_DEF)) - |
7 | 290 $(CFLAGS)$(GUI_FLAG) - |
15517
2ad5f0ffaa2e
patch 8.1.0766: various problems when using Vim on VMS
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
291 /include=($(C_INC)$(GUI_INC_DIR)$(GUI_INC)$(PERL_INC)$(PYTHON_INC) - |
2ad5f0ffaa2e
patch 8.1.0766: various problems when using Vim on VMS
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
292 $(TCL_INC)$(XDIFF_INC)$(XPM_INC)) |
7 | 293 |
294 # 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
|
295 # It is specially formatted for correct display of unix like includes |
7 | 296 # as $(GUI_INC) - replaced with $(GUI_INC_VER) |
297 # Otherwise should not be any other difference. | |
5704 | 298 ALL_CFLAGS_VER = /def=($(MODEL_DEF)$(DEFS)$(DEBUG_DEF)$(PERL_DEF)$(PYTHON_DEF) - |
23503
49d866e9b439
patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents:
23408
diff
changeset
|
299 $(TCL_DEF)$(RUBY_DEF)$(LUA_DEF)$(XIM_DEF)$(TAG_DEF)$(MZSCH_DEF) - |
15517
2ad5f0ffaa2e
patch 8.1.0766: various problems when using Vim on VMS
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
300 $(ICONV_DEF)) - |
7 | 301 $(CFLAGS)$(GUI_FLAG) - |
15517
2ad5f0ffaa2e
patch 8.1.0766: various problems when using Vim on VMS
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
302 /include=($(C_INC)$(GUI_INC_DIR)$(GUI_INC_VER)$(PERL_INC)$(PYTHON_INC) - |
2ad5f0ffaa2e
patch 8.1.0766: various problems when using Vim on VMS
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
303 $(TCL_INC)$(XDIFF_INC)$(XPM_INC)) |
7 | 304 |
23408
bdda90ed5f6c
patch 8.2.2247: VMS: various smaller problems
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
305 ALL_LIBS = $(LIBS) $(GUI_LIB_DIR) $(GUI_LIB) $(XPM_LIB)\ |
23503
49d866e9b439
patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents:
23408
diff
changeset
|
306 $(PERL_LIB) $(PYTHON_LIB) $(TCL_LIB) $(RUBY_LIB) $(LUA_LIB) |
7 | 307 |
18199
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
308 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
|
309 alloc.c \ |
18199
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
310 arabic.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
311 arglist.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
312 autocmd.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
313 beval.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
314 blob.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
315 blowfish.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
316 buffer.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
317 bufwrite.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
318 change.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
319 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
|
320 cindent.c \ |
19920
5e41b2e63c73
patch 8.2.0516: client-server code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
19774
diff
changeset
|
321 clientserver.c \ |
19774
00a1b89256ea
patch 8.2.0443: clipboard code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
19396
diff
changeset
|
322 clipboard.c \ |
18199
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
323 cmdexpand.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
324 cmdhist.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
325 crypt.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
326 crypt_zip.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
327 debugger.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
328 dict.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
329 diff.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
330 digraph.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
331 drawline.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
332 drawscreen.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
333 edit.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
334 eval.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
335 evalbuffer.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
336 evalfunc.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
337 evalvars.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
338 evalwindow.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
339 ex_cmds.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
340 ex_cmds2.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
341 ex_docmd.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
342 ex_eval.c \ |
18010
cf8e0c7e0cb9
patch 8.1.2001: some source files are too big
Bram Moolenaar <Bram@vim.org>
parents:
17966
diff
changeset
|
343 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
|
344 fileio.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
345 filepath.c, \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
346 findfile.c \ |
24780
7bc92a651472
patch 8.2.2928: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
23503
diff
changeset
|
347 float.c \ |
18199
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
348 fold.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
349 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
|
350 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
|
351 hardcopy.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
352 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
|
353 help.c \ |
18199
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
354 highlight.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
355 if_cscope.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
356 if_xcmdsrv.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
357 indent.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
358 insexpand.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
359 json.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
360 list.c \ |
21437
b32b67a108f2
patch 8.2.1269: language and locale code spread out
Bram Moolenaar <Bram@vim.org>
parents:
21423
diff
changeset
|
361 locale.c \ |
18199
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
362 main.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
363 map.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
364 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
|
365 match.c \ |
18199
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
366 mbyte.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
367 memfile.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
368 memline.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
369 menu.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
370 message.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
371 misc1.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
372 misc2.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
373 mouse.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
374 move.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
375 normal.c \ |
18135
1868ec23360e
patch 8.1.2062: the mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18124
diff
changeset
|
376 ops.c \ |
18199
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
377 option.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
378 optionstr.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
379 os_unix.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
380 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
|
381 pathdef.c \ |
18199
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
382 popupmenu.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
383 popupwin.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
384 profiler.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
385 quickfix.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
386 regexp.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
387 register.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
388 screen.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
389 scriptfile.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
390 search.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
391 session.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
392 sha256.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
393 sign.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
394 spell.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
395 spellfile.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
396 spellsuggest.c \ |
25206
dc66d0284518
patch 8.2.3139: functions for string manipulation are spread out
Bram Moolenaar <Bram@vim.org>
parents:
24780
diff
changeset
|
397 strings.c \ |
18199
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
398 syntax.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
399 tag.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
400 term.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
401 termlib.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
402 testing.c \ |
20237
918245588b50
patch 8.2.0674: some source files are too big
Bram Moolenaar <Bram@vim.org>
parents:
20209
diff
changeset
|
403 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
|
404 textobject.c \ |
18199
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
405 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
|
406 time.c \ |
20587
f502455965c0
patch 8.2.0847: typval related code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
20237
diff
changeset
|
407 typval.c \ |
18199
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
408 ui.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
409 undo.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
410 usercmd.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
411 userfunc.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
412 version.c \ |
26662
4b23672d1f0e
patch 8.2.3860: Vim9: codecov struggles with the file size
Bram Moolenaar <Bram@vim.org>
parents:
26177
diff
changeset
|
413 vim9cmds.c \ |
19394
4d4c489e8be1
patch 8.2.0255: VMS: missing files in build
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
414 vim9compile.c \ |
4d4c489e8be1
patch 8.2.0255: VMS: missing files in build
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
415 vim9execute.c \ |
26662
4b23672d1f0e
patch 8.2.3860: Vim9: codecov struggles with the file size
Bram Moolenaar <Bram@vim.org>
parents:
26177
diff
changeset
|
416 vim9expr.c \ |
4b23672d1f0e
patch 8.2.3860: Vim9: codecov struggles with the file size
Bram Moolenaar <Bram@vim.org>
parents:
26177
diff
changeset
|
417 vim9instr.c \ |
19394
4d4c489e8be1
patch 8.2.0255: VMS: missing files in build
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
418 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
|
419 vim9type.c \ |
18199
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
420 viminfo.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
421 window.c \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
422 $(GUI_SRC) \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
423 $(PERL_SRC) \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
424 $(PYTHON_SRC) \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
425 $(TCL_SRC) \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
426 $(RUBY_SRC) \ |
23503
49d866e9b439
patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents:
23408
diff
changeset
|
427 $(LUA_SRC) \ |
18199
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
428 $(MZSCH_SRC) \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
429 $(XDIFF_SRC) |
7 | 430 |
18199
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
431 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
|
432 alloc.obj \ |
18199
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
433 arabic.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
434 arglist.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
435 autocmd.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
436 beval.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
437 blob.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
438 blowfish.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
439 buffer.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
440 bufwrite.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
441 change.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
442 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
|
443 cindent.obj \ |
19920
5e41b2e63c73
patch 8.2.0516: client-server code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
19774
diff
changeset
|
444 clientserver.obj \ |
19774
00a1b89256ea
patch 8.2.0443: clipboard code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
19396
diff
changeset
|
445 clipboard.obj \ |
18199
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
446 cmdexpand.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
447 cmdhist.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
448 crypt.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
449 crypt_zip.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
450 debugger.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
451 dict.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
452 diff.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
453 digraph.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
454 drawline.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
455 drawscreen.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
456 edit.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
457 eval.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
458 evalbuffer.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
459 evalfunc.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
460 evalvars.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
461 evalwindow.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
462 ex_cmds.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
463 ex_cmds2.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
464 ex_docmd.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
465 ex_eval.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
466 ex_getln.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
467 fileio.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
468 filepath.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
469 findfile.obj \ |
24780
7bc92a651472
patch 8.2.2928: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
23503
diff
changeset
|
470 float.obj \ |
18199
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
471 fold.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
472 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
|
473 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
|
474 hardcopy.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
475 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
|
476 help.obj \ |
18199
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
477 highlight.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
478 if_cscope.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
479 if_mzsch.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
480 if_xcmdsrv.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
481 indent.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
482 insexpand.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
483 json.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
484 list.obj \ |
21437
b32b67a108f2
patch 8.2.1269: language and locale code spread out
Bram Moolenaar <Bram@vim.org>
parents:
21423
diff
changeset
|
485 locale.obj \ |
18199
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
486 main.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
487 map.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
488 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
|
489 match.obj \ |
18199
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
490 mbyte.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
491 memfile.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
492 memline.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
493 menu.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
494 message.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
495 misc1.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
496 misc2.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
497 mouse.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
498 move.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
499 normal.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
500 ops.obj \ |
18135
1868ec23360e
patch 8.1.2062: the mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
18124
diff
changeset
|
501 option.obj \ |
18199
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
502 optionstr.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
503 os_unix.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
504 os_vms.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
505 pathdef.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
506 popupmenu.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
507 popupwin.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
508 profiler.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
509 quickfix.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
510 regexp.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
511 register.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
512 screen.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
513 scriptfile.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
514 search.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
515 session.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
516 sha256.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
517 sign.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
518 spell.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
519 spellfile.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
520 spellsuggest.obj \ |
25206
dc66d0284518
patch 8.2.3139: functions for string manipulation are spread out
Bram Moolenaar <Bram@vim.org>
parents:
24780
diff
changeset
|
521 strings.obj \ |
18199
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
522 syntax.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
523 tag.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
524 term.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
525 termlib.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
526 testing.obj \ |
20237
918245588b50
patch 8.2.0674: some source files are too big
Bram Moolenaar <Bram@vim.org>
parents:
20209
diff
changeset
|
527 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
|
528 textobject.obj \ |
18172
6e53d83e021d
patch 8.1.2081: the spell.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18164
diff
changeset
|
529 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
|
530 time.obj \ |
20587
f502455965c0
patch 8.2.0847: typval related code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
20237
diff
changeset
|
531 typval.obj \ |
18199
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
532 ui.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
533 undo.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
534 usercmd.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
535 userfunc.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
536 version.obj \ |
26662
4b23672d1f0e
patch 8.2.3860: Vim9: codecov struggles with the file size
Bram Moolenaar <Bram@vim.org>
parents:
26177
diff
changeset
|
537 vim9cmds.obj \ |
19394
4d4c489e8be1
patch 8.2.0255: VMS: missing files in build
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
538 vim9compile.obj \ |
4d4c489e8be1
patch 8.2.0255: VMS: missing files in build
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
539 vim9execute.obj \ |
26662
4b23672d1f0e
patch 8.2.3860: Vim9: codecov struggles with the file size
Bram Moolenaar <Bram@vim.org>
parents:
26177
diff
changeset
|
540 vim9expr.obj \ |
4b23672d1f0e
patch 8.2.3860: Vim9: codecov struggles with the file size
Bram Moolenaar <Bram@vim.org>
parents:
26177
diff
changeset
|
541 vim9instr.obj \ |
19394
4d4c489e8be1
patch 8.2.0255: VMS: missing files in build
Bram Moolenaar <Bram@vim.org>
parents:
19195
diff
changeset
|
542 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
|
543 vim9type.obj \ |
18199
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
544 viminfo.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
545 window.obj \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
546 $(GUI_OBJ) \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
547 $(PERL_OBJ) \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
548 $(PYTHON_OBJ) \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
549 $(TCL_OBJ) \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
550 $(RUBY_OBJ) \ |
23503
49d866e9b439
patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents:
23408
diff
changeset
|
551 $(LUA_OBJ) \ |
18199
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
552 $(MZSCH_OBJ) \ |
e2be5a6485f5
patch 8.1.2094: the fileio.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18174
diff
changeset
|
553 $(XDIFF_OBJ) |
7 | 554 |
555 # 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
|
556 all : [.auto]config.h mmk_compat motif_env gtk_env perl_env python_env tcl_env ruby_env lua_env $(TARGET) |
7 | 557 ! $@ |
558 | |
559 [.auto]config.h : $(CONFIG_H) | |
560 copy/nolog $(CONFIG_H) [.auto]config.h | |
561 | |
562 mmk_compat : | |
563 -@ open/write pd pathdef.c | |
564 -@ write pd "/* Empty file to satisfy MMK depend. */" | |
1221 | 565 -@ write pd "/* It will be overwritten later on... */" |
7 | 566 -@ close pd |
567 clean : | |
568 -@ if "''F$SEARCH("*.exe")'" .NES. "" then delete/noconfirm/nolog *.exe;* | |
569 -@ if "''F$SEARCH("*.obj")'" .NES. "" then delete/noconfirm/nolog *.obj;* | |
570 -@ if "''F$SEARCH("[.auto]config.h")'" .NES. "" then delete/noconfirm/nolog [.auto]config.h;* | |
571 -@ if "''F$SEARCH("pathdef.c")'" .NES. "" then delete/noconfirm/nolog pathdef.c;* | |
572 -@ if "''F$SEARCH("if_perl.c")'" .NES. "" then delete/noconfirm/nolog if_perl.c;* | |
573 -@ 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
|
574 -@ if "''F$SEARCH("*.dmp")'" .NES. "" then delete/noconfirm/nolog *.dmp;* |
7 | 575 |
576 # Link the target | |
577 $(TARGET) : $(OBJ) | |
18761
e3785af3ba0f
patch 8.1.2370: build problems on VMS
Bram Moolenaar <Bram@vim.org>
parents:
18673
diff
changeset
|
578 # 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
|
579 -@ 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
|
580 $(LD_DEF) $(LDFLAGS) /exe=$(TARGET) ALL_OBJS_LIST.OPT/OPT $(ALL_LIBS) |
7 | 581 |
582 .c.obj : | |
583 $(CC_DEF) $(ALL_CFLAGS) $< | |
584 | |
585 pathdef.c : check_ccver $(CONFIG_H) | |
586 -@ write sys$output "creating PATHDEF.C file." | |
587 -@ open/write pd pathdef.c | |
588 -@ write pd "/* pathdef.c -- DO NOT EDIT! */" | |
589 -@ write pd "/* This file is automatically created by MAKE_VMS.MMS" | |
590 -@ write pd " * Change the file MAKE_VMS.MMS Only. */" | |
591 -@ write pd "typedef unsigned char char_u;" | |
592 -@ write pd "char_u *default_vim_dir = (char_u *)"$(VIMLOC)";" | |
593 -@ write pd "char_u *default_vimruntime_dir = (char_u *)"$(VIMRUN)";" | |
594 -@ 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
|
595 -@ write pd "char_u *all_lflags = (char_u *)""$(LD_DEF)$(LDFLAGS) /exe=$(TARGET) ALL_OBJS_LIST.OPT/OPT $(ALL_LIBS)"";" |
7 | 596 -@ write pd "char_u *compiler_version = (char_u *) ""''CC_VER'"";" |
597 -@ write pd "char_u *compiled_user = (char_u *) "$(VIMUSER)";" | |
1045 | 598 -@ write pd "char_u *compiled_sys = (char_u *) "$(VIMHOST)";" |
599 -@ write pd "char_u *compiled_arch = (char_u *) ""$(MMSARCH_NAME)"";" | |
7 | 600 -@ close pd |
601 | |
602 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
|
603 -@ $(PERL) PERL_ROOT:[LIB.ExtUtils]xsubpp -prototypes -typemap - PERL_ROOT:[LIB.ExtUtils]typemap if_perl.xs >> $@ |
7 | 604 |
605 make_vms.mms : | |
606 -@ write sys$output "The name of the makefile MUST be <MAKE_VMS.MMS> !!!" | |
607 | |
608 .IFDEF CCVER | |
609 # This part can make some complications if you're using some predefined | |
610 # symbols/flags for your compiler. If does, just comment out CCVER variable | |
611 check_ccver : | |
612 -@ define sys$output cc_ver.tmp | |
613 -@ $(CC_DEF)/version | |
614 -@ deassign sys$output | |
615 -@ open/read file cc_ver.tmp | |
616 -@ read file CC_VER | |
617 -@ close file | |
618 -@ delete/noconfirm/nolog cc_ver.tmp.* | |
619 .ELSE | |
620 check_ccver : | |
621 -@ ! | |
622 .ENDIF | |
623 | |
624 .IFDEF MOTIF | |
625 motif_env : | |
414 | 626 .IFDEF XPM |
627 -@ 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
|
628 -@ 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
|
629 -@ 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
|
630 .IFDEF MMSVAX |
bdda90ed5f6c
patch 8.2.2247: VMS: various smaller problems
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
631 -@ 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
|
632 .ENDIF |
bdda90ed5f6c
patch 8.2.2247: VMS: various smaller problems
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
633 .IFDEF MMSALPHA |
bdda90ed5f6c
patch 8.2.2247: VMS: various smaller problems
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
634 -@ 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
|
635 .ENDIF |
bdda90ed5f6c
patch 8.2.2247: VMS: various smaller problems
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
636 .IFDEF MMSIA64 |
bdda90ed5f6c
patch 8.2.2247: VMS: various smaller problems
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
637 -@ 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
|
638 .ENDIF |
23408
bdda90ed5f6c
patch 8.2.2247: VMS: various smaller problems
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
639 -@ close opt_file |
414 | 640 .ELSE |
856 | 641 -@ write sys$output "using DECW/Motif environment." |
414 | 642 .ENDIF |
7 | 643 -@ write sys$output "creating OS_VMS_MOTIF.OPT file." |
644 -@ open/write opt_file OS_VMS_MOTIF.OPT | |
645 -@ write opt_file "sys$share:decw$xmlibshr12.exe/share,-" | |
646 -@ write opt_file "sys$share:decw$xtlibshrr5.exe/share,-" | |
647 -@ write opt_file "sys$share:decw$xlibshr.exe/share" | |
648 -@ close opt_file | |
649 .ELSE | |
650 motif_env : | |
651 -@ ! | |
652 .ENDIF | |
653 | |
654 | |
655 .IFDEF GTK | |
656 gtk_env : | |
657 -@ write sys$output "using GTK environment:" | |
658 -@ define/nolog gtk_root /trans=conc $(GTK_DIR) | |
659 -@ show logical gtk_root | |
660 -@ write sys$output " include path: "$(GUI_INC)"" | |
661 -@ write sys$output "creating OS_VMS_GTK.OPT file." | |
662 -@ open/write opt_file OS_VMS_GTK.OPT | |
663 -@ write opt_file "gtk_root:[glib]libglib.exe /share,-" | |
664 -@ write opt_file "gtk_root:[glib.gmodule]libgmodule.exe /share,-" | |
665 -@ write opt_file "gtk_root:[gtk.gdk]libgdk.exe /share,-" | |
666 -@ write opt_file "gtk_root:[gtk.gtk]libgtk.exe /share,-" | |
667 -@ write opt_file "sys$share:decw$xmlibshr12.exe/share,-" | |
668 -@ write opt_file "sys$share:decw$xtlibshrr5.exe/share,-" | |
669 -@ write opt_file "sys$share:decw$xlibshr.exe/share" | |
670 -@ close opt_file | |
671 .ELSE | |
672 gtk_env : | |
673 -@ ! | |
674 .ENDIF | |
675 | |
676 .IFDEF VIM_PERL | |
677 perl_env : | |
678 -@ write sys$output "using PERL environment:" | |
679 -@ show logical PERLSHR | |
680 -@ write sys$output " include path: ""$(PERL_INC)""" | |
681 -@ show symbol perl | |
682 -@ open/write pd if_perl.c | |
683 -@ write pd "/* Empty file to satisfy MMK depend. */" | |
1221 | 684 -@ write pd "/* It will be overwritten later on... */" |
7 | 685 -@ close pd |
686 -@ write sys$output "creating OS_VMS_PERL.OPT file." | |
687 -@ open/write opt_file OS_VMS_PERL.OPT | |
688 -@ write opt_file "PERLSHR /share" | |
689 -@ close opt_file | |
690 .ELSE | |
691 perl_env : | |
692 -@ ! | |
693 .ENDIF | |
694 | |
695 .IFDEF VIM_PYTHON | |
696 python_env : | |
697 -@ write sys$output "using PYTHON environment:" | |
698 -@ show logical PYTHON_INCLUDE | |
699 -@ show logical PYTHON_OLB | |
700 -@ write sys$output "creating OS_VMS_PYTHON.OPT file." | |
701 -@ open/write opt_file OS_VMS_PYTHON.OPT | |
702 -@ write opt_file "PYTHON_OLB:PYTHON.OLB /share" | |
703 -@ close opt_file | |
704 .ELSE | |
705 python_env : | |
706 -@ ! | |
707 .ENDIF | |
708 | |
709 .IFDEF VIM_TCL | |
710 tcl_env : | |
711 -@ write sys$output "using TCL environment:" | |
712 -@ show logical TCLSHR | |
713 -@ write sys$output " include path: ""$(TCL_INC)""" | |
714 -@ write sys$output "creating OS_VMS_TCL.OPT file." | |
715 -@ open/write opt_file OS_VMS_TCL.OPT | |
716 -@ write opt_file "TCLSHR /share" | |
717 -@ close opt_file | |
718 .ELSE | |
719 tcl_env : | |
720 -@ ! | |
721 .ENDIF | |
722 | |
723 .IFDEF VIM_RUBY | |
724 ruby_env : | |
725 -@ write sys$output "using RUBY environment:" | |
726 -@ write sys$output " include path: ""$(RUBY_INC)""" | |
727 -@ write sys$output "creating OS_VMS_RUBY.OPT file." | |
728 -@ open/write opt_file OS_VMS_RUBY.OPT | |
729 -@ write opt_file "RUBYSHR /share" | |
730 -@ close opt_file | |
731 .ELSE | |
732 ruby_env : | |
733 -@ ! | |
734 .ENDIF | |
735 | |
23503
49d866e9b439
patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents:
23408
diff
changeset
|
736 .IFDEF VIM_LUA |
49d866e9b439
patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents:
23408
diff
changeset
|
737 lua_env : |
49d866e9b439
patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents:
23408
diff
changeset
|
738 -@ 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
|
739 -@ 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
|
740 -@ 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
|
741 -@ 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
|
742 -@ 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
|
743 -@ close opt_file |
49d866e9b439
patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents:
23408
diff
changeset
|
744 .ELSE |
49d866e9b439
patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents:
23408
diff
changeset
|
745 lua_env : |
49d866e9b439
patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents:
23408
diff
changeset
|
746 -@ ! |
49d866e9b439
patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents:
23408
diff
changeset
|
747 .ENDIF |
49d866e9b439
patch 8.2.2294: VMS: a few remaining problems
Bram Moolenaar <Bram@vim.org>
parents:
23408
diff
changeset
|
748 |
25529
bb1097899693
patch 8.2.3301: memory allocation functions don't have their own place
Bram Moolenaar <Bram@vim.org>
parents:
25206
diff
changeset
|
749 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
|
750 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
|
751 [.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
|
752 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
|
753 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
|
754 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
|
755 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
|
756 blob.obj : blob.c vim.h [.auto]config.h feature.h os_unix.h |
39 | 757 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
|
758 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
|
759 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
|
760 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
|
761 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
|
762 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
|
763 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
|
764 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
|
765 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
|
766 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
|
767 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
|
768 errors.h globals.h |
39 | 769 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
|
770 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
|
771 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
|
772 errors.h globals.h |
18265
fe5afdc03bd2
patch 8.1.2127: the indent.c file is a bit big
Bram Moolenaar <Bram@vim.org>
parents:
18199
diff
changeset
|
773 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
|
774 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
|
775 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
|
776 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
|
777 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
|
778 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
|
779 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
|
780 errors.h globals.h |
19774
00a1b89256ea
patch 8.2.0443: clipboard code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
19396
diff
changeset
|
781 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
|
782 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
|
783 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
|
784 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
|
785 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
|
786 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
|
787 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
|
788 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
|
789 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
|
790 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
|
791 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
|
792 errors.h globals.h |
10328
299f1669c20e
commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents:
9408
diff
changeset
|
793 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
|
794 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
|
795 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
|
796 errors.h globals.h |
10328
299f1669c20e
commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents:
9408
diff
changeset
|
797 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
|
798 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
|
799 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
|
800 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
|
801 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
|
802 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
|
803 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
|
804 errors.h globals.h |
10328
299f1669c20e
commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents:
9408
diff
changeset
|
805 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
|
806 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
|
807 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
|
808 errors.h globals.h |
39 | 809 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
|
810 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
|
811 [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
39 | 812 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
|
813 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
|
814 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
|
815 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
|
816 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
|
817 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
|
818 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
|
819 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
|
820 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
|
821 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
|
822 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
|
823 errors.h globals.h |
39 | 824 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
|
825 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
|
826 [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
39 | 827 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
|
828 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
|
829 [.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
|
830 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
|
831 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
|
832 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
|
833 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
|
834 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
|
835 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
|
836 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
|
837 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
|
838 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
|
839 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
|
840 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
|
841 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
|
842 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
|
843 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
|
844 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
|
845 proto.h errors.h globals.h |
39 | 846 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
|
847 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
|
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 version.h |
39 | 850 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
|
851 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
|
852 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
|
853 errors.h globals.h version.h |
39 | 854 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
|
855 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
|
856 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
|
857 errors.h globals.h ex_cmdidxs.h |
39 | 858 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
|
859 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
|
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 |
39 | 862 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
|
863 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
|
864 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
|
865 errors.h globals.h |
39 | 866 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
|
867 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
|
868 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
|
869 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
|
870 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
|
871 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
|
872 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
|
873 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
|
874 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
|
875 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
|
876 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
|
877 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
|
878 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
|
879 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
|
880 [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
39 | 881 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
|
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 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
|
885 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
|
886 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
|
887 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
|
888 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
|
889 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
|
890 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
|
891 errors.h globals.h |
440 | 892 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
|
893 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
|
894 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
|
895 errors.h globals.h version.h |
800 | 896 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
|
897 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
|
898 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
|
899 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
|
900 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
|
901 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
|
902 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
|
903 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
|
904 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
|
905 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
|
906 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
|
907 errors.h globals.h |
39 | 908 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
|
909 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
|
910 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
|
911 errors.h globals.h |
39 | 912 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
|
913 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
|
914 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
|
915 errors.h globals.h version.h |
2441
620a42739426
Improvements for VMS. (Zoltan Arpadffy)
Bram Moolenaar <bram@vim.org>
parents:
2428
diff
changeset
|
916 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
|
917 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
|
918 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
|
919 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
|
920 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
|
921 insexpand.obj : insexpand.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
|
922 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
|
923 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
|
924 [.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
|
925 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
|
926 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
|
927 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
|
928 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
|
929 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
|
930 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
|
931 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
|
932 errors.h globals.h |
39 | 933 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
|
934 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
|
935 [.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
|
936 arabic.c |
17576
97a750e8707f
patch 8.1.1785: map functionality mixed with character input
Bram Moolenaar <Bram@vim.org>
parents:
17536
diff
changeset
|
937 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
|
938 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
|
939 [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
39 | 940 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
|
941 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
|
942 [.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
|
943 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
|
944 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
|
945 [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
39 | 946 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
|
947 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
|
948 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
|
949 errors.h globals.h |
39 | 950 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
|
951 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
|
952 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
|
953 errors.h globals.h |
39 | 954 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
|
955 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
|
956 [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
39 | 957 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
|
958 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
|
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 |
39 | 961 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
|
962 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
|
963 [.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
|
964 version.h |
39 | 965 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
|
966 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
|
967 [.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
|
968 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
|
969 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
|
970 [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
39 | 971 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
|
972 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
|
973 [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
39 | 974 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
|
975 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
|
976 [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
39 | 977 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
|
978 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
|
979 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
|
980 errors.h globals.h |
39 | 981 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
|
982 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
|
983 [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
39 | 984 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
|
985 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
|
986 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
|
987 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
|
988 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
|
989 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
|
990 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
|
991 errors.h globals.h |
39 | 992 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
|
993 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
|
994 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
|
995 errors.h globals.h os_unixx.h |
39 | 996 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
|
997 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
|
998 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
|
999 errors.h globals.h os_unixx.h |
39 | 1000 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
|
1001 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
|
1002 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
|
1003 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
|
1004 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
|
1005 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
|
1006 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
|
1007 errors.h globals.h |
16778
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16644
diff
changeset
|
1008 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
|
1009 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
|
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 |
17370
ba06a1c42274
patch 8.1.1684: profiling functionality is spread out
Bram Moolenaar <Bram@vim.org>
parents:
16778
diff
changeset
|
1012 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
|
1013 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
|
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 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
|
1017 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
|
1018 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
|
1019 errors.h globals.h |
39 | 1020 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
|
1021 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
|
1022 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
|
1023 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
|
1024 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
|
1025 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
|
1026 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
|
1027 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
|
1028 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
|
1029 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
|
1030 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
|
1031 errors.h globals.h |
39 | 1032 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
|
1033 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
|
1034 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
|
1035 errors.h globals.h |
39 | 1036 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
|
1037 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
|
1038 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
|
1039 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
|
1040 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
|
1041 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
|
1042 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
|
1043 errors.h globals.h |
10328
299f1669c20e
commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents:
9408
diff
changeset
|
1044 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
|
1045 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
|
1046 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
|
1047 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
|
1048 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
|
1049 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
|
1050 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
|
1051 errors.h globals.h |
221 | 1052 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
|
1053 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
|
1054 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
|
1055 errors.h globals.h |
10328
299f1669c20e
commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents:
9408
diff
changeset
|
1056 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
|
1057 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
|
1058 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
|
1059 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
|
1060 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
|
1061 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
|
1062 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
|
1063 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
|
1064 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
|
1065 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
|
1066 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
|
1067 proto.h errors.h globals.h |
39 | 1068 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
|
1069 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
|
1070 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
|
1071 errors.h globals.h |
39 | 1072 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
|
1073 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
|
1074 [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
39 | 1075 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
|
1076 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
|
1077 [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
39 | 1078 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
|
1079 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
|
1080 [.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
|
1081 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
|
1082 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
|
1083 [.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
|
1084 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
|
1085 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
|
1086 [.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
|
1087 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
|
1088 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
|
1089 [.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
|
1090 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
|
1091 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
|
1092 [.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
|
1093 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
|
1094 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
|
1095 [.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
|
1096 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
|
1097 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
|
1098 [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
39 | 1099 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
|
1100 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
|
1101 [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
39 | 1102 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
|
1103 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
|
1104 [.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
|
1105 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
|
1106 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
|
1107 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
|
1108 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
|
1109 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
|
1110 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
|
1111 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
|
1112 proto.h errors.h globals.h |
39 | 1113 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
|
1114 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
|
1115 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
|
1116 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
|
1117 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
|
1118 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
|
1119 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
|
1120 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
|
1121 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
|
1122 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
|
1123 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
|
1124 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
|
1125 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
|
1126 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
|
1127 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
|
1128 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
|
1129 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
|
1130 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
|
1131 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
|
1132 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
|
1133 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
|
1134 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
|
1135 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
|
1136 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
|
1137 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
|
1138 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
|
1139 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
|
1140 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
|
1141 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
|
1142 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
|
1143 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
|
1144 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
|
1145 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
|
1146 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
|
1147 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
|
1148 errors.h globals.h version.h |
39 | 1149 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
|
1150 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
|
1151 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
|
1152 errors.h globals.h |
39 | 1153 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
|
1154 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
|
1155 [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
39 | 1156 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
|
1157 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
|
1158 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
|
1159 proto.h errors.h globals.h [-.pixmaps]stock_icons.h |
39 | 1160 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
|
1161 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
|
1162 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
|
1163 errors.h globals.h gui_gtk_f.h |
39 | 1164 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
|
1165 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
|
1166 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
|
1167 errors.h globals.h [-.pixmaps]alert.xpm [-.pixmaps]error.xpm \ |
39 | 1168 [-.pixmaps]generic.xpm [-.pixmaps]info.xpm [-.pixmaps]quest.xpm |
1169 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
|
1170 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
|
1171 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
|
1172 errors.h globals.h gui_at_sb.h |
39 | 1173 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
|
1174 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
|
1175 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
|
1176 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
|
1177 [-.runtime]vim16x16.xpm [-.runtime]vim48x48.xpm version.h |
39 | 1178 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
|
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 [-.runtime]vim32x32.xpm \ |
39 | 1182 [-.runtime]vim16x16.xpm [-.runtime]vim48x48.xpm [-.pixmaps]tb_new.xpm \ |
1183 [-.pixmaps]tb_open.xpm [-.pixmaps]tb_close.xpm [-.pixmaps]tb_save.xpm \ | |
1184 [-.pixmaps]tb_print.xpm [-.pixmaps]tb_cut.xpm [-.pixmaps]tb_copy.xpm \ | |
1185 [-.pixmaps]tb_paste.xpm [-.pixmaps]tb_find.xpm \ | |
1186 [-.pixmaps]tb_find_next.xpm [-.pixmaps]tb_find_prev.xpm \ | |
1187 [-.pixmaps]tb_find_help.xpm [-.pixmaps]tb_exit.xpm \ | |
1188 [-.pixmaps]tb_undo.xpm [-.pixmaps]tb_redo.xpm [-.pixmaps]tb_help.xpm \ | |
1189 [-.pixmaps]tb_macro.xpm [-.pixmaps]tb_make.xpm \ | |
1190 [-.pixmaps]tb_save_all.xpm [-.pixmaps]tb_jump.xpm \ | |
1191 [-.pixmaps]tb_ctags.xpm [-.pixmaps]tb_load_session.xpm \ | |
1192 [-.pixmaps]tb_save_session.xpm [-.pixmaps]tb_new_session.xpm \ | |
1193 [-.pixmaps]tb_blank.xpm [-.pixmaps]tb_maximize.xpm \ | |
1194 [-.pixmaps]tb_split.xpm [-.pixmaps]tb_minimize.xpm \ | |
1195 [-.pixmaps]tb_shell.xpm [-.pixmaps]tb_replace.xpm \ | |
1196 [-.pixmaps]tb_vsplit.xpm [-.pixmaps]tb_maxwidth.xpm \ | |
1197 [-.pixmaps]tb_minwidth.xpm | |
1198 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
|
1199 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
|
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 gui_at_sb.h |
39 | 1202 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
|
1203 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
|
1204 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
|
1205 errors.h globals.h gui_at_sb.h |
39 | 1206 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
|
1207 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
|
1208 [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
39 | 1209 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
|
1210 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
|
1211 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
|
1212 errors.h globals.h |
39 | 1213 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
|
1214 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
|
1215 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
|
1216 errors.h globals.h |
39 | 1217 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
|
1218 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
|
1219 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
|
1220 errors.h globals.h |
39 | 1221 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
|
1222 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
|
1223 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
|
1224 errors.h globals.h |
39 | 1225 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
|
1226 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
|
1227 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
|
1228 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
|
1229 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
|
1230 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
|
1231 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
|
1232 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
|
1233 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
|
1234 errors.h globals.h |
39 | 1235 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
|
1236 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
|
1237 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
|
1238 errors.h globals.h |
39 | 1239 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
|
1240 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
|
1241 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
|
1242 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
|
1243 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
|
1244 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
|
1245 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
|
1246 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
|
1247 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
|
1248 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
|
1249 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
|
1250 xpatience.obj : [.xdiff]xpatience.c [.xdiff]xinclude.h [.auto]config.h vim.h feature.h os_unix.h |