Mercurial > vim
annotate src/Make_vms.mms @ 17464:3e708b5c0509 v8.1.1730
patch 8.1.1730: wrong place for mark viminfo support
commit https://github.com/vim/vim/commit/1e78e69680a5f52970d9b1ef60710e556b09b8c2
Author: Bram Moolenaar <Bram@vim.org>
Date: Mon Jul 22 20:18:27 2019 +0200
patch 8.1.1730: wrong place for mark viminfo support
Problem: Wrong place for mark viminfo support.
Solution: Move it to viminfo.c. (Yegappan Lakshmanan, closes https://github.com/vim/vim/issues/4716)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Mon, 22 Jul 2019 20:30:05 +0200 |
parents | cfdef48743ed |
children | e00d12c085a5 |
rev | line source |
---|---|
7 | 1 # |
2 # Makefile for Vim on OpenVMS | |
3 # | |
4 # Maintainer: Zoltan Arpadffy <arpadffy@polarhome.com> | |
17377
cb008de2a6ec
patch 8.1.1687: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
17370
diff
changeset
|
5 # Last change: 2019 Jul 14 |
7 | 6 # |
414 | 7 # This has script been tested on VMS 6.2 to 8.2 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 |
10328
299f1669c20e
commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents:
9408
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 |
15517
2ad5f0ffaa2e
patch 8.1.0766: various problems when using Vim on VMS
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
46 # NOTE: since Vim 7.3 GTK 2+ is used that is not ported to VMS, |
2ad5f0ffaa2e
patch 8.1.0766: various problems when using Vim on VMS
Bram Moolenaar <Bram@vim.org>
parents:
15330
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 | |
52 # XPM = YES | |
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. !!! | |
5704 | 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 | |
71 | |
72 # X Input Method. For entering special languages like chinese and | |
73 # Japanese. Please define just one: VIM_XIM or VIM_HANGULIN | |
74 # If you don't need it really, leave it behind the comment. | |
75 # VIM_XIM = YES | |
76 | |
77 # Internal Hangul input method. GUI only. | |
78 # If you don't need it really, leave it behind the comment. | |
79 # VIM_HANGULIN = YES | |
80 | |
81 # Allow any white space to separate the fields in a tags file | |
82 # When not defined, only a TAB is allowed. | |
83 # VIM_TAG_ANYWHITE = YES | |
84 | |
2441
620a42739426
Improvements for VMS. (Zoltan Arpadffy)
Bram Moolenaar <bram@vim.org>
parents:
2428
diff
changeset
|
85 # Allow FEATURE_MZSCHEME |
620a42739426
Improvements for VMS. (Zoltan Arpadffy)
Bram Moolenaar <bram@vim.org>
parents:
2428
diff
changeset
|
86 # VIM_MZSCHEME = YES |
620a42739426
Improvements for VMS. (Zoltan Arpadffy)
Bram Moolenaar <bram@vim.org>
parents:
2428
diff
changeset
|
87 |
5704 | 88 # Use ICONV |
89 # VIM_ICONV = YES | |
90 | |
7 | 91 ###################################################################### |
92 # Directory, library and include files configuration section. | |
93 # Normally you need not to change anything below. ! | |
94 # These may need to be defined if things are not in standard locations | |
95 # | |
96 # You can find some explanation in INSTALLVMS.TXT | |
97 ###################################################################### | |
98 | |
99 # Compiler setup | |
100 | |
1045 | 101 .IFDEF MMSVAX |
7 | 102 .IFDEF DECC # VAX with DECC |
5704 | 103 CC_DEF = cc # /decc # some versions require /decc switch but when it is not required /ver might fail |
7 | 104 PREFIX = /prefix=all |
5704 | 105 OPTIMIZE= /noopt # do not optimize on VAX. The compiler has hard time with crypto functions |
7 | 106 .ELSE # VAX with VAXC |
107 CC_DEF = cc | |
108 PREFIX = | |
5704 | 109 OPTIMIZE= /noopt |
7 | 110 CCVER = |
111 .ENDIF | |
5704 | 112 .ELSE # AXP and IA64 with DECC |
7 | 113 CC_DEF = cc |
114 PREFIX = /prefix=all | |
5704 | 115 OPTIMIZE= /opt |
7 | 116 .ENDIF |
117 | |
5704 | 118 |
7 | 119 LD_DEF = link |
120 C_INC = [.proto] | |
121 | |
122 .IFDEF DEBUG | |
123 DEBUG_DEF = ,"DEBUG" | |
124 TARGET = dvim.exe | |
125 CFLAGS = /debug/noopt$(PREFIX) | |
126 LDFLAGS = /debug | |
127 .ELSE | |
128 TARGET = vim.exe | |
5704 | 129 CFLAGS = $(OPTIMIZE)$(PREFIX) |
7 | 130 LDFLAGS = |
131 .ENDIF | |
132 | |
133 # Predefined VIM directories | |
134 # Please, use $VIM and $VIMRUNTIME logicals instead | |
135 VIMLOC = "" | |
136 VIMRUN = "" | |
137 | |
138 CONFIG_H = os_vms_conf.h | |
139 | |
826 | 140 # GTK or XPM but not both |
7 | 141 .IFDEF GTK |
142 .IFDEF GUI | |
143 .ELSE | |
144 GUI = YES | |
145 .ENDIF | |
826 | 146 .IFDEF XPM |
147 XPM = "" | |
148 .ENDIF | |
149 .ENDIF | |
150 | |
151 .IFDEF XPM | |
152 .IFDEF GUI | |
153 .ELSE | |
154 GUI = YES | |
155 .ENDIF | |
156 .IFDEF GTK | |
157 GTK = "" | |
7 | 158 .ENDIF |
414 | 159 .ENDIF |
7 | 160 |
161 .IFDEF GUI | |
162 # X/Motif/GTK executable (also works in terminal mode ) | |
163 | |
164 .IFDEF GTK | |
819 | 165 # NOTE: you need to set up your GTK_DIR (GTK root directory), because it is |
166 # unique on every system - logicals are not accepted | |
414 | 167 # please note: directory should end with . in order to /trans=conc work |
1045 | 168 # 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
|
169 GTK_DIR = DKA0:[WORK.GTK1210.] |
7 | 170 DEFS = "HAVE_CONFIG_H","FEAT_GUI_GTK" |
171 LIBS = ,OS_VMS_GTK.OPT/OPT | |
172 GUI_FLAG = /name=(as_is,short)/float=ieee/ieee=denorm | |
414 | 173 GUI_SRC = gui.c gui_gtk.c gui_gtk_f.c gui_gtk_x11.c gui_beval.c pty.c |
174 GUI_OBJ = gui.obj gui_gtk.obj gui_gtk_f.obj gui_gtk_x11.obj gui_beval.obj pty.obj | |
7 | 175 GUI_INC = ,"/gtk_root/gtk","/gtk_root/glib" |
176 # GUI_INC_VER is used just for :ver information | |
177 # this string should escape from C and DCL in the same time | |
178 GUI_INC_VER= ,\""/gtk_root/gtk\"",\""/gtk_root/glib\"" | |
414 | 179 .ELSE |
7 | 180 MOTIF = YES |
414 | 181 .IFDEF XPM |
182 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
|
183 XPM_INC = ,[.xpm.include] |
414 | 184 .ELSE |
7 | 185 DEFS = "HAVE_CONFIG_H","FEAT_GUI_MOTIF" |
15517
2ad5f0ffaa2e
patch 8.1.0766: various problems when using Vim on VMS
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
186 XPM_INC = |
414 | 187 .ENDIF |
7 | 188 LIBS = ,OS_VMS_MOTIF.OPT/OPT |
189 GUI_FLAG = | |
414 | 190 GUI_SRC = gui.c gui_motif.c gui_x11.c gui_beval.c gui_xmdlg.c gui_xmebw.c |
191 GUI_OBJ = gui.obj gui_motif.obj gui_x11.obj gui_beval.obj gui_xmdlg.obj gui_xmebw.obj | |
7 | 192 GUI_INC = |
193 .ENDIF | |
194 | |
195 # You need to define these variables if you do not have DECW files | |
196 # at standard location | |
197 GUI_INC_DIR = ,decw$include: | |
198 # GUI_LIB_DIR = ,sys$library: | |
199 | |
200 .ELSE | |
201 # Character terminal only executable | |
202 DEFS = "HAVE_CONFIG_H" | |
203 LIBS = | |
204 .ENDIF | |
205 | |
206 .IFDEF VIM_PERL | |
207 # Perl related setup. | |
208 PERL = perl | |
209 PERL_DEF = ,"FEAT_PERL" | |
210 PERL_SRC = if_perlsfio.c if_perl.xs | |
211 PERL_OBJ = if_perlsfio.obj if_perl.obj | |
212 PERL_LIB = ,OS_VMS_PERL.OPT/OPT | |
213 PERL_INC = ,dka0:[perlbuild.perl.lib.vms_axp.5_6_1.core] | |
214 .ENDIF | |
215 | |
216 .IFDEF VIM_PYTHON | |
217 # Python related setup. | |
218 PYTHON_DEF = ,"FEAT_PYTHON" | |
219 PYTHON_SRC = if_python.c | |
220 PYTHON_OBJ = if_python.obj | |
221 PYTHON_LIB = ,OS_VMS_PYTHON.OPT/OPT | |
222 PYTHON_INC = ,PYTHON_INCLUDE | |
223 .ENDIF | |
224 | |
225 .IFDEF VIM_TCL | |
226 # TCL related setup. | |
227 TCL_DEF = ,"FEAT_TCL" | |
228 TCL_SRC = if_tcl.c | |
229 TCL_OBJ = if_tcl.obj | |
230 TCL_LIB = ,OS_VMS_TCL.OPT/OPT | |
231 TCL_INC = ,dka0:[tcl80.generic] | |
232 .ENDIF | |
233 | |
234 .IFDEF VIM_RUBY | |
235 # RUBY related setup. | |
236 RUBY_DEF = ,"FEAT_RUBY" | |
237 RUBY_SRC = if_ruby.c | |
238 RUBY_OBJ = if_ruby.obj | |
239 RUBY_LIB = ,OS_VMS_RUBY.OPT/OPT | |
240 RUBY_INC = | |
241 .ENDIF | |
242 | |
243 .IFDEF VIM_XIM | |
244 # XIM related setup. | |
245 .IFDEF GUI | |
246 XIM_DEF = ,"FEAT_XIM" | |
247 .ENDIF | |
248 .ENDIF | |
249 | |
250 .IFDEF VIM_HANGULIN | |
251 # HANGULIN related setup. | |
252 .IFDEF GUI | |
253 HANGULIN_DEF = ,"FEAT_HANGULIN" | |
254 HANGULIN_SRC = hangulin.c | |
255 HANGULIN_OBJ = hangulin.obj | |
256 .ENDIF | |
257 .ENDIF | |
258 | |
2441
620a42739426
Improvements for VMS. (Zoltan Arpadffy)
Bram Moolenaar <bram@vim.org>
parents:
2428
diff
changeset
|
259 .IFDEF VIM_MZSCHEME |
620a42739426
Improvements for VMS. (Zoltan Arpadffy)
Bram Moolenaar <bram@vim.org>
parents:
2428
diff
changeset
|
260 # MZSCHEME related setup |
620a42739426
Improvements for VMS. (Zoltan Arpadffy)
Bram Moolenaar <bram@vim.org>
parents:
2428
diff
changeset
|
261 MZSCH_DEF = ,"FEAT_MZSCHEME" |
620a42739426
Improvements for VMS. (Zoltan Arpadffy)
Bram Moolenaar <bram@vim.org>
parents:
2428
diff
changeset
|
262 MZSCH_SRC = if_mzsch.c |
620a42739426
Improvements for VMS. (Zoltan Arpadffy)
Bram Moolenaar <bram@vim.org>
parents:
2428
diff
changeset
|
263 MZSCH_OBJ = if_mzsch.obj |
620a42739426
Improvements for VMS. (Zoltan Arpadffy)
Bram Moolenaar <bram@vim.org>
parents:
2428
diff
changeset
|
264 .ENDIF |
7 | 265 |
5704 | 266 .IFDEF VIM_ICONV |
267 # ICONV related setup | |
268 ICONV_DEF = ,"USE_ICONV" | |
269 .ENDIF | |
270 | |
15517
2ad5f0ffaa2e
patch 8.1.0766: various problems when using Vim on VMS
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
271 # XDIFF related setup. |
2ad5f0ffaa2e
patch 8.1.0766: various problems when using Vim on VMS
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
272 XDIFF_SRC = xdiffi.c,xemit.c,xprepare.c,xutils.c,xhistogram.c,xpatience.c |
2ad5f0ffaa2e
patch 8.1.0766: various problems when using Vim on VMS
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
273 XDIFF_OBJ = xdiffi.obj,xemit.obj,xprepare.obj,xutils.obj,xhistogram.obj,xpatience.obj |
2ad5f0ffaa2e
patch 8.1.0766: various problems when using Vim on VMS
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
274 XDIFF_INC = ,[.xdiff] |
2ad5f0ffaa2e
patch 8.1.0766: various problems when using Vim on VMS
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
275 |
7 | 276 ###################################################################### |
277 # End of configuration section. | |
278 # Please, do not change anything below without programming experience. | |
279 ###################################################################### | |
280 | |
281 MODEL_DEF = "FEAT_$(MODEL)", | |
282 | |
283 # These go into pathdef.c | |
284 VIMUSER = "''F$EDIT(F$GETJPI(" ","USERNAME"),"TRIM")'" | |
285 VIMHOST = "''F$TRNLNM("SYS$NODE")'''F$TRNLNM("UCX$INET_HOST")'.''F$TRNLNM("UCX$INET_DOMAIN")'" | |
286 | |
287 .SUFFIXES : .obj .c | |
288 | |
5704 | 289 ALL_CFLAGS = /def=($(MODEL_DEF)$(DEFS)$(DEBUG_DEF)$(PERL_DEF)$(PYTHON_DEF) - |
15517
2ad5f0ffaa2e
patch 8.1.0766: various problems when using Vim on VMS
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
290 $(TCL_DEF)$(RUBY_DEF)$(XIM_DEF)$(HANGULIN_DEF)$(TAG_DEF)$(MZSCH_DEF) - |
2ad5f0ffaa2e
patch 8.1.0766: various problems when using Vim on VMS
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
291 $(ICONV_DEF)) - |
7 | 292 $(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
|
293 /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
|
294 $(TCL_INC)$(XDIFF_INC)$(XPM_INC)) |
7 | 295 |
296 # CFLAGS displayed in :ver information | |
297 # It is specially formated for correct display of unix like includes | |
298 # as $(GUI_INC) - replaced with $(GUI_INC_VER) | |
299 # Otherwise should not be any other difference. | |
5704 | 300 ALL_CFLAGS_VER = /def=($(MODEL_DEF)$(DEFS)$(DEBUG_DEF)$(PERL_DEF)$(PYTHON_DEF) - |
15517
2ad5f0ffaa2e
patch 8.1.0766: various problems when using Vim on VMS
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
301 $(TCL_DEF)$(RUBY_DEF)$(XIM_DEF)$(HANGULIN_DEF)$(TAG_DEF)$(MZSCH_DEF) - |
2ad5f0ffaa2e
patch 8.1.0766: various problems when using Vim on VMS
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
302 $(ICONV_DEF)) - |
7 | 303 $(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
|
304 /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
|
305 $(TCL_INC)$(XDIFF_INC)$(XPM_INC)) |
7 | 306 |
307 ALL_LIBS = $(LIBS) $(GUI_LIB_DIR) $(GUI_LIB) \ | |
8281
74b15ed0a259
commit https://github.com/vim/vim/commit/85b11769ab507c7df93f319fd964fa579701b76b
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
308 $(PERL_LIB) $(PYTHON_LIB) $(TCL_LIB) $(RUBY_LIB) |
7 | 309 |
16644
ac77266f55cb
patch 8.1.1324: stray comma in VMS makefile
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
310 SRC = arabic.c autocmd.c beval.c blob.c blowfish.c buffer.c change.c charset.c \ |
16381
1dcbaa780b8e
patch 8.1.1195: Vim script debugger functionality needs cleanup
Bram Moolenaar <Bram@vim.org>
parents:
16142
diff
changeset
|
311 crypt.c crypt_zip.c debugger.c dict.c diff.c digraph.c edit.c eval.c \ |
1dcbaa780b8e
patch 8.1.1195: Vim script debugger functionality needs cleanup
Bram Moolenaar <Bram@vim.org>
parents:
16142
diff
changeset
|
312 evalfunc.c ex_cmds.c ex_cmds2.c ex_docmd.c ex_eval.c ex_getln.c \ |
1dcbaa780b8e
patch 8.1.1195: Vim script debugger functionality needs cleanup
Bram Moolenaar <Bram@vim.org>
parents:
16142
diff
changeset
|
313 if_cscope.c if_xcmdsrv.c fileio.c findfile.c fold.c getchar.c \ |
17389
635d7f5010b8
patch 8.1.1693: syntax coloring and highlighting is in one big file
Bram Moolenaar <Bram@vim.org>
parents:
17377
diff
changeset
|
314 hardcopy.c hashtab.c highlight.c indent.c insexpand.c json.c list.c \ |
635d7f5010b8
patch 8.1.1693: syntax coloring and highlighting is in one big file
Bram Moolenaar <Bram@vim.org>
parents:
17377
diff
changeset
|
315 main.c mark.c menu.c mbyte.c memfile.c memline.c message.c misc1.c \ |
635d7f5010b8
patch 8.1.1693: syntax coloring and highlighting is in one big file
Bram Moolenaar <Bram@vim.org>
parents:
17377
diff
changeset
|
316 misc2.c move.c normal.c ops.c option.c popupmnu.c popupwin.c \ |
635d7f5010b8
patch 8.1.1693: syntax coloring and highlighting is in one big file
Bram Moolenaar <Bram@vim.org>
parents:
17377
diff
changeset
|
317 profiler.c quickfix.c regexp.c search.c sha256.c sign.c spell.c \ |
635d7f5010b8
patch 8.1.1693: syntax coloring and highlighting is in one big file
Bram Moolenaar <Bram@vim.org>
parents:
17377
diff
changeset
|
318 spellfile.c syntax.c tag.c term.c termlib.c testing.c textprop.c ui.c \ |
17458
cfdef48743ed
patch 8.1.1727: code for viminfo support is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17389
diff
changeset
|
319 undo.c usercmd.c userfunc.c version.c viminfo.c screen.c window.c \ |
cfdef48743ed
patch 8.1.1727: code for viminfo support is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17389
diff
changeset
|
320 os_unix.c os_vms.c pathdef.c \ |
8281
74b15ed0a259
commit https://github.com/vim/vim/commit/85b11769ab507c7df93f319fd964fa579701b76b
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
321 $(GUI_SRC) $(PERL_SRC) $(PYTHON_SRC) $(TCL_SRC) \ |
15517
2ad5f0ffaa2e
patch 8.1.0766: various problems when using Vim on VMS
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
322 $(RUBY_SRC) $(HANGULIN_SRC) $(MZSCH_SRC) $(XDIFF_SRC) |
7 | 323 |
16632
30de89c1d090
patch 8.1.1318: code for text changes is in a "misc" file
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
324 OBJ = arabic.obj autocmd.obj beval.obj blob.obj blowfish.obj buffer.obj change.obj \ |
16381
1dcbaa780b8e
patch 8.1.1195: Vim script debugger functionality needs cleanup
Bram Moolenaar <Bram@vim.org>
parents:
16142
diff
changeset
|
325 charset.obj crypt.obj crypt_zip.obj debugger.obj dict.obj diff.obj \ |
1dcbaa780b8e
patch 8.1.1195: Vim script debugger functionality needs cleanup
Bram Moolenaar <Bram@vim.org>
parents:
16142
diff
changeset
|
326 digraph.obj edit.obj eval.obj evalfunc.obj ex_cmds.obj ex_cmds2.obj \ |
1dcbaa780b8e
patch 8.1.1195: Vim script debugger functionality needs cleanup
Bram Moolenaar <Bram@vim.org>
parents:
16142
diff
changeset
|
327 ex_docmd.obj ex_eval.obj ex_getln.obj if_cscope.obj if_xcmdsrv.obj \ |
15814
99ebf78686a9
patch 8.1.0914: code related to findfile() is spread out
Bram Moolenaar <Bram@vim.org>
parents:
15699
diff
changeset
|
328 fileio.obj findfile.obj fold.obj getchar.obj hardcopy.obj hashtab.obj \ |
17389
635d7f5010b8
patch 8.1.1693: syntax coloring and highlighting is in one big file
Bram Moolenaar <Bram@vim.org>
parents:
17377
diff
changeset
|
329 highlight.obj indent.obj insexpand.obj json.obj list.obj main.obj \ |
635d7f5010b8
patch 8.1.1693: syntax coloring and highlighting is in one big file
Bram Moolenaar <Bram@vim.org>
parents:
17377
diff
changeset
|
330 mark.obj menu.obj memfile.obj memline.obj message.obj misc1.obj \ |
635d7f5010b8
patch 8.1.1693: syntax coloring and highlighting is in one big file
Bram Moolenaar <Bram@vim.org>
parents:
17377
diff
changeset
|
331 misc2.obj move.obj mbyte.obj normal.obj ops.obj option.obj \ |
635d7f5010b8
patch 8.1.1693: syntax coloring and highlighting is in one big file
Bram Moolenaar <Bram@vim.org>
parents:
17377
diff
changeset
|
332 popupmnu.obj popupwin.obj profiler.obj quickfix.obj regexp.obj \ |
635d7f5010b8
patch 8.1.1693: syntax coloring and highlighting is in one big file
Bram Moolenaar <Bram@vim.org>
parents:
17377
diff
changeset
|
333 search.obj sha256.obj sign.obj spell.obj spellfile.obj syntax.obj \ |
635d7f5010b8
patch 8.1.1693: syntax coloring and highlighting is in one big file
Bram Moolenaar <Bram@vim.org>
parents:
17377
diff
changeset
|
334 tag.obj term.obj termlib.obj testing.obj textprop.obj ui.obj undo.obj \ |
17458
cfdef48743ed
patch 8.1.1727: code for viminfo support is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17389
diff
changeset
|
335 usercmd.obj userfunc.obj screen.obj version.obj viminfo.obj window.obj \ |
17389
635d7f5010b8
patch 8.1.1693: syntax coloring and highlighting is in one big file
Bram Moolenaar <Bram@vim.org>
parents:
17377
diff
changeset
|
336 os_unix.obj os_vms.obj pathdef.obj if_mzsch.obj \ |
8281
74b15ed0a259
commit https://github.com/vim/vim/commit/85b11769ab507c7df93f319fd964fa579701b76b
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
337 $(GUI_OBJ) $(PERL_OBJ) $(PYTHON_OBJ) $(TCL_OBJ) \ |
15517
2ad5f0ffaa2e
patch 8.1.0766: various problems when using Vim on VMS
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
338 $(RUBY_OBJ) $(HANGULIN_OBJ) $(MZSCH_OBJ) $(XDIFF_OBJ) |
7 | 339 |
340 # Default target is making the executable | |
341 all : [.auto]config.h mmk_compat motif_env gtk_env perl_env python_env tcl_env ruby_env $(TARGET) | |
342 ! $@ | |
343 | |
344 [.auto]config.h : $(CONFIG_H) | |
345 copy/nolog $(CONFIG_H) [.auto]config.h | |
346 | |
347 mmk_compat : | |
348 -@ open/write pd pathdef.c | |
349 -@ write pd "/* Empty file to satisfy MMK depend. */" | |
1221 | 350 -@ write pd "/* It will be overwritten later on... */" |
7 | 351 -@ close pd |
352 clean : | |
353 -@ if "''F$SEARCH("*.exe")'" .NES. "" then delete/noconfirm/nolog *.exe;* | |
354 -@ if "''F$SEARCH("*.obj")'" .NES. "" then delete/noconfirm/nolog *.obj;* | |
355 -@ if "''F$SEARCH("[.auto]config.h")'" .NES. "" then delete/noconfirm/nolog [.auto]config.h;* | |
356 -@ if "''F$SEARCH("pathdef.c")'" .NES. "" then delete/noconfirm/nolog pathdef.c;* | |
357 -@ if "''F$SEARCH("if_perl.c")'" .NES. "" then delete/noconfirm/nolog if_perl.c;* | |
358 -@ if "''F$SEARCH("*.opt")'" .NES. "" then delete/noconfirm/nolog *.opt;* | |
359 | |
360 # Link the target | |
361 $(TARGET) : $(OBJ) | |
362 $(LD_DEF) $(LDFLAGS) /exe=$(TARGET) $+ $(ALL_LIBS) | |
363 | |
364 .c.obj : | |
365 $(CC_DEF) $(ALL_CFLAGS) $< | |
366 | |
367 pathdef.c : check_ccver $(CONFIG_H) | |
368 -@ write sys$output "creating PATHDEF.C file." | |
369 -@ open/write pd pathdef.c | |
370 -@ write pd "/* pathdef.c -- DO NOT EDIT! */" | |
371 -@ write pd "/* This file is automatically created by MAKE_VMS.MMS" | |
372 -@ write pd " * Change the file MAKE_VMS.MMS Only. */" | |
373 -@ write pd "typedef unsigned char char_u;" | |
374 -@ write pd "char_u *default_vim_dir = (char_u *)"$(VIMLOC)";" | |
375 -@ write pd "char_u *default_vimruntime_dir = (char_u *)"$(VIMRUN)";" | |
376 -@ write pd "char_u *all_cflags = (char_u *)""$(CC_DEF)$(ALL_CFLAGS_VER)"";" | |
377 -@ write pd "char_u *all_lflags = (char_u *)""$(LD_DEF)$(LDFLAGS) /exe=$(TARGET) *.OBJ $(ALL_LIBS)"";" | |
378 -@ write pd "char_u *compiler_version = (char_u *) ""''CC_VER'"";" | |
379 -@ write pd "char_u *compiled_user = (char_u *) "$(VIMUSER)";" | |
1045 | 380 -@ write pd "char_u *compiled_sys = (char_u *) "$(VIMHOST)";" |
381 -@ write pd "char_u *compiled_arch = (char_u *) ""$(MMSARCH_NAME)"";" | |
7 | 382 -@ close pd |
383 | |
384 if_perl.c : if_perl.xs | |
385 -@ $(PERL) PERL_ROOT:[LIB.ExtUtils]xsubpp -prototypes -typemap - | |
386 PERL_ROOT:[LIB.ExtUtils]typemap if_perl.xs >> $@ | |
387 | |
388 make_vms.mms : | |
389 -@ write sys$output "The name of the makefile MUST be <MAKE_VMS.MMS> !!!" | |
390 | |
391 .IFDEF CCVER | |
392 # This part can make some complications if you're using some predefined | |
393 # symbols/flags for your compiler. If does, just comment out CCVER variable | |
394 check_ccver : | |
395 -@ define sys$output cc_ver.tmp | |
396 -@ $(CC_DEF)/version | |
397 -@ deassign sys$output | |
398 -@ open/read file cc_ver.tmp | |
399 -@ read file CC_VER | |
400 -@ close file | |
401 -@ delete/noconfirm/nolog cc_ver.tmp.* | |
402 .ELSE | |
403 check_ccver : | |
404 -@ ! | |
405 .ENDIF | |
406 | |
407 .IFDEF MOTIF | |
408 motif_env : | |
414 | 409 .IFDEF XPM |
410 -@ write sys$output "using DECW/Motif/XPM environment." | |
411 .ELSE | |
856 | 412 -@ write sys$output "using DECW/Motif environment." |
414 | 413 .ENDIF |
7 | 414 -@ write sys$output "creating OS_VMS_MOTIF.OPT file." |
415 -@ open/write opt_file OS_VMS_MOTIF.OPT | |
416 -@ write opt_file "sys$share:decw$xmlibshr12.exe/share,-" | |
417 -@ write opt_file "sys$share:decw$xtlibshrr5.exe/share,-" | |
418 -@ write opt_file "sys$share:decw$xlibshr.exe/share" | |
419 -@ close opt_file | |
420 .ELSE | |
421 motif_env : | |
422 -@ ! | |
423 .ENDIF | |
424 | |
425 | |
426 .IFDEF GTK | |
427 gtk_env : | |
428 -@ write sys$output "using GTK environment:" | |
429 -@ define/nolog gtk_root /trans=conc $(GTK_DIR) | |
430 -@ show logical gtk_root | |
431 -@ write sys$output " include path: "$(GUI_INC)"" | |
432 -@ write sys$output "creating OS_VMS_GTK.OPT file." | |
433 -@ open/write opt_file OS_VMS_GTK.OPT | |
434 -@ write opt_file "gtk_root:[glib]libglib.exe /share,-" | |
435 -@ write opt_file "gtk_root:[glib.gmodule]libgmodule.exe /share,-" | |
436 -@ write opt_file "gtk_root:[gtk.gdk]libgdk.exe /share,-" | |
437 -@ write opt_file "gtk_root:[gtk.gtk]libgtk.exe /share,-" | |
438 -@ write opt_file "sys$share:decw$xmlibshr12.exe/share,-" | |
439 -@ write opt_file "sys$share:decw$xtlibshrr5.exe/share,-" | |
440 -@ write opt_file "sys$share:decw$xlibshr.exe/share" | |
441 -@ close opt_file | |
442 .ELSE | |
443 gtk_env : | |
444 -@ ! | |
445 .ENDIF | |
446 | |
447 .IFDEF VIM_PERL | |
448 perl_env : | |
449 -@ write sys$output "using PERL environment:" | |
450 -@ show logical PERLSHR | |
451 -@ write sys$output " include path: ""$(PERL_INC)""" | |
452 -@ show symbol perl | |
453 -@ open/write pd if_perl.c | |
454 -@ write pd "/* Empty file to satisfy MMK depend. */" | |
1221 | 455 -@ write pd "/* It will be overwritten later on... */" |
7 | 456 -@ close pd |
457 -@ write sys$output "creating OS_VMS_PERL.OPT file." | |
458 -@ open/write opt_file OS_VMS_PERL.OPT | |
459 -@ write opt_file "PERLSHR /share" | |
460 -@ close opt_file | |
461 .ELSE | |
462 perl_env : | |
463 -@ ! | |
464 .ENDIF | |
465 | |
466 .IFDEF VIM_PYTHON | |
467 python_env : | |
468 -@ write sys$output "using PYTHON environment:" | |
469 -@ show logical PYTHON_INCLUDE | |
470 -@ show logical PYTHON_OLB | |
471 -@ write sys$output "creating OS_VMS_PYTHON.OPT file." | |
472 -@ open/write opt_file OS_VMS_PYTHON.OPT | |
473 -@ write opt_file "PYTHON_OLB:PYTHON.OLB /share" | |
474 -@ close opt_file | |
475 .ELSE | |
476 python_env : | |
477 -@ ! | |
478 .ENDIF | |
479 | |
480 .IFDEF VIM_TCL | |
481 tcl_env : | |
482 -@ write sys$output "using TCL environment:" | |
483 -@ show logical TCLSHR | |
484 -@ write sys$output " include path: ""$(TCL_INC)""" | |
485 -@ write sys$output "creating OS_VMS_TCL.OPT file." | |
486 -@ open/write opt_file OS_VMS_TCL.OPT | |
487 -@ write opt_file "TCLSHR /share" | |
488 -@ close opt_file | |
489 .ELSE | |
490 tcl_env : | |
491 -@ ! | |
492 .ENDIF | |
493 | |
494 .IFDEF VIM_RUBY | |
495 ruby_env : | |
496 -@ write sys$output "using RUBY environment:" | |
497 -@ write sys$output " include path: ""$(RUBY_INC)""" | |
498 -@ write sys$output "creating OS_VMS_RUBY.OPT file." | |
499 -@ open/write opt_file OS_VMS_RUBY.OPT | |
500 -@ write opt_file "RUBYSHR /share" | |
501 -@ close opt_file | |
502 .ELSE | |
503 ruby_env : | |
504 -@ ! | |
505 .ENDIF | |
506 | |
9408
6814811b90d5
commit https://github.com/vim/vim/commit/3b98b830017b8bf5fd270db93dfe187434df1960
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
507 arabic.obj : arabic.c vim.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
|
508 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
|
509 blowfish.obj : blowfish.c vim.h [.auto]config.h feature.h os_unix.h |
08604d82fc9e
patch 8.1.0774: VMS build is missing the blob file
Bram Moolenaar <Bram@vim.org>
parents:
15517
diff
changeset
|
510 blob.obj : blob.c vim.h [.auto]config.h feature.h os_unix.h |
39 | 511 buffer.obj : buffer.c vim.h [.auto]config.h feature.h os_unix.h \ |
512 ascii.h keymap.h term.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
|
513 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
16068
8c160339de22
patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
514 globals.h version.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
|
515 change.obj : change.c vim.h [.auto]config.h feature.h os_unix.h \ |
30de89c1d090
patch 8.1.1318: code for text changes is in a "misc" file
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
516 ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
30de89c1d090
patch 8.1.1318: code for text changes is in a "misc" file
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
517 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
30de89c1d090
patch 8.1.1318: code for text changes is in a "misc" file
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
518 globals.h version.h |
39 | 519 charset.obj : charset.c vim.h [.auto]config.h feature.h os_unix.h \ |
520 ascii.h keymap.h term.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
|
521 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
16068
8c160339de22
patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
522 globals.h |
10328
299f1669c20e
commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents:
9408
diff
changeset
|
523 crypt.obj : crypt.c vim.h [.auto]config.h feature.h os_unix.h \ |
299f1669c20e
commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents:
9408
diff
changeset
|
524 ascii.h keymap.h term.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
|
525 beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \ |
16068
8c160339de22
patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
526 globals.h |
10328
299f1669c20e
commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents:
9408
diff
changeset
|
527 crypt_zip.obj : crypt_zip.c vim.h [.auto]config.h feature.h os_unix.h \ |
299f1669c20e
commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents:
9408
diff
changeset
|
528 ascii.h keymap.h term.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
|
529 regexp.h gui.h beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h \ |
16068
8c160339de22
patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
530 proto.h globals.h |
16381
1dcbaa780b8e
patch 8.1.1195: Vim script debugger functionality needs cleanup
Bram Moolenaar <Bram@vim.org>
parents:
16142
diff
changeset
|
531 debugger.obj : debugger.c vim.h [.auto]config.h feature.h os_unix.h \ |
1dcbaa780b8e
patch 8.1.1195: Vim script debugger functionality needs cleanup
Bram Moolenaar <Bram@vim.org>
parents:
16142
diff
changeset
|
532 ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
1dcbaa780b8e
patch 8.1.1195: Vim script debugger functionality needs cleanup
Bram Moolenaar <Bram@vim.org>
parents:
16142
diff
changeset
|
533 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
1dcbaa780b8e
patch 8.1.1195: Vim script debugger functionality needs cleanup
Bram Moolenaar <Bram@vim.org>
parents:
16142
diff
changeset
|
534 globals.h |
10328
299f1669c20e
commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents:
9408
diff
changeset
|
535 dict.obj : dict.c vim.h [.auto]config.h feature.h os_unix.h \ |
299f1669c20e
commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents:
9408
diff
changeset
|
536 ascii.h keymap.h term.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
|
537 beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \ |
16068
8c160339de22
patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
538 globals.h |
39 | 539 diff.obj : diff.c vim.h [.auto]config.h feature.h os_unix.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
|
540 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \ |
15850
a6ca8cf07a98
patch 8.1.0932: Farsi support is outdated and unused
Bram Moolenaar <Bram@vim.org>
parents:
15814
diff
changeset
|
541 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h \ |
16068
8c160339de22
patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
542 |
39 | 543 digraph.obj : digraph.c vim.h [.auto]config.h feature.h os_unix.h \ |
544 ascii.h keymap.h term.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
|
545 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
16068
8c160339de22
patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
546 globals.h |
39 | 547 edit.obj : edit.c vim.h [.auto]config.h feature.h os_unix.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
|
548 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \ |
15850
a6ca8cf07a98
patch 8.1.0932: Farsi support is outdated and unused
Bram Moolenaar <Bram@vim.org>
parents:
15814
diff
changeset
|
549 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h \ |
16068
8c160339de22
patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
550 |
39 | 551 eval.obj : eval.c vim.h [.auto]config.h feature.h os_unix.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
|
552 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \ |
15850
a6ca8cf07a98
patch 8.1.0932: Farsi support is outdated and unused
Bram Moolenaar <Bram@vim.org>
parents:
15814
diff
changeset
|
553 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h \ |
16068
8c160339de22
patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
554 version.h |
10328
299f1669c20e
commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents:
9408
diff
changeset
|
555 evalfunc.obj : evalfunc.c vim.h [.auto]config.h feature.h os_unix.h \ |
299f1669c20e
commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents:
9408
diff
changeset
|
556 ascii.h keymap.h term.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
|
557 regexp.h gui.h beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h \ |
16068
8c160339de22
patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
558 proto.h globals.h version.h |
39 | 559 ex_cmds.obj : ex_cmds.c vim.h [.auto]config.h feature.h os_unix.h \ |
560 ascii.h keymap.h term.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
|
561 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
16068
8c160339de22
patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
562 globals.h version.h |
39 | 563 ex_cmds2.obj : ex_cmds2.c vim.h [.auto]config.h feature.h os_unix.h \ |
564 ascii.h keymap.h term.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
|
565 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
16068
8c160339de22
patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
566 globals.h version.h |
39 | 567 ex_docmd.obj : ex_docmd.c vim.h [.auto]config.h feature.h os_unix.h \ |
568 ascii.h keymap.h term.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
|
569 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
16068
8c160339de22
patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
570 globals.h |
39 | 571 ex_eval.obj : ex_eval.c vim.h [.auto]config.h feature.h os_unix.h \ |
572 ascii.h keymap.h term.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
|
573 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
16068
8c160339de22
patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
574 globals.h |
39 | 575 ex_getln.obj : ex_getln.c vim.h [.auto]config.h feature.h os_unix.h \ |
576 ascii.h keymap.h term.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
|
577 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
16068
8c160339de22
patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
578 globals.h |
39 | 579 fileio.obj : fileio.c vim.h [.auto]config.h feature.h os_unix.h \ |
580 ascii.h keymap.h term.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
|
581 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
16068
8c160339de22
patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
582 globals.h |
15814
99ebf78686a9
patch 8.1.0914: code related to findfile() is spread out
Bram Moolenaar <Bram@vim.org>
parents:
15699
diff
changeset
|
583 findfile.obj : findfile.c vim.h [.auto]config.h feature.h os_unix.h \ |
99ebf78686a9
patch 8.1.0914: code related to findfile() is spread out
Bram Moolenaar <Bram@vim.org>
parents:
15699
diff
changeset
|
584 ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
99ebf78686a9
patch 8.1.0914: code related to findfile() is spread out
Bram Moolenaar <Bram@vim.org>
parents:
15699
diff
changeset
|
585 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
16068
8c160339de22
patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
586 globals.h |
39 | 587 fold.obj : fold.c vim.h [.auto]config.h feature.h os_unix.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
|
588 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \ |
15850
a6ca8cf07a98
patch 8.1.0932: Farsi support is outdated and unused
Bram Moolenaar <Bram@vim.org>
parents:
15814
diff
changeset
|
589 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h \ |
16068
8c160339de22
patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
590 |
39 | 591 getchar.obj : getchar.c vim.h [.auto]config.h feature.h os_unix.h \ |
592 ascii.h keymap.h term.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
|
593 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
16068
8c160339de22
patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
594 globals.h |
440 | 595 hardcopy.obj : hardcopy.c vim.h [.auto]config.h feature.h os_unix.h \ |
596 ascii.h keymap.h term.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
|
597 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
16068
8c160339de22
patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
598 globals.h |
800 | 599 hashtab.obj : hashtab.c vim.h [.auto]config.h feature.h os_unix.h \ |
119 | 600 ascii.h keymap.h term.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
|
601 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
16068
8c160339de22
patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
602 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
|
603 highlight.obj : highlight.c vim.h [.auto]config.h feature.h os_unix.h \ |
635d7f5010b8
patch 8.1.1693: syntax coloring and highlighting is in one big file
Bram Moolenaar <Bram@vim.org>
parents:
17377
diff
changeset
|
604 ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
635d7f5010b8
patch 8.1.1693: syntax coloring and highlighting is in one big file
Bram Moolenaar <Bram@vim.org>
parents:
17377
diff
changeset
|
605 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
635d7f5010b8
patch 8.1.1693: syntax coloring and highlighting is in one big file
Bram Moolenaar <Bram@vim.org>
parents:
17377
diff
changeset
|
606 globals.h |
39 | 607 if_cscope.obj : if_cscope.c vim.h [.auto]config.h feature.h os_unix.h \ |
608 ascii.h keymap.h term.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
|
609 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
16068
8c160339de22
patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
610 globals.h if_cscope.h |
39 | 611 if_xcmdsrv.obj : if_xcmdsrv.c vim.h [.auto]config.h feature.h os_unix.h \ |
612 ascii.h keymap.h term.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
|
613 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
16068
8c160339de22
patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
614 globals.h version.h |
2441
620a42739426
Improvements for VMS. (Zoltan Arpadffy)
Bram Moolenaar <bram@vim.org>
parents:
2428
diff
changeset
|
615 if_mzsch.obj : if_mzsch.c vim.h [.auto]config.h feature.h os_unix.h \ |
620a42739426
Improvements for VMS. (Zoltan Arpadffy)
Bram Moolenaar <bram@vim.org>
parents:
2428
diff
changeset
|
616 ascii.h keymap.h term.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
|
617 regexp.h gui.h beval.h [.proto]gui_beval.pro ex_cmds.h proto.h \ |
16068
8c160339de22
patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
618 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
|
619 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
|
620 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
|
621 json.obj : json.c vim.h [.auto]config.h feature.h os_unix.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
|
622 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \ |
15850
a6ca8cf07a98
patch 8.1.0932: Farsi support is outdated and unused
Bram Moolenaar <Bram@vim.org>
parents:
15814
diff
changeset
|
623 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h \ |
16068
8c160339de22
patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
624 version.h |
10328
299f1669c20e
commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents:
9408
diff
changeset
|
625 list.obj : list.c vim.h [.auto]config.h feature.h os_unix.h \ |
299f1669c20e
commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents:
9408
diff
changeset
|
626 ascii.h keymap.h term.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
|
627 beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \ |
16068
8c160339de22
patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
628 globals.h |
39 | 629 main.obj : main.c vim.h [.auto]config.h feature.h os_unix.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
|
630 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \ |
15850
a6ca8cf07a98
patch 8.1.0932: Farsi support is outdated and unused
Bram Moolenaar <Bram@vim.org>
parents:
15814
diff
changeset
|
631 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h \ |
16068
8c160339de22
patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
632 arabic.c |
39 | 633 mark.obj : mark.c vim.h [.auto]config.h feature.h os_unix.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
|
634 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \ |
15850
a6ca8cf07a98
patch 8.1.0932: Farsi support is outdated and unused
Bram Moolenaar <Bram@vim.org>
parents:
15814
diff
changeset
|
635 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h \ |
16068
8c160339de22
patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
636 |
39 | 637 memfile.obj : memfile.c vim.h [.auto]config.h feature.h os_unix.h \ |
638 ascii.h keymap.h term.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
|
639 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
16068
8c160339de22
patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
640 globals.h |
39 | 641 memline.obj : memline.c vim.h [.auto]config.h feature.h os_unix.h \ |
642 ascii.h keymap.h term.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
|
643 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
16068
8c160339de22
patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
644 globals.h |
39 | 645 menu.obj : menu.c vim.h [.auto]config.h feature.h os_unix.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
|
646 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \ |
15850
a6ca8cf07a98
patch 8.1.0932: Farsi support is outdated and unused
Bram Moolenaar <Bram@vim.org>
parents:
15814
diff
changeset
|
647 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h \ |
16068
8c160339de22
patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
648 |
39 | 649 message.obj : message.c vim.h [.auto]config.h feature.h os_unix.h \ |
650 ascii.h keymap.h term.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
|
651 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
16068
8c160339de22
patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
652 globals.h |
39 | 653 misc1.obj : misc1.c vim.h [.auto]config.h feature.h os_unix.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
|
654 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \ |
15850
a6ca8cf07a98
patch 8.1.0932: Farsi support is outdated and unused
Bram Moolenaar <Bram@vim.org>
parents:
15814
diff
changeset
|
655 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h \ |
16068
8c160339de22
patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
656 version.h |
39 | 657 misc2.obj : misc2.c vim.h [.auto]config.h feature.h os_unix.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
|
658 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \ |
15850
a6ca8cf07a98
patch 8.1.0932: Farsi support is outdated and unused
Bram Moolenaar <Bram@vim.org>
parents:
15814
diff
changeset
|
659 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h \ |
16068
8c160339de22
patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
660 |
39 | 661 move.obj : move.c vim.h [.auto]config.h feature.h os_unix.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
|
662 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \ |
15850
a6ca8cf07a98
patch 8.1.0932: Farsi support is outdated and unused
Bram Moolenaar <Bram@vim.org>
parents:
15814
diff
changeset
|
663 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h \ |
16068
8c160339de22
patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
664 |
39 | 665 mbyte.obj : mbyte.c vim.h [.auto]config.h feature.h os_unix.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
|
666 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \ |
15850
a6ca8cf07a98
patch 8.1.0932: Farsi support is outdated and unused
Bram Moolenaar <Bram@vim.org>
parents:
15814
diff
changeset
|
667 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h \ |
16068
8c160339de22
patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
668 |
39 | 669 normal.obj : normal.c vim.h [.auto]config.h feature.h os_unix.h \ |
670 ascii.h keymap.h term.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
|
671 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
16068
8c160339de22
patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
672 globals.h |
39 | 673 ops.obj : ops.c vim.h [.auto]config.h feature.h os_unix.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
|
674 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \ |
15850
a6ca8cf07a98
patch 8.1.0932: Farsi support is outdated and unused
Bram Moolenaar <Bram@vim.org>
parents:
15814
diff
changeset
|
675 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h \ |
16068
8c160339de22
patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
676 |
39 | 677 option.obj : option.c vim.h [.auto]config.h feature.h os_unix.h \ |
678 ascii.h keymap.h term.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
|
679 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
16068
8c160339de22
patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
680 globals.h |
39 | 681 os_unix.obj : os_unix.c vim.h [.auto]config.h feature.h os_unix.h \ |
682 ascii.h keymap.h term.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
|
683 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
16068
8c160339de22
patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
684 globals.h os_unixx.h |
39 | 685 os_vms.obj : os_vms.c vim.h [.auto]config.h feature.h os_unix.h \ |
686 ascii.h keymap.h term.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
|
687 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
16068
8c160339de22
patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
688 globals.h os_unixx.h |
39 | 689 pathdef.obj : pathdef.c vim.h [.auto]config.h feature.h os_unix.h \ |
690 ascii.h keymap.h term.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
|
691 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
16068
8c160339de22
patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
692 globals.h |
800 | 693 popupmnu.obj : popupmnu.c vim.h [.auto]config.h feature.h os_unix.h \ |
683 | 694 ascii.h keymap.h term.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
|
695 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
16068
8c160339de22
patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
696 globals.h |
16778
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16644
diff
changeset
|
697 popupwin.obj : popupwin.c vim.h [.auto]config.h feature.h os_unix.h \ |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16644
diff
changeset
|
698 ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16644
diff
changeset
|
699 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
eda4d65f232c
patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents:
16644
diff
changeset
|
700 globals.h |
17370
ba06a1c42274
patch 8.1.1684: profiling functionality is spread out
Bram Moolenaar <Bram@vim.org>
parents:
16778
diff
changeset
|
701 profiler.obj : profiler.c vim.h [.auto]config.h feature.h os_unix.h \ |
ba06a1c42274
patch 8.1.1684: profiling functionality is spread out
Bram Moolenaar <Bram@vim.org>
parents:
16778
diff
changeset
|
702 ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
ba06a1c42274
patch 8.1.1684: profiling functionality is spread out
Bram Moolenaar <Bram@vim.org>
parents:
16778
diff
changeset
|
703 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
ba06a1c42274
patch 8.1.1684: profiling functionality is spread out
Bram Moolenaar <Bram@vim.org>
parents:
16778
diff
changeset
|
704 globals.h |
39 | 705 quickfix.obj : quickfix.c vim.h [.auto]config.h feature.h os_unix.h \ |
706 ascii.h keymap.h term.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
|
707 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
16068
8c160339de22
patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
708 globals.h |
39 | 709 regexp.obj : regexp.c vim.h [.auto]config.h feature.h os_unix.h \ |
710 ascii.h keymap.h term.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
|
711 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
16068
8c160339de22
patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
712 globals.h |
39 | 713 screen.obj : screen.c vim.h [.auto]config.h feature.h os_unix.h \ |
714 ascii.h keymap.h term.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
|
715 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
16068
8c160339de22
patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
716 globals.h |
39 | 717 search.obj : search.c vim.h [.auto]config.h feature.h os_unix.h \ |
718 ascii.h keymap.h term.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
|
719 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
16068
8c160339de22
patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
720 globals.h |
10328
299f1669c20e
commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents:
9408
diff
changeset
|
721 sha256.obj : sha256.c vim.h [.auto]config.h feature.h os_unix.h \ |
299f1669c20e
commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents:
9408
diff
changeset
|
722 ascii.h keymap.h term.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
|
723 beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \ |
16068
8c160339de22
patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
724 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
|
725 sign.obj : sign.c vim.h [.auto]config.h feature.h os_unix.h \ |
a6330a49e036
patch 8.1.0673: functionality for signs is spread out over several files
Bram Moolenaar <Bram@vim.org>
parents:
12871
diff
changeset
|
726 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \ |
a6330a49e036
patch 8.1.0673: functionality for signs is spread out over several files
Bram Moolenaar <Bram@vim.org>
parents:
12871
diff
changeset
|
727 beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \ |
16068
8c160339de22
patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
728 globals.h |
221 | 729 spell.obj : spell.c vim.h [.auto]config.h feature.h os_unix.h \ |
730 ascii.h keymap.h term.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
|
731 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
16068
8c160339de22
patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
732 globals.h |
10328
299f1669c20e
commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents:
9408
diff
changeset
|
733 spellfile.obj : spellfile.c vim.h [.auto]config.h feature.h os_unix.h \ |
299f1669c20e
commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents:
9408
diff
changeset
|
734 ascii.h keymap.h term.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
|
735 regexp.h gui.h beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h \ |
16068
8c160339de22
patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
736 proto.h globals.h |
39 | 737 syntax.obj : syntax.c vim.h [.auto]config.h feature.h os_unix.h \ |
738 ascii.h keymap.h term.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
|
739 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
16068
8c160339de22
patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
740 globals.h |
39 | 741 tag.obj : tag.c vim.h [.auto]config.h feature.h os_unix.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
|
742 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \ |
15850
a6ca8cf07a98
patch 8.1.0932: Farsi support is outdated and unused
Bram Moolenaar <Bram@vim.org>
parents:
15814
diff
changeset
|
743 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h \ |
16068
8c160339de22
patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
744 |
39 | 745 term.obj : term.c vim.h [.auto]config.h feature.h os_unix.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
|
746 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \ |
15850
a6ca8cf07a98
patch 8.1.0932: Farsi support is outdated and unused
Bram Moolenaar <Bram@vim.org>
parents:
15814
diff
changeset
|
747 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h \ |
16068
8c160339de22
patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
748 |
39 | 749 termlib.obj : termlib.c vim.h [.auto]config.h feature.h os_unix.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
|
750 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \ |
15850
a6ca8cf07a98
patch 8.1.0932: Farsi support is outdated and unused
Bram Moolenaar <Bram@vim.org>
parents:
15814
diff
changeset
|
751 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h \ |
16068
8c160339de22
patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
752 |
17377
cb008de2a6ec
patch 8.1.1687: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
17370
diff
changeset
|
753 testing.obj : testing.c vim.h [.auto]config.h feature.h os_unix.h \ |
cb008de2a6ec
patch 8.1.1687: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
17370
diff
changeset
|
754 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \ |
cb008de2a6ec
patch 8.1.1687: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
17370
diff
changeset
|
755 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h \ |
cb008de2a6ec
patch 8.1.1687: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
17370
diff
changeset
|
756 |
15517
2ad5f0ffaa2e
patch 8.1.0766: various problems when using Vim on VMS
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
757 textprop.obj : textprop.c vim.h [.auto]config.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
|
758 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \ |
15850
a6ca8cf07a98
patch 8.1.0932: Farsi support is outdated and unused
Bram Moolenaar <Bram@vim.org>
parents:
15814
diff
changeset
|
759 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h \ |
16068
8c160339de22
patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
760 |
39 | 761 ui.obj : ui.c vim.h [.auto]config.h feature.h os_unix.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
|
762 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \ |
15850
a6ca8cf07a98
patch 8.1.0932: Farsi support is outdated and unused
Bram Moolenaar <Bram@vim.org>
parents:
15814
diff
changeset
|
763 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h \ |
16068
8c160339de22
patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
764 |
39 | 765 undo.obj : undo.c vim.h [.auto]config.h feature.h os_unix.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
|
766 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \ |
15850
a6ca8cf07a98
patch 8.1.0932: Farsi support is outdated and unused
Bram Moolenaar <Bram@vim.org>
parents:
15814
diff
changeset
|
767 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h \ |
16068
8c160339de22
patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
768 |
16411
5b5c5daf57de
patch 8.1.1210: support for user commands is spread out
Bram Moolenaar <Bram@vim.org>
parents:
16381
diff
changeset
|
769 usercmd.obj : usercmd.c vim.h [.auto]config.h feature.h os_unix.h \ |
5b5c5daf57de
patch 8.1.1210: support for user commands is spread out
Bram Moolenaar <Bram@vim.org>
parents:
16381
diff
changeset
|
770 ascii.h keymap.h term.h macros.h option.h structs.h \ |
5b5c5daf57de
patch 8.1.1210: support for user commands is spread out
Bram Moolenaar <Bram@vim.org>
parents:
16381
diff
changeset
|
771 regexp.h gui.h beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h \ |
5b5c5daf57de
patch 8.1.1210: support for user commands is spread out
Bram Moolenaar <Bram@vim.org>
parents:
16381
diff
changeset
|
772 proto.h globals.h |
5b5c5daf57de
patch 8.1.1210: support for user commands is spread out
Bram Moolenaar <Bram@vim.org>
parents:
16381
diff
changeset
|
773 |
10328
299f1669c20e
commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents:
9408
diff
changeset
|
774 userfunc.obj : userfunc.c vim.h [.auto]config.h feature.h os_unix.h \ |
299f1669c20e
commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents:
9408
diff
changeset
|
775 ascii.h keymap.h term.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
|
776 regexp.h gui.h beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h \ |
16068
8c160339de22
patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
777 proto.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
|
778 |
39 | 779 version.obj : version.c vim.h [.auto]config.h feature.h os_unix.h \ |
780 ascii.h keymap.h term.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
|
781 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
16068
8c160339de22
patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
782 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
|
783 viminfo.obj : viminfo.c vim.h [.auto]config.h feature.h os_unix.h \ |
cfdef48743ed
patch 8.1.1727: code for viminfo support is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17389
diff
changeset
|
784 ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
cfdef48743ed
patch 8.1.1727: code for viminfo support is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17389
diff
changeset
|
785 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
cfdef48743ed
patch 8.1.1727: code for viminfo support is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17389
diff
changeset
|
786 globals.h version.h |
39 | 787 window.obj : window.c vim.h [.auto]config.h feature.h os_unix.h \ |
788 ascii.h keymap.h term.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
|
789 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
16068
8c160339de22
patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
790 globals.h |
39 | 791 gui.obj : gui.c vim.h [.auto]config.h feature.h os_unix.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
|
792 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \ |
15850
a6ca8cf07a98
patch 8.1.0932: Farsi support is outdated and unused
Bram Moolenaar <Bram@vim.org>
parents:
15814
diff
changeset
|
793 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h \ |
16068
8c160339de22
patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
794 |
39 | 795 gui_gtk.obj : gui_gtk.c gui_gtk_f.h vim.h [.auto]config.h feature.h \ |
796 os_unix.h ascii.h keymap.h term.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
|
797 regexp.h gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h \ |
16068
8c160339de22
patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
798 proto.h globals.h [-.pixmaps]stock_icons.h |
39 | 799 gui_gtk_f.obj : gui_gtk_f.c vim.h [.auto]config.h feature.h os_unix.h \ |
800 ascii.h keymap.h term.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
|
801 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
16068
8c160339de22
patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
802 globals.h gui_gtk_f.h |
39 | 803 gui_motif.obj : gui_motif.c vim.h [.auto]config.h feature.h os_unix.h \ |
804 ascii.h keymap.h term.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
|
805 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
16068
8c160339de22
patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
806 globals.h [-.pixmaps]alert.xpm [-.pixmaps]error.xpm \ |
39 | 807 [-.pixmaps]generic.xpm [-.pixmaps]info.xpm [-.pixmaps]quest.xpm |
808 gui_athena.obj : gui_athena.c vim.h [.auto]config.h feature.h os_unix.h \ | |
809 ascii.h keymap.h term.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
|
810 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
16068
8c160339de22
patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
811 globals.h gui_at_sb.h |
39 | 812 gui_gtk_x11.obj : gui_gtk_x11.c vim.h [.auto]config.h feature.h os_unix.h \ |
813 ascii.h keymap.h term.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 \ |
16068
8c160339de22
patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
815 globals.h gui_gtk_f.h [-.runtime]vim32x32.xpm \ |
39 | 816 [-.runtime]vim16x16.xpm [-.runtime]vim48x48.xpm |
817 gui_x11.obj : gui_x11.c vim.h [.auto]config.h feature.h os_unix.h \ | |
818 ascii.h keymap.h term.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
|
819 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
16068
8c160339de22
patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
820 globals.h [-.runtime]vim32x32.xpm \ |
39 | 821 [-.runtime]vim16x16.xpm [-.runtime]vim48x48.xpm [-.pixmaps]tb_new.xpm \ |
822 [-.pixmaps]tb_open.xpm [-.pixmaps]tb_close.xpm [-.pixmaps]tb_save.xpm \ | |
823 [-.pixmaps]tb_print.xpm [-.pixmaps]tb_cut.xpm [-.pixmaps]tb_copy.xpm \ | |
824 [-.pixmaps]tb_paste.xpm [-.pixmaps]tb_find.xpm \ | |
825 [-.pixmaps]tb_find_next.xpm [-.pixmaps]tb_find_prev.xpm \ | |
826 [-.pixmaps]tb_find_help.xpm [-.pixmaps]tb_exit.xpm \ | |
827 [-.pixmaps]tb_undo.xpm [-.pixmaps]tb_redo.xpm [-.pixmaps]tb_help.xpm \ | |
828 [-.pixmaps]tb_macro.xpm [-.pixmaps]tb_make.xpm \ | |
829 [-.pixmaps]tb_save_all.xpm [-.pixmaps]tb_jump.xpm \ | |
830 [-.pixmaps]tb_ctags.xpm [-.pixmaps]tb_load_session.xpm \ | |
831 [-.pixmaps]tb_save_session.xpm [-.pixmaps]tb_new_session.xpm \ | |
832 [-.pixmaps]tb_blank.xpm [-.pixmaps]tb_maximize.xpm \ | |
833 [-.pixmaps]tb_split.xpm [-.pixmaps]tb_minimize.xpm \ | |
834 [-.pixmaps]tb_shell.xpm [-.pixmaps]tb_replace.xpm \ | |
835 [-.pixmaps]tb_vsplit.xpm [-.pixmaps]tb_maxwidth.xpm \ | |
836 [-.pixmaps]tb_minwidth.xpm | |
837 gui_at_sb.obj : gui_at_sb.c vim.h [.auto]config.h feature.h os_unix.h \ | |
838 ascii.h keymap.h term.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
|
839 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
16068
8c160339de22
patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
840 globals.h gui_at_sb.h |
39 | 841 gui_at_fs.obj : gui_at_fs.c vim.h [.auto]config.h feature.h os_unix.h \ |
842 ascii.h keymap.h term.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
|
843 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
16068
8c160339de22
patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
844 globals.h gui_at_sb.h |
39 | 845 pty.obj : pty.c vim.h [.auto]config.h feature.h os_unix.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
|
846 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \ |
15850
a6ca8cf07a98
patch 8.1.0932: Farsi support is outdated and unused
Bram Moolenaar <Bram@vim.org>
parents:
15814
diff
changeset
|
847 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h \ |
16068
8c160339de22
patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
848 |
39 | 849 hangulin.obj : hangulin.c vim.h [.auto]config.h feature.h os_unix.h \ |
850 ascii.h keymap.h term.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
|
851 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
16068
8c160339de22
patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
852 globals.h |
39 | 853 if_perl.obj : [.auto]if_perl.c vim.h [.auto]config.h feature.h os_unix.h \ |
854 ascii.h keymap.h term.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
|
855 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
16068
8c160339de22
patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
856 globals.h |
39 | 857 if_perlsfio.obj : if_perlsfio.c vim.h [.auto]config.h feature.h os_unix.h \ |
858 ascii.h keymap.h term.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
|
859 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
16068
8c160339de22
patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
860 globals.h |
39 | 861 if_python.obj : if_python.c vim.h [.auto]config.h feature.h os_unix.h \ |
862 ascii.h keymap.h term.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
|
863 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
16068
8c160339de22
patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
864 globals.h |
39 | 865 if_tcl.obj : if_tcl.c vim.h [.auto]config.h feature.h os_unix.h \ |
866 ascii.h keymap.h term.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
|
867 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
16068
8c160339de22
patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
868 globals.h |
39 | 869 if_ruby.obj : if_ruby.c vim.h [.auto]config.h feature.h os_unix.h \ |
870 ascii.h keymap.h term.h macros.h structs.h regexp.h \ | |
12871
1a450ce6980c
patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
871 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
16068
8c160339de22
patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
872 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
|
873 beval.obj : beval.c vim.h [.auto]config.h feature.h os_unix.h \ |
1a450ce6980c
patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
874 ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
1a450ce6980c
patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents:
10328
diff
changeset
|
875 gui.h beval.h option.h ex_cmds.h proto.h \ |
16068
8c160339de22
patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
876 globals.h |
39 | 877 gui_beval.obj : gui_beval.c vim.h [.auto]config.h feature.h os_unix.h \ |
878 ascii.h keymap.h term.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
|
879 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
16068
8c160339de22
patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
880 globals.h |
39 | 881 workshop.obj : workshop.c [.auto]config.h integration.h vim.h feature.h \ |
882 os_unix.h ascii.h keymap.h term.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
|
883 regexp.h gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h \ |
16068
8c160339de22
patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
884 proto.h globals.h version.h workshop.h |
39 | 885 wsdebug.obj : wsdebug.c |
886 integration.obj : integration.c vim.h [.auto]config.h feature.h os_unix.h \ | |
887 ascii.h keymap.h term.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
|
888 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
16068
8c160339de22
patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
889 globals.h integration.h |
39 | 890 netbeans.obj : netbeans.c vim.h [.auto]config.h feature.h os_unix.h \ |
891 ascii.h keymap.h term.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
|
892 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
16068
8c160339de22
patch 8.1.1039: MS-Windows build fails
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
893 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
|
894 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
|
895 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
|
896 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
|
897 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
|
898 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
|
899 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
|
900 xhistogram.obj : [.xdiff]xhistogram.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
|
901 xpatience.obj : [.xdiff]xpatience.c [.xdiff]xinclude.h [.auto]config.h vim.h feature.h os_unix.h |