Mercurial > vim
annotate src/Make_vms.mms @ 2706:34f62bcce014 v7.3.123
updated for version 7.3.123
Problem: ml_get error when executing register being recorded into, deleting
lines and 'conceallevel' is set. (ZyX)
Solution: Don't redraw a line for concealing when it doesn't exist.
author | Bram Moolenaar <bram@vim.org> |
---|---|
date | Tue, 15 Feb 2011 16:29:59 +0100 |
parents | 620a42739426 |
children | 04736b4030ec |
rev | line source |
---|---|
7 | 1 # |
2 # Makefile for Vim on OpenVMS | |
3 # | |
4 # Maintainer: Zoltan Arpadffy <arpadffy@polarhome.com> | |
2441
620a42739426
Improvements for VMS. (Zoltan Arpadffy)
Bram Moolenaar <bram@vim.org>
parents:
2428
diff
changeset
|
5 # Last change: 2008 Aug 16 |
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 # VMS version | |
25 # Uncomment if you use VMS version 6.2 or older | |
26 # OLD_VMS = YES | |
27 | |
28 # Compiler selection. | |
29 # Comment out if you use the VAXC compiler | |
30 DECC = YES | |
31 | |
32 # Build model selection | |
33 # TINY - Almost no features enabled, not even multiple windows | |
34 # SMALL - Few features enabled, as basic as possible | |
35 # NORMAL - A default selection of features enabled | |
36 # BIG - Many features enabled, as rich as possible. (default) | |
37 # HUGE - All possible featues enabled. | |
38 # Please select one of these alternatives above. | |
1709 | 39 MODEL = HUGE |
7 | 40 |
41 # GUI or terminal mode executable. | |
42 # Comment out if you want just the character terminal mode only. | |
826 | 43 # GUI with Motif |
2441
620a42739426
Improvements for VMS. (Zoltan Arpadffy)
Bram Moolenaar <bram@vim.org>
parents:
2428
diff
changeset
|
44 # GUI = YES |
7 | 45 |
46 # GUI with GTK | |
47 # If you have GTK installed you might want to enable this option. | |
1045 | 48 # NOTE: you will need to properly define GTK_DIR below |
7 | 49 # GTK = YES |
50 | |
414 | 51 # GUI/Motif with XPM |
52 # If you have XPM installed you might want to build Motif version with toolbar | |
53 # XPM = YES | |
54 | |
7 | 55 # Comment out if you want the compiler version with :ver command. |
56 # NOTE: This part can make some complications if you're using some | |
57 # predefined symbols/flags for your compiler. If does, just leave behind | |
58 # the comment varialbe CCVER. | |
59 CCVER = YES | |
60 | |
61 # Uncomment if want a debug version. Resulting executable is DVIM.EXE | |
62 # Development purpose only! Normally, it should not be defined. !!! | |
63 # DEBUG = YES | |
64 | |
65 # Languages support for Perl, Python, TCL etc. | |
66 # If you don't need it really, leave them behind the comment. | |
67 # You will need related libraries, include files etc. | |
68 # VIM_TCL = YES | |
69 # VIM_PERL = YES | |
70 # VIM_PYTHON = YES | |
71 # VIM_RUBY = YES | |
72 # VIM_SNIFF = YES | |
73 | |
74 # X Input Method. For entering special languages like chinese and | |
75 # Japanese. Please define just one: VIM_XIM or VIM_HANGULIN | |
76 # If you don't need it really, leave it behind the comment. | |
77 # VIM_XIM = YES | |
78 | |
79 # Internal Hangul input method. GUI only. | |
80 # If you don't need it really, leave it behind the comment. | |
81 # VIM_HANGULIN = YES | |
82 | |
83 # Allow any white space to separate the fields in a tags file | |
84 # When not defined, only a TAB is allowed. | |
85 # VIM_TAG_ANYWHITE = YES | |
86 | |
2441
620a42739426
Improvements for VMS. (Zoltan Arpadffy)
Bram Moolenaar <bram@vim.org>
parents:
2428
diff
changeset
|
87 # Allow FEATURE_MZSCHEME |
620a42739426
Improvements for VMS. (Zoltan Arpadffy)
Bram Moolenaar <bram@vim.org>
parents:
2428
diff
changeset
|
88 # VIM_MZSCHEME = YES |
620a42739426
Improvements for VMS. (Zoltan Arpadffy)
Bram Moolenaar <bram@vim.org>
parents:
2428
diff
changeset
|
89 |
7 | 90 ###################################################################### |
91 # Directory, library and include files configuration section. | |
92 # Normally you need not to change anything below. ! | |
93 # These may need to be defined if things are not in standard locations | |
94 # | |
95 # You can find some explanation in INSTALLVMS.TXT | |
96 ###################################################################### | |
97 | |
98 # Compiler setup | |
99 | |
1045 | 100 .IFDEF MMSVAX |
7 | 101 .IFDEF DECC # VAX with DECC |
1431 | 102 CC_DEF = cc # /decc # some system requires this switch but when it is not required /ver might fail |
7 | 103 PREFIX = /prefix=all |
104 .ELSE # VAX with VAXC | |
105 CC_DEF = cc | |
106 PREFIX = | |
107 CCVER = | |
108 .ENDIF | |
109 .ELSE # AXP wixh DECC | |
110 CC_DEF = cc | |
111 PREFIX = /prefix=all | |
112 .ENDIF | |
113 | |
114 LD_DEF = link | |
115 C_INC = [.proto] | |
116 | |
117 .IFDEF OLD_VMS | |
118 VMS_DEF = ,"OLD_VMS" | |
119 .ENDIF | |
120 | |
121 .IFDEF DEBUG | |
122 DEBUG_DEF = ,"DEBUG" | |
123 TARGET = dvim.exe | |
124 CFLAGS = /debug/noopt$(PREFIX) | |
125 LDFLAGS = /debug | |
126 .ELSE | |
127 TARGET = vim.exe | |
128 CFLAGS = /opt$(PREFIX) | |
129 LDFLAGS = | |
130 .ENDIF | |
131 | |
132 # Predefined VIM directories | |
133 # Please, use $VIM and $VIMRUNTIME logicals instead | |
134 VIMLOC = "" | |
135 VIMRUN = "" | |
136 | |
137 CONFIG_H = os_vms_conf.h | |
138 | |
826 | 139 # GTK or XPM but not both |
7 | 140 .IFDEF GTK |
141 .IFDEF GUI | |
142 .ELSE | |
143 GUI = YES | |
144 .ENDIF | |
826 | 145 .IFDEF XPM |
146 XPM = "" | |
147 .ENDIF | |
148 .ENDIF | |
149 | |
150 .IFDEF XPM | |
151 .IFDEF GUI | |
152 .ELSE | |
153 GUI = YES | |
154 .ENDIF | |
155 .IFDEF GTK | |
156 GTK = "" | |
7 | 157 .ENDIF |
414 | 158 .ENDIF |
7 | 159 |
160 .IFDEF GUI | |
161 # X/Motif/GTK executable (also works in terminal mode ) | |
162 | |
163 .IFDEF GTK | |
819 | 164 # NOTE: you need to set up your GTK_DIR (GTK root directory), because it is |
165 # unique on every system - logicals are not accepted | |
414 | 166 # please note: directory should end with . in order to /trans=conc work |
1045 | 167 # This value for GTK_DIR is an example. |
168 GTK_DIR = $1$DGA104:[USERS.ZAY.WORK.GTK1210.] | |
7 | 169 DEFS = "HAVE_CONFIG_H","FEAT_GUI_GTK" |
170 LIBS = ,OS_VMS_GTK.OPT/OPT | |
171 GUI_FLAG = /name=(as_is,short)/float=ieee/ieee=denorm | |
414 | 172 GUI_SRC = gui.c gui_gtk.c gui_gtk_f.c gui_gtk_x11.c gui_beval.c pty.c |
173 GUI_OBJ = gui.obj gui_gtk.obj gui_gtk_f.obj gui_gtk_x11.obj gui_beval.obj pty.obj | |
7 | 174 GUI_INC = ,"/gtk_root/gtk","/gtk_root/glib" |
175 # GUI_INC_VER is used just for :ver information | |
176 # this string should escape from C and DCL in the same time | |
177 GUI_INC_VER= ,\""/gtk_root/gtk\"",\""/gtk_root/glib\"" | |
414 | 178 .ELSE |
7 | 179 MOTIF = YES |
414 | 180 .IFDEF XPM |
181 DEFS = "HAVE_CONFIG_H","FEAT_GUI_MOTIF","HAVE_XPM" | |
182 .ELSE | |
7 | 183 DEFS = "HAVE_CONFIG_H","FEAT_GUI_MOTIF" |
414 | 184 .ENDIF |
7 | 185 LIBS = ,OS_VMS_MOTIF.OPT/OPT |
186 GUI_FLAG = | |
414 | 187 GUI_SRC = gui.c gui_motif.c gui_x11.c gui_beval.c gui_xmdlg.c gui_xmebw.c |
188 GUI_OBJ = gui.obj gui_motif.obj gui_x11.obj gui_beval.obj gui_xmdlg.obj gui_xmebw.obj | |
7 | 189 GUI_INC = |
190 .ENDIF | |
191 | |
192 # You need to define these variables if you do not have DECW files | |
193 # at standard location | |
194 GUI_INC_DIR = ,decw$include: | |
195 # GUI_LIB_DIR = ,sys$library: | |
196 | |
197 .ELSE | |
198 # Character terminal only executable | |
199 DEFS = "HAVE_CONFIG_H" | |
200 LIBS = | |
201 .ENDIF | |
202 | |
203 .IFDEF VIM_PERL | |
204 # Perl related setup. | |
205 PERL = perl | |
206 PERL_DEF = ,"FEAT_PERL" | |
207 PERL_SRC = if_perlsfio.c if_perl.xs | |
208 PERL_OBJ = if_perlsfio.obj if_perl.obj | |
209 PERL_LIB = ,OS_VMS_PERL.OPT/OPT | |
210 PERL_INC = ,dka0:[perlbuild.perl.lib.vms_axp.5_6_1.core] | |
211 .ENDIF | |
212 | |
213 .IFDEF VIM_PYTHON | |
214 # Python related setup. | |
215 PYTHON_DEF = ,"FEAT_PYTHON" | |
216 PYTHON_SRC = if_python.c | |
217 PYTHON_OBJ = if_python.obj | |
218 PYTHON_LIB = ,OS_VMS_PYTHON.OPT/OPT | |
219 PYTHON_INC = ,PYTHON_INCLUDE | |
220 .ENDIF | |
221 | |
222 .IFDEF VIM_TCL | |
223 # TCL related setup. | |
224 TCL_DEF = ,"FEAT_TCL" | |
225 TCL_SRC = if_tcl.c | |
226 TCL_OBJ = if_tcl.obj | |
227 TCL_LIB = ,OS_VMS_TCL.OPT/OPT | |
228 TCL_INC = ,dka0:[tcl80.generic] | |
229 .ENDIF | |
230 | |
231 .IFDEF VIM_SNIFF | |
232 # SNIFF related setup. | |
233 SNIFF_DEF = ,"FEAT_SNIFF" | |
234 SNIFF_SRC = if_sniff.c | |
235 SNIFF_OBJ = if_sniff.obj | |
236 SNIFF_LIB = | |
237 SNIFF_INC = | |
238 .ENDIF | |
239 | |
240 .IFDEF VIM_RUBY | |
241 # RUBY related setup. | |
242 RUBY_DEF = ,"FEAT_RUBY" | |
243 RUBY_SRC = if_ruby.c | |
244 RUBY_OBJ = if_ruby.obj | |
245 RUBY_LIB = ,OS_VMS_RUBY.OPT/OPT | |
246 RUBY_INC = | |
247 .ENDIF | |
248 | |
249 .IFDEF VIM_XIM | |
250 # XIM related setup. | |
251 .IFDEF GUI | |
252 XIM_DEF = ,"FEAT_XIM" | |
253 .ENDIF | |
254 .ENDIF | |
255 | |
256 .IFDEF VIM_HANGULIN | |
257 # HANGULIN related setup. | |
258 .IFDEF GUI | |
259 HANGULIN_DEF = ,"FEAT_HANGULIN" | |
260 HANGULIN_SRC = hangulin.c | |
261 HANGULIN_OBJ = hangulin.obj | |
262 .ENDIF | |
263 .ENDIF | |
264 | |
265 .IFDEF VIM_TAG_ANYWHITE | |
266 # TAG_ANYWHITE related setup. | |
267 TAG_DEF = ,"FEAT_TAG_ANYWHITE" | |
268 .ENDIF | |
269 | |
2441
620a42739426
Improvements for VMS. (Zoltan Arpadffy)
Bram Moolenaar <bram@vim.org>
parents:
2428
diff
changeset
|
270 .IFDEF VIM_MZSCHEME |
620a42739426
Improvements for VMS. (Zoltan Arpadffy)
Bram Moolenaar <bram@vim.org>
parents:
2428
diff
changeset
|
271 # MZSCHEME related setup |
620a42739426
Improvements for VMS. (Zoltan Arpadffy)
Bram Moolenaar <bram@vim.org>
parents:
2428
diff
changeset
|
272 MZSCH_DEF = ,"FEAT_MZSCHEME" |
620a42739426
Improvements for VMS. (Zoltan Arpadffy)
Bram Moolenaar <bram@vim.org>
parents:
2428
diff
changeset
|
273 MZSCH_SRC = if_mzsch.c |
620a42739426
Improvements for VMS. (Zoltan Arpadffy)
Bram Moolenaar <bram@vim.org>
parents:
2428
diff
changeset
|
274 MZSCH_OBJ = if_mzsch.obj |
620a42739426
Improvements for VMS. (Zoltan Arpadffy)
Bram Moolenaar <bram@vim.org>
parents:
2428
diff
changeset
|
275 .ENDIF |
7 | 276 |
277 ###################################################################### | |
278 # End of configuration section. | |
279 # Please, do not change anything below without programming experience. | |
280 ###################################################################### | |
281 | |
282 MODEL_DEF = "FEAT_$(MODEL)", | |
283 | |
284 # These go into pathdef.c | |
285 VIMUSER = "''F$EDIT(F$GETJPI(" ","USERNAME"),"TRIM")'" | |
286 VIMHOST = "''F$TRNLNM("SYS$NODE")'''F$TRNLNM("UCX$INET_HOST")'.''F$TRNLNM("UCX$INET_DOMAIN")'" | |
287 | |
288 .SUFFIXES : .obj .c | |
289 | |
290 ALL_CFLAGS = /def=($(MODEL_DEF)$(DEFS)$(VMS_DEF)$(DEBUG_DEF)$(PERL_DEF)$(PYTHON_DEF) - | |
2441
620a42739426
Improvements for VMS. (Zoltan Arpadffy)
Bram Moolenaar <bram@vim.org>
parents:
2428
diff
changeset
|
291 $(TCL_DEF)$(SNIFF_DEF)$(RUBY_DEF)$(XIM_DEF)$(HANGULIN_DEF)$(TAG_DEF)$(MZSCH_DEF)) - |
7 | 292 $(CFLAGS)$(GUI_FLAG) - |
293 /include=($(C_INC)$(GUI_INC_DIR)$(GUI_INC)$(PERL_INC)$(PYTHON_INC)$(TCL_INC)) | |
294 | |
295 # CFLAGS displayed in :ver information | |
296 # It is specially formated for correct display of unix like includes | |
297 # as $(GUI_INC) - replaced with $(GUI_INC_VER) | |
298 # Otherwise should not be any other difference. | |
299 ALL_CFLAGS_VER = /def=($(MODEL_DEF)$(DEFS)$(VMS_DEF)$(DEBUG_DEF)$(PERL_DEF)$(PYTHON_DEF) - | |
2441
620a42739426
Improvements for VMS. (Zoltan Arpadffy)
Bram Moolenaar <bram@vim.org>
parents:
2428
diff
changeset
|
300 $(TCL_DEF)$(SNIFF_DEF)$(RUBY_DEF)$(XIM_DEF)$(HANGULIN_DEF)$(TAG_DEF)$(MZSCH_DEF)) - |
7 | 301 $(CFLAGS)$(GUI_FLAG) - |
302 /include=($(C_INC)$(GUI_INC_DIR)$(GUI_INC_VER)$(PERL_INC)$(PYTHON_INC)$(TCL_INC)) | |
303 | |
304 ALL_LIBS = $(LIBS) $(GUI_LIB_DIR) $(GUI_LIB) \ | |
305 $(PERL_LIB) $(PYTHON_LIB) $(TCL_LIB) $(SNIFF_LIB) $(RUBY_LIB) | |
306 | |
2428
33148c37f3c9
Changes for VMS. Mostly by Zoltan Arpadffy.
Bram Moolenaar <bram@vim.org>
parents:
1709
diff
changeset
|
307 SRC = blowfish.c buffer.c charset.c diff.c digraph.c edit.c eval.c ex_cmds.c ex_cmds2.c \ |
7 | 308 ex_docmd.c ex_eval.c ex_getln.c if_xcmdsrv.c fileio.c fold.c getchar.c \ |
800 | 309 hardcopy.c hashtab.c main.c mark.c menu.c mbyte.c memfile.c memline.c message.c misc1.c \ |
2428
33148c37f3c9
Changes for VMS. Mostly by Zoltan Arpadffy.
Bram Moolenaar <bram@vim.org>
parents:
1709
diff
changeset
|
310 misc2.c move.c normal.c ops.c option.c popupmnu.c quickfix.c regexp.c search.c sha256.c\ |
221 | 311 spell.c syntax.c tag.c term.c termlib.c ui.c undo.c version.c screen.c \ |
7 | 312 window.c os_unix.c os_vms.c pathdef.c \ |
313 $(GUI_SRC) $(PERL_SRC) $(PYTHON_SRC) $(TCL_SRC) $(SNIFF_SRC) \ | |
2441
620a42739426
Improvements for VMS. (Zoltan Arpadffy)
Bram Moolenaar <bram@vim.org>
parents:
2428
diff
changeset
|
314 $(RUBY_SRC) $(HANGULIN_SRC) $(MZSCH_SRC) |
7 | 315 |
2428
33148c37f3c9
Changes for VMS. Mostly by Zoltan Arpadffy.
Bram Moolenaar <bram@vim.org>
parents:
1709
diff
changeset
|
316 OBJ = blowfish.obj buffer.obj charset.obj diff.obj digraph.obj edit.obj eval.obj \ |
7 | 317 ex_cmds.obj ex_cmds2.obj ex_docmd.obj ex_eval.obj ex_getln.obj \ |
800 | 318 if_xcmdsrv.obj fileio.obj fold.obj getchar.obj hardcopy.obj hashtab.obj main.obj mark.obj \ |
7 | 319 menu.obj memfile.obj memline.obj message.obj misc1.obj misc2.obj \ |
800 | 320 move.obj mbyte.obj normal.obj ops.obj option.obj popupmnu.obj quickfix.obj \ |
2428
33148c37f3c9
Changes for VMS. Mostly by Zoltan Arpadffy.
Bram Moolenaar <bram@vim.org>
parents:
1709
diff
changeset
|
321 regexp.obj search.obj sha256.obj spell.obj syntax.obj tag.obj term.obj termlib.obj \ |
7 | 322 ui.obj undo.obj screen.obj version.obj window.obj os_unix.obj \ |
2441
620a42739426
Improvements for VMS. (Zoltan Arpadffy)
Bram Moolenaar <bram@vim.org>
parents:
2428
diff
changeset
|
323 os_vms.obj pathdef.obj if_mzsch.obj\ |
7 | 324 $(GUI_OBJ) $(PERL_OBJ) $(PYTHON_OBJ) $(TCL_OBJ) $(SNIFF_OBJ) \ |
2441
620a42739426
Improvements for VMS. (Zoltan Arpadffy)
Bram Moolenaar <bram@vim.org>
parents:
2428
diff
changeset
|
325 $(RUBY_OBJ) $(HANGULIN_OBJ) $(MZSCH_OBJ) |
7 | 326 |
327 # Default target is making the executable | |
328 all : [.auto]config.h mmk_compat motif_env gtk_env perl_env python_env tcl_env ruby_env $(TARGET) | |
329 ! $@ | |
330 | |
331 [.auto]config.h : $(CONFIG_H) | |
332 copy/nolog $(CONFIG_H) [.auto]config.h | |
333 | |
334 mmk_compat : | |
335 -@ open/write pd pathdef.c | |
336 -@ write pd "/* Empty file to satisfy MMK depend. */" | |
1221 | 337 -@ write pd "/* It will be overwritten later on... */" |
7 | 338 -@ close pd |
339 clean : | |
340 -@ if "''F$SEARCH("*.exe")'" .NES. "" then delete/noconfirm/nolog *.exe;* | |
341 -@ if "''F$SEARCH("*.obj")'" .NES. "" then delete/noconfirm/nolog *.obj;* | |
342 -@ if "''F$SEARCH("[.auto]config.h")'" .NES. "" then delete/noconfirm/nolog [.auto]config.h;* | |
343 -@ if "''F$SEARCH("pathdef.c")'" .NES. "" then delete/noconfirm/nolog pathdef.c;* | |
344 -@ if "''F$SEARCH("if_perl.c")'" .NES. "" then delete/noconfirm/nolog if_perl.c;* | |
345 -@ if "''F$SEARCH("*.opt")'" .NES. "" then delete/noconfirm/nolog *.opt;* | |
346 | |
347 # Link the target | |
348 $(TARGET) : $(OBJ) | |
349 $(LD_DEF) $(LDFLAGS) /exe=$(TARGET) $+ $(ALL_LIBS) | |
350 | |
351 .c.obj : | |
352 $(CC_DEF) $(ALL_CFLAGS) $< | |
353 | |
354 pathdef.c : check_ccver $(CONFIG_H) | |
355 -@ write sys$output "creating PATHDEF.C file." | |
356 -@ open/write pd pathdef.c | |
357 -@ write pd "/* pathdef.c -- DO NOT EDIT! */" | |
358 -@ write pd "/* This file is automatically created by MAKE_VMS.MMS" | |
359 -@ write pd " * Change the file MAKE_VMS.MMS Only. */" | |
360 -@ write pd "typedef unsigned char char_u;" | |
361 -@ write pd "char_u *default_vim_dir = (char_u *)"$(VIMLOC)";" | |
362 -@ write pd "char_u *default_vimruntime_dir = (char_u *)"$(VIMRUN)";" | |
363 -@ write pd "char_u *all_cflags = (char_u *)""$(CC_DEF)$(ALL_CFLAGS_VER)"";" | |
364 -@ write pd "char_u *all_lflags = (char_u *)""$(LD_DEF)$(LDFLAGS) /exe=$(TARGET) *.OBJ $(ALL_LIBS)"";" | |
365 -@ write pd "char_u *compiler_version = (char_u *) ""''CC_VER'"";" | |
366 -@ write pd "char_u *compiled_user = (char_u *) "$(VIMUSER)";" | |
1045 | 367 -@ write pd "char_u *compiled_sys = (char_u *) "$(VIMHOST)";" |
368 -@ write pd "char_u *compiled_arch = (char_u *) ""$(MMSARCH_NAME)"";" | |
7 | 369 -@ close pd |
370 | |
371 if_perl.c : if_perl.xs | |
372 -@ $(PERL) PERL_ROOT:[LIB.ExtUtils]xsubpp -prototypes -typemap - | |
373 PERL_ROOT:[LIB.ExtUtils]typemap if_perl.xs >> $@ | |
374 | |
375 make_vms.mms : | |
376 -@ write sys$output "The name of the makefile MUST be <MAKE_VMS.MMS> !!!" | |
377 | |
378 .IFDEF CCVER | |
379 # This part can make some complications if you're using some predefined | |
380 # symbols/flags for your compiler. If does, just comment out CCVER variable | |
381 check_ccver : | |
382 -@ define sys$output cc_ver.tmp | |
383 -@ $(CC_DEF)/version | |
384 -@ deassign sys$output | |
385 -@ open/read file cc_ver.tmp | |
386 -@ read file CC_VER | |
387 -@ close file | |
388 -@ delete/noconfirm/nolog cc_ver.tmp.* | |
389 .ELSE | |
390 check_ccver : | |
391 -@ ! | |
392 .ENDIF | |
393 | |
394 .IFDEF MOTIF | |
395 motif_env : | |
414 | 396 .IFDEF XPM |
397 -@ write sys$output "using DECW/Motif/XPM environment." | |
398 .ELSE | |
856 | 399 -@ write sys$output "using DECW/Motif environment." |
414 | 400 .ENDIF |
7 | 401 -@ write sys$output "creating OS_VMS_MOTIF.OPT file." |
402 -@ open/write opt_file OS_VMS_MOTIF.OPT | |
403 -@ write opt_file "sys$share:decw$xmlibshr12.exe/share,-" | |
404 -@ write opt_file "sys$share:decw$xtlibshrr5.exe/share,-" | |
405 -@ write opt_file "sys$share:decw$xlibshr.exe/share" | |
406 -@ close opt_file | |
407 .ELSE | |
408 motif_env : | |
409 -@ ! | |
410 .ENDIF | |
411 | |
412 | |
413 .IFDEF GTK | |
414 gtk_env : | |
415 -@ write sys$output "using GTK environment:" | |
416 -@ define/nolog gtk_root /trans=conc $(GTK_DIR) | |
417 -@ show logical gtk_root | |
418 -@ write sys$output " include path: "$(GUI_INC)"" | |
419 -@ write sys$output "creating OS_VMS_GTK.OPT file." | |
420 -@ open/write opt_file OS_VMS_GTK.OPT | |
421 -@ write opt_file "gtk_root:[glib]libglib.exe /share,-" | |
422 -@ write opt_file "gtk_root:[glib.gmodule]libgmodule.exe /share,-" | |
423 -@ write opt_file "gtk_root:[gtk.gdk]libgdk.exe /share,-" | |
424 -@ write opt_file "gtk_root:[gtk.gtk]libgtk.exe /share,-" | |
425 -@ write opt_file "sys$share:decw$xmlibshr12.exe/share,-" | |
426 -@ write opt_file "sys$share:decw$xtlibshrr5.exe/share,-" | |
427 -@ write opt_file "sys$share:decw$xlibshr.exe/share" | |
428 -@ close opt_file | |
429 .ELSE | |
430 gtk_env : | |
431 -@ ! | |
432 .ENDIF | |
433 | |
434 .IFDEF VIM_PERL | |
435 perl_env : | |
436 -@ write sys$output "using PERL environment:" | |
437 -@ show logical PERLSHR | |
438 -@ write sys$output " include path: ""$(PERL_INC)""" | |
439 -@ show symbol perl | |
440 -@ open/write pd if_perl.c | |
441 -@ write pd "/* Empty file to satisfy MMK depend. */" | |
1221 | 442 -@ write pd "/* It will be overwritten later on... */" |
7 | 443 -@ close pd |
444 -@ write sys$output "creating OS_VMS_PERL.OPT file." | |
445 -@ open/write opt_file OS_VMS_PERL.OPT | |
446 -@ write opt_file "PERLSHR /share" | |
447 -@ close opt_file | |
448 .ELSE | |
449 perl_env : | |
450 -@ ! | |
451 .ENDIF | |
452 | |
453 .IFDEF VIM_PYTHON | |
454 python_env : | |
455 -@ write sys$output "using PYTHON environment:" | |
456 -@ show logical PYTHON_INCLUDE | |
457 -@ show logical PYTHON_OLB | |
458 -@ write sys$output "creating OS_VMS_PYTHON.OPT file." | |
459 -@ open/write opt_file OS_VMS_PYTHON.OPT | |
460 -@ write opt_file "PYTHON_OLB:PYTHON.OLB /share" | |
461 -@ close opt_file | |
462 .ELSE | |
463 python_env : | |
464 -@ ! | |
465 .ENDIF | |
466 | |
467 .IFDEF VIM_TCL | |
468 tcl_env : | |
469 -@ write sys$output "using TCL environment:" | |
470 -@ show logical TCLSHR | |
471 -@ write sys$output " include path: ""$(TCL_INC)""" | |
472 -@ write sys$output "creating OS_VMS_TCL.OPT file." | |
473 -@ open/write opt_file OS_VMS_TCL.OPT | |
474 -@ write opt_file "TCLSHR /share" | |
475 -@ close opt_file | |
476 .ELSE | |
477 tcl_env : | |
478 -@ ! | |
479 .ENDIF | |
480 | |
481 .IFDEF VIM_RUBY | |
482 ruby_env : | |
483 -@ write sys$output "using RUBY environment:" | |
484 -@ write sys$output " include path: ""$(RUBY_INC)""" | |
485 -@ write sys$output "creating OS_VMS_RUBY.OPT file." | |
486 -@ open/write opt_file OS_VMS_RUBY.OPT | |
487 -@ write opt_file "RUBYSHR /share" | |
488 -@ close opt_file | |
489 .ELSE | |
490 ruby_env : | |
491 -@ ! | |
492 .ENDIF | |
493 | |
39 | 494 buffer.obj : buffer.c vim.h [.auto]config.h feature.h os_unix.h \ |
495 ascii.h keymap.h term.h macros.h structs.h regexp.h \ | |
496 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ | |
497 globals.h farsi.h arabic.h version.h | |
498 charset.obj : charset.c vim.h [.auto]config.h feature.h os_unix.h \ | |
499 ascii.h keymap.h term.h macros.h structs.h regexp.h \ | |
500 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ | |
501 globals.h farsi.h arabic.h | |
502 diff.obj : diff.c vim.h [.auto]config.h feature.h os_unix.h \ | |
503 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \ | |
504 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \ | |
505 arabic.h | |
506 digraph.obj : digraph.c vim.h [.auto]config.h feature.h os_unix.h \ | |
507 ascii.h keymap.h term.h macros.h structs.h regexp.h \ | |
508 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ | |
509 globals.h farsi.h arabic.h | |
510 edit.obj : edit.c vim.h [.auto]config.h feature.h os_unix.h \ | |
511 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \ | |
512 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \ | |
513 arabic.h | |
514 eval.obj : eval.c vim.h [.auto]config.h feature.h os_unix.h \ | |
515 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \ | |
516 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \ | |
517 arabic.h version.h | |
518 ex_cmds.obj : ex_cmds.c vim.h [.auto]config.h feature.h os_unix.h \ | |
519 ascii.h keymap.h term.h macros.h structs.h regexp.h \ | |
520 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ | |
521 globals.h farsi.h arabic.h version.h | |
522 ex_cmds2.obj : ex_cmds2.c vim.h [.auto]config.h feature.h os_unix.h \ | |
523 ascii.h keymap.h term.h macros.h structs.h regexp.h \ | |
524 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ | |
525 globals.h farsi.h arabic.h version.h | |
526 ex_docmd.obj : ex_docmd.c vim.h [.auto]config.h feature.h os_unix.h \ | |
527 ascii.h keymap.h term.h macros.h structs.h regexp.h \ | |
528 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ | |
529 globals.h farsi.h arabic.h | |
530 ex_eval.obj : ex_eval.c vim.h [.auto]config.h feature.h os_unix.h \ | |
531 ascii.h keymap.h term.h macros.h structs.h regexp.h \ | |
532 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ | |
533 globals.h farsi.h arabic.h | |
534 ex_getln.obj : ex_getln.c vim.h [.auto]config.h feature.h os_unix.h \ | |
535 ascii.h keymap.h term.h macros.h structs.h regexp.h \ | |
536 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ | |
537 globals.h farsi.h arabic.h | |
538 fileio.obj : fileio.c vim.h [.auto]config.h feature.h os_unix.h \ | |
539 ascii.h keymap.h term.h macros.h structs.h regexp.h \ | |
540 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ | |
541 globals.h farsi.h arabic.h | |
542 fold.obj : fold.c vim.h [.auto]config.h feature.h os_unix.h \ | |
543 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \ | |
544 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \ | |
545 arabic.h | |
546 getchar.obj : getchar.c vim.h [.auto]config.h feature.h os_unix.h \ | |
547 ascii.h keymap.h term.h macros.h structs.h regexp.h \ | |
548 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ | |
549 globals.h farsi.h arabic.h | |
440 | 550 hardcopy.obj : hardcopy.c vim.h [.auto]config.h feature.h os_unix.h \ |
551 ascii.h keymap.h term.h macros.h structs.h regexp.h \ | |
552 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ | |
553 globals.h farsi.h arabic.h | |
800 | 554 hashtab.obj : hashtab.c vim.h [.auto]config.h feature.h os_unix.h \ |
119 | 555 ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
556 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ | |
557 globals.h farsi.h arabic.h | |
39 | 558 if_cscope.obj : if_cscope.c vim.h [.auto]config.h feature.h os_unix.h \ |
559 ascii.h keymap.h term.h macros.h structs.h regexp.h \ | |
560 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ | |
561 globals.h farsi.h arabic.h if_cscope.h | |
562 if_xcmdsrv.obj : if_xcmdsrv.c vim.h [.auto]config.h feature.h os_unix.h \ | |
563 ascii.h keymap.h term.h macros.h structs.h regexp.h \ | |
564 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ | |
565 globals.h farsi.h arabic.h version.h | |
2441
620a42739426
Improvements for VMS. (Zoltan Arpadffy)
Bram Moolenaar <bram@vim.org>
parents:
2428
diff
changeset
|
566 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
|
567 ascii.h keymap.h term.h macros.h option.h structs.h \ |
620a42739426
Improvements for VMS. (Zoltan Arpadffy)
Bram Moolenaar <bram@vim.org>
parents:
2428
diff
changeset
|
568 regexp.h gui.h gui_beval.h [.proto]gui_beval.pro ex_cmds.h proto.h \ |
620a42739426
Improvements for VMS. (Zoltan Arpadffy)
Bram Moolenaar <bram@vim.org>
parents:
2428
diff
changeset
|
569 globals.h farsi.h arabic.h if_mzsch.h |
39 | 570 main.obj : main.c vim.h [.auto]config.h feature.h os_unix.h \ |
571 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \ | |
572 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \ | |
573 arabic.h farsi.c arabic.c | |
574 mark.obj : mark.c vim.h [.auto]config.h feature.h os_unix.h \ | |
575 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \ | |
576 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \ | |
577 arabic.h | |
578 memfile.obj : memfile.c vim.h [.auto]config.h feature.h os_unix.h \ | |
579 ascii.h keymap.h term.h macros.h structs.h regexp.h \ | |
580 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ | |
581 globals.h farsi.h arabic.h | |
582 memline.obj : memline.c vim.h [.auto]config.h feature.h os_unix.h \ | |
583 ascii.h keymap.h term.h macros.h structs.h regexp.h \ | |
584 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ | |
585 globals.h farsi.h arabic.h | |
586 menu.obj : menu.c vim.h [.auto]config.h feature.h os_unix.h \ | |
587 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \ | |
588 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \ | |
589 arabic.h | |
590 message.obj : message.c vim.h [.auto]config.h feature.h os_unix.h \ | |
591 ascii.h keymap.h term.h macros.h structs.h regexp.h \ | |
592 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ | |
593 globals.h farsi.h arabic.h | |
594 misc1.obj : misc1.c vim.h [.auto]config.h feature.h os_unix.h \ | |
595 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \ | |
596 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \ | |
597 arabic.h version.h | |
598 misc2.obj : misc2.c vim.h [.auto]config.h feature.h os_unix.h \ | |
599 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \ | |
600 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \ | |
601 arabic.h | |
602 move.obj : move.c vim.h [.auto]config.h feature.h os_unix.h \ | |
603 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \ | |
604 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \ | |
605 arabic.h | |
606 mbyte.obj : mbyte.c vim.h [.auto]config.h feature.h os_unix.h \ | |
607 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \ | |
608 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \ | |
609 arabic.h | |
610 normal.obj : normal.c vim.h [.auto]config.h feature.h os_unix.h \ | |
611 ascii.h keymap.h term.h macros.h structs.h regexp.h \ | |
612 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ | |
613 globals.h farsi.h arabic.h | |
614 ops.obj : ops.c vim.h [.auto]config.h feature.h os_unix.h \ | |
615 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \ | |
616 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \ | |
617 arabic.h | |
618 option.obj : option.c vim.h [.auto]config.h feature.h os_unix.h \ | |
619 ascii.h keymap.h term.h macros.h structs.h regexp.h \ | |
620 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ | |
621 globals.h farsi.h arabic.h | |
622 os_unix.obj : os_unix.c vim.h [.auto]config.h feature.h os_unix.h \ | |
623 ascii.h keymap.h term.h macros.h structs.h regexp.h \ | |
624 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ | |
625 globals.h farsi.h arabic.h os_unixx.h | |
626 os_vms.obj : os_vms.c vim.h [.auto]config.h feature.h os_unix.h \ | |
627 ascii.h keymap.h term.h macros.h structs.h regexp.h \ | |
628 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ | |
629 globals.h farsi.h arabic.h os_unixx.h | |
630 pathdef.obj : pathdef.c vim.h [.auto]config.h feature.h os_unix.h \ | |
631 ascii.h keymap.h term.h macros.h structs.h regexp.h \ | |
632 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ | |
633 globals.h farsi.h arabic.h | |
800 | 634 popupmnu.obj : popupmnu.c vim.h [.auto]config.h feature.h os_unix.h \ |
683 | 635 ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
636 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ | |
637 globals.h farsi.h arabic.h | |
39 | 638 quickfix.obj : quickfix.c vim.h [.auto]config.h feature.h os_unix.h \ |
639 ascii.h keymap.h term.h macros.h structs.h regexp.h \ | |
640 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ | |
641 globals.h farsi.h arabic.h | |
642 regexp.obj : regexp.c vim.h [.auto]config.h feature.h os_unix.h \ | |
643 ascii.h keymap.h term.h macros.h structs.h regexp.h \ | |
644 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ | |
645 globals.h farsi.h arabic.h | |
646 screen.obj : screen.c vim.h [.auto]config.h feature.h os_unix.h \ | |
647 ascii.h keymap.h term.h macros.h structs.h regexp.h \ | |
648 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ | |
649 globals.h farsi.h arabic.h | |
650 search.obj : search.c vim.h [.auto]config.h feature.h os_unix.h \ | |
651 ascii.h keymap.h term.h macros.h structs.h regexp.h \ | |
652 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ | |
653 globals.h farsi.h arabic.h | |
221 | 654 spell.obj : spell.c vim.h [.auto]config.h feature.h os_unix.h \ |
655 ascii.h keymap.h term.h macros.h structs.h regexp.h \ | |
656 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ | |
657 globals.h farsi.h arabic.h | |
39 | 658 syntax.obj : syntax.c vim.h [.auto]config.h feature.h os_unix.h \ |
659 ascii.h keymap.h term.h macros.h structs.h regexp.h \ | |
660 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ | |
661 globals.h farsi.h arabic.h | |
662 tag.obj : tag.c vim.h [.auto]config.h feature.h os_unix.h \ | |
663 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \ | |
664 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \ | |
665 arabic.h | |
666 term.obj : term.c vim.h [.auto]config.h feature.h os_unix.h \ | |
667 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \ | |
668 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \ | |
669 arabic.h | |
670 termlib.obj : termlib.c vim.h [.auto]config.h feature.h os_unix.h \ | |
671 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \ | |
672 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \ | |
673 arabic.h | |
674 ui.obj : ui.c vim.h [.auto]config.h feature.h os_unix.h \ | |
675 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \ | |
676 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \ | |
677 arabic.h | |
678 undo.obj : undo.c vim.h [.auto]config.h feature.h os_unix.h \ | |
679 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \ | |
680 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \ | |
681 arabic.h | |
682 version.obj : version.c vim.h [.auto]config.h feature.h os_unix.h \ | |
683 ascii.h keymap.h term.h macros.h structs.h regexp.h \ | |
684 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ | |
685 globals.h farsi.h arabic.h version.h | |
686 window.obj : window.c vim.h [.auto]config.h feature.h os_unix.h \ | |
687 ascii.h keymap.h term.h macros.h structs.h regexp.h \ | |
688 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ | |
689 globals.h farsi.h arabic.h | |
690 gui.obj : gui.c vim.h [.auto]config.h feature.h os_unix.h \ | |
691 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \ | |
692 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \ | |
693 arabic.h | |
694 gui_gtk.obj : gui_gtk.c gui_gtk_f.h vim.h [.auto]config.h feature.h \ | |
695 os_unix.h ascii.h keymap.h term.h macros.h structs.h \ | |
696 regexp.h gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h \ | |
697 proto.h globals.h farsi.h arabic.h [-.pixmaps]stock_icons.h | |
698 gui_gtk_f.obj : gui_gtk_f.c vim.h [.auto]config.h feature.h os_unix.h \ | |
699 ascii.h keymap.h term.h macros.h structs.h regexp.h \ | |
700 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ | |
701 globals.h farsi.h arabic.h gui_gtk_f.h | |
702 gui_motif.obj : gui_motif.c vim.h [.auto]config.h feature.h os_unix.h \ | |
703 ascii.h keymap.h term.h macros.h structs.h regexp.h \ | |
704 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ | |
705 globals.h farsi.h arabic.h [-.pixmaps]alert.xpm [-.pixmaps]error.xpm \ | |
706 [-.pixmaps]generic.xpm [-.pixmaps]info.xpm [-.pixmaps]quest.xpm | |
707 gui_athena.obj : gui_athena.c vim.h [.auto]config.h feature.h os_unix.h \ | |
708 ascii.h keymap.h term.h macros.h structs.h regexp.h \ | |
709 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ | |
710 globals.h farsi.h arabic.h gui_at_sb.h | |
711 gui_gtk_x11.obj : gui_gtk_x11.c vim.h [.auto]config.h feature.h os_unix.h \ | |
712 ascii.h keymap.h term.h macros.h structs.h regexp.h \ | |
713 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ | |
714 globals.h farsi.h arabic.h gui_gtk_f.h [-.runtime]vim32x32.xpm \ | |
715 [-.runtime]vim16x16.xpm [-.runtime]vim48x48.xpm | |
716 gui_x11.obj : gui_x11.c vim.h [.auto]config.h feature.h os_unix.h \ | |
717 ascii.h keymap.h term.h macros.h structs.h regexp.h \ | |
718 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ | |
719 globals.h farsi.h arabic.h [-.runtime]vim32x32.xpm \ | |
720 [-.runtime]vim16x16.xpm [-.runtime]vim48x48.xpm [-.pixmaps]tb_new.xpm \ | |
721 [-.pixmaps]tb_open.xpm [-.pixmaps]tb_close.xpm [-.pixmaps]tb_save.xpm \ | |
722 [-.pixmaps]tb_print.xpm [-.pixmaps]tb_cut.xpm [-.pixmaps]tb_copy.xpm \ | |
723 [-.pixmaps]tb_paste.xpm [-.pixmaps]tb_find.xpm \ | |
724 [-.pixmaps]tb_find_next.xpm [-.pixmaps]tb_find_prev.xpm \ | |
725 [-.pixmaps]tb_find_help.xpm [-.pixmaps]tb_exit.xpm \ | |
726 [-.pixmaps]tb_undo.xpm [-.pixmaps]tb_redo.xpm [-.pixmaps]tb_help.xpm \ | |
727 [-.pixmaps]tb_macro.xpm [-.pixmaps]tb_make.xpm \ | |
728 [-.pixmaps]tb_save_all.xpm [-.pixmaps]tb_jump.xpm \ | |
729 [-.pixmaps]tb_ctags.xpm [-.pixmaps]tb_load_session.xpm \ | |
730 [-.pixmaps]tb_save_session.xpm [-.pixmaps]tb_new_session.xpm \ | |
731 [-.pixmaps]tb_blank.xpm [-.pixmaps]tb_maximize.xpm \ | |
732 [-.pixmaps]tb_split.xpm [-.pixmaps]tb_minimize.xpm \ | |
733 [-.pixmaps]tb_shell.xpm [-.pixmaps]tb_replace.xpm \ | |
734 [-.pixmaps]tb_vsplit.xpm [-.pixmaps]tb_maxwidth.xpm \ | |
735 [-.pixmaps]tb_minwidth.xpm | |
736 gui_at_sb.obj : gui_at_sb.c vim.h [.auto]config.h feature.h os_unix.h \ | |
737 ascii.h keymap.h term.h macros.h structs.h regexp.h \ | |
738 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ | |
739 globals.h farsi.h arabic.h gui_at_sb.h | |
740 gui_at_fs.obj : gui_at_fs.c vim.h [.auto]config.h feature.h os_unix.h \ | |
741 ascii.h keymap.h term.h macros.h structs.h regexp.h \ | |
742 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ | |
743 globals.h farsi.h arabic.h gui_at_sb.h | |
744 pty.obj : pty.c vim.h [.auto]config.h feature.h os_unix.h \ | |
745 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \ | |
746 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \ | |
747 arabic.h | |
748 hangulin.obj : hangulin.c vim.h [.auto]config.h feature.h os_unix.h \ | |
749 ascii.h keymap.h term.h macros.h structs.h regexp.h \ | |
750 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ | |
751 globals.h farsi.h arabic.h | |
752 if_perl.obj : [.auto]if_perl.c vim.h [.auto]config.h feature.h os_unix.h \ | |
753 ascii.h keymap.h term.h macros.h structs.h regexp.h \ | |
754 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ | |
755 globals.h farsi.h arabic.h | |
756 if_perlsfio.obj : if_perlsfio.c vim.h [.auto]config.h feature.h os_unix.h \ | |
757 ascii.h keymap.h term.h macros.h structs.h regexp.h \ | |
758 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ | |
759 globals.h farsi.h arabic.h | |
760 if_python.obj : if_python.c vim.h [.auto]config.h feature.h os_unix.h \ | |
761 ascii.h keymap.h term.h macros.h structs.h regexp.h \ | |
762 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ | |
763 globals.h farsi.h arabic.h | |
764 if_tcl.obj : if_tcl.c vim.h [.auto]config.h feature.h os_unix.h \ | |
765 ascii.h keymap.h term.h macros.h structs.h regexp.h \ | |
766 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ | |
767 globals.h farsi.h arabic.h | |
768 if_ruby.obj : if_ruby.c vim.h [.auto]config.h feature.h os_unix.h \ | |
769 ascii.h keymap.h term.h macros.h structs.h regexp.h \ | |
770 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ | |
771 globals.h farsi.h arabic.h version.h | |
772 if_sniff.obj : if_sniff.c vim.h [.auto]config.h feature.h os_unix.h \ | |
773 ascii.h keymap.h term.h macros.h structs.h regexp.h \ | |
774 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ | |
775 globals.h farsi.h arabic.h os_unixx.h | |
776 gui_beval.obj : gui_beval.c vim.h [.auto]config.h feature.h os_unix.h \ | |
777 ascii.h keymap.h term.h macros.h structs.h regexp.h \ | |
778 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ | |
779 globals.h farsi.h arabic.h | |
780 workshop.obj : workshop.c [.auto]config.h integration.h vim.h feature.h \ | |
781 os_unix.h ascii.h keymap.h term.h macros.h structs.h \ | |
782 regexp.h gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h \ | |
783 proto.h globals.h farsi.h arabic.h version.h workshop.h | |
784 wsdebug.obj : wsdebug.c | |
785 integration.obj : integration.c vim.h [.auto]config.h feature.h os_unix.h \ | |
786 ascii.h keymap.h term.h macros.h structs.h regexp.h \ | |
787 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ | |
788 globals.h farsi.h arabic.h integration.h | |
789 netbeans.obj : netbeans.c vim.h [.auto]config.h feature.h os_unix.h \ | |
790 ascii.h keymap.h term.h macros.h structs.h regexp.h \ | |
791 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ | |
792 globals.h farsi.h arabic.h version.h | |
414 | 793 gui_xmdlg.obj : gui_xmdlg.c |
794 gui_xmebw.obj : gui_xmebw.c |