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