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