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