Patch 7.0.167
[MacVim/jjgod.git] / src / Make_vms.mms
blob07d2b2042cb57c710e9206a360807702f20fcb3c
2 # Makefile for Vim on OpenVMS
4 # Maintainer:   Zoltan Arpadffy <arpadffy@polarhome.com>
5 # Last change:  2006 Apr 30
7 # This has script been tested on VMS 6.2 to 8.2 on DEC Alpha, VAX and IA64
8 # with MMS and MMK
10 # The following could be built:
11 #       vim.exe:        standard (terminal, GUI/Motif, GUI/GTK)
12 #       dvim.exe:       debug
14 # Edit the lines in the Configuration section below for fine tuning.
16 # To build:    mms/descrip=Make_vms.mms
17 # To clean up: mms/descrip=Make_vms.mms clean
19 # Hints and detailed description could be found in INSTALLVMS.TXT file.
21 ######################################################################
22 # Configuration section.
23 ######################################################################
24 # Platform selection
25 # Define this if you will use the VAX platform to build.
26 # VAX = YES
28 # VMS version
29 # Uncomment if you use VMS version 6.2 or older
30 # OLD_VMS = YES
32 # Compiler selection.
33 # Comment out if you use the VAXC compiler
34 DECC = YES
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
45 # GUI or terminal mode executable.
46 # Comment out if you want just the character terminal mode only.
47 # GUI with Motif
48 GUI = YES
50 # GUI with GTK
51 # If you have GTK installed you might want to enable this option.
52 # GTK = YES
54 # GUI/Motif with XPM
55 # If you have XPM installed you might want to build Motif version with toolbar
56 # XPM = YES
58 # Comment out if you want the compiler version with :ver command.
59 # NOTE: This part can make some complications if you're using some
60 # predefined symbols/flags for your compiler. If does, just leave behind
61 # the comment varialbe CCVER.
62 CCVER = YES
64 # Uncomment if want a debug version. Resulting executable is DVIM.EXE
65 # Development purpose only! Normally, it should not be defined. !!!
66 # DEBUG = YES
68 # Languages support for Perl, Python, TCL etc.
69 # If you don't need it really, leave them behind the comment.
70 # You will need related libraries, include files etc.
71 # VIM_TCL    = YES
72 # VIM_PERL   = YES
73 # VIM_PYTHON = YES
74 # VIM_RUBY   = YES
75 # VIM_SNIFF  = YES
77 # X Input Method.  For entering special languages like chinese and
78 # Japanese. Please define just one: VIM_XIM or VIM_HANGULIN
79 # If you don't need it really, leave it behind the comment.
80 # VIM_XIM = YES
82 # Internal Hangul input method. GUI only.
83 # If you don't need it really, leave it behind the comment.
84 # VIM_HANGULIN = YES
86 # Allow any white space to separate the fields in a tags file
87 # When not defined, only a TAB is allowed.
88 # VIM_TAG_ANYWHITE = YES
90 ######################################################################
91 # Directory, library and include files configuration section.
92 # Normally you need not to change anything below. !
93 # These may need to be defined if things are not in standard locations
95 # You can find some explanation in INSTALLVMS.TXT
96 ######################################################################
98 # Compiler setup
100 .IFDEF VAX
101 .IFDEF DECC          # VAX with DECC
102 CC_DEF  = cc # /decc # some system requires this switch
103                      # but when it is not required /ver might fail
104 PREFIX  = /prefix=all
105 .ELSE                # VAX with VAXC
106 CC_DEF  = cc
107 PREFIX  =
108 CCVER   =
109 .ENDIF
110 .ELSE                # AXP wixh DECC
111 CC_DEF  = cc
112 PREFIX  = /prefix=all
113 .ENDIF
115 LD_DEF  = link
116 C_INC   = [.proto]
118 .IFDEF OLD_VMS
119 VMS_DEF = ,"OLD_VMS"
120 .ENDIF
122 .IFDEF DEBUG
123 DEBUG_DEF = ,"DEBUG"
124 TARGET    = dvim.exe
125 CFLAGS    = /debug/noopt$(PREFIX)
126 LDFLAGS   = /debug
127 .ELSE
128 TARGET    = vim.exe
129 CFLAGS    = /opt$(PREFIX)
130 LDFLAGS   =
131 .ENDIF
133 # Predefined VIM directories
134 # Please, use $VIM and $VIMRUNTIME logicals instead
135 VIMLOC  = ""
136 VIMRUN  = ""
138 CONFIG_H = os_vms_conf.h
140 # GTK or XPM but not both
141 .IFDEF GTK
142 .IFDEF GUI
143 .ELSE
144 GUI = YES
145 .ENDIF
146 .IFDEF XPM
147 XPM = ""
148 .ENDIF
149 .ENDIF
151 .IFDEF XPM
152 .IFDEF GUI
153 .ELSE
154 GUI = YES
155 .ENDIF
156 .IFDEF GTK
157 GTK = ""
158 .ENDIF
159 .ENDIF
161 .IFDEF GUI
162 # X/Motif/GTK executable  (also works in terminal mode )
164 .IFDEF GTK
165 # NOTE: you need to set up your GTK_DIR (GTK root directory), because it is
166 # unique on every system - logicals are not accepted
167 # please note: directory should end with . in order to /trans=conc work
168 # Example: GTK_DIR  = $1$DGA104:[USERS.ZAY.WORK.GTK1210.]
169 GTK_DIR  = DKA0:[GTK1210.]
170 DEFS     = "HAVE_CONFIG_H","FEAT_GUI_GTK"
171 LIBS     = ,OS_VMS_GTK.OPT/OPT
172 GUI_FLAG = /name=(as_is,short)/float=ieee/ieee=denorm
173 GUI_SRC  = gui.c gui_gtk.c gui_gtk_f.c gui_gtk_x11.c gui_beval.c pty.c
174 GUI_OBJ  = gui.obj gui_gtk.obj gui_gtk_f.obj gui_gtk_x11.obj gui_beval.obj pty.obj
175 GUI_INC  = ,"/gtk_root/gtk","/gtk_root/glib"
176 # GUI_INC_VER is used just for :ver information
177 # this string should escape from C and DCL in the same time
178 GUI_INC_VER= ,\""/gtk_root/gtk\"",\""/gtk_root/glib\""
179 .ELSE
180 MOTIF    = YES
181 .IFDEF XPM
182 DEFS     = "HAVE_CONFIG_H","FEAT_GUI_MOTIF","HAVE_XPM"
183 .ELSE
184 DEFS     = "HAVE_CONFIG_H","FEAT_GUI_MOTIF"
185 .ENDIF
186 LIBS     = ,OS_VMS_MOTIF.OPT/OPT
187 GUI_FLAG =
188 GUI_SRC  = gui.c gui_motif.c gui_x11.c gui_beval.c gui_xmdlg.c gui_xmebw.c
189 GUI_OBJ  = gui.obj gui_motif.obj gui_x11.obj gui_beval.obj gui_xmdlg.obj gui_xmebw.obj
190 GUI_INC  =
191 .ENDIF
193 # You need to define these variables if you do not have DECW files
194 # at standard location
195 GUI_INC_DIR = ,decw$include:
196 # GUI_LIB_DIR = ,sys$library:
198 .ELSE
199 # Character terminal only executable
200 DEFS     = "HAVE_CONFIG_H"
201 LIBS     =
202 .ENDIF
204 .IFDEF VIM_PERL
205 # Perl related setup.
206 PERL     = perl
207 PERL_DEF = ,"FEAT_PERL"
208 PERL_SRC = if_perlsfio.c if_perl.xs
209 PERL_OBJ = if_perlsfio.obj if_perl.obj
210 PERL_LIB = ,OS_VMS_PERL.OPT/OPT
211 PERL_INC = ,dka0:[perlbuild.perl.lib.vms_axp.5_6_1.core]
212 .ENDIF
214 .IFDEF VIM_PYTHON
215 # Python related setup.
216 PYTHON_DEF = ,"FEAT_PYTHON"
217 PYTHON_SRC = if_python.c
218 PYTHON_OBJ = if_python.obj
219 PYTHON_LIB = ,OS_VMS_PYTHON.OPT/OPT
220 PYTHON_INC = ,PYTHON_INCLUDE
221 .ENDIF
223 .IFDEF VIM_TCL
224 # TCL related setup.
225 TCL_DEF = ,"FEAT_TCL"
226 TCL_SRC = if_tcl.c
227 TCL_OBJ = if_tcl.obj
228 TCL_LIB = ,OS_VMS_TCL.OPT/OPT
229 TCL_INC = ,dka0:[tcl80.generic]
230 .ENDIF
232 .IFDEF VIM_SNIFF
233 # SNIFF related setup.
234 SNIFF_DEF = ,"FEAT_SNIFF"
235 SNIFF_SRC = if_sniff.c
236 SNIFF_OBJ = if_sniff.obj
237 SNIFF_LIB =
238 SNIFF_INC =
239 .ENDIF
241 .IFDEF VIM_RUBY
242 # RUBY related setup.
243 RUBY_DEF = ,"FEAT_RUBY"
244 RUBY_SRC = if_ruby.c
245 RUBY_OBJ = if_ruby.obj
246 RUBY_LIB = ,OS_VMS_RUBY.OPT/OPT
247 RUBY_INC =
248 .ENDIF
250 .IFDEF VIM_XIM
251 # XIM related setup.
252 .IFDEF GUI
253 XIM_DEF = ,"FEAT_XIM"
254 .ENDIF
255 .ENDIF
257 .IFDEF VIM_HANGULIN
258 # HANGULIN related setup.
259 .IFDEF GUI
260 HANGULIN_DEF = ,"FEAT_HANGULIN"
261 HANGULIN_SRC = hangulin.c
262 HANGULIN_OBJ = hangulin.obj
263 .ENDIF
264 .ENDIF
266 .IFDEF VIM_TAG_ANYWHITE
267 # TAG_ANYWHITE related setup.
268 TAG_DEF = ,"FEAT_TAG_ANYWHITE"
269 .ENDIF
272 ######################################################################
273 # End of configuration section.
274 # Please, do not change anything below without programming experience.
275 ######################################################################
278 MODEL_DEF = "FEAT_$(MODEL)",
280 # These go into pathdef.c
281 VIMUSER = "''F$EDIT(F$GETJPI(" ","USERNAME"),"TRIM")'"
282 VIMHOST = "''F$TRNLNM("SYS$NODE")'''F$TRNLNM("UCX$INET_HOST")'.''F$TRNLNM("UCX$INET_DOMAIN")'"
284 .SUFFIXES : .obj .c
286 ALL_CFLAGS = /def=($(MODEL_DEF)$(DEFS)$(VMS_DEF)$(DEBUG_DEF)$(PERL_DEF)$(PYTHON_DEF) -
287  $(TCL_DEF)$(SNIFF_DEF)$(RUBY_DEF)$(XIM_DEF)$(HANGULIN_DEF)$(TAG_DEF)) -
288  $(CFLAGS)$(GUI_FLAG) -
289  /include=($(C_INC)$(GUI_INC_DIR)$(GUI_INC)$(PERL_INC)$(PYTHON_INC)$(TCL_INC))
291 # CFLAGS displayed in :ver information
292 # It is specially formated for correct display of unix like includes
293 # as $(GUI_INC) - replaced with $(GUI_INC_VER)
294 # Otherwise should not be any other difference.
295 ALL_CFLAGS_VER = /def=($(MODEL_DEF)$(DEFS)$(VMS_DEF)$(DEBUG_DEF)$(PERL_DEF)$(PYTHON_DEF) -
296  $(TCL_DEF)$(SNIFF_DEF)$(RUBY_DEF)$(XIM_DEF)$(HANGULIN_DEF)$(TAG_DEF)) -
297  $(CFLAGS)$(GUI_FLAG) -
298  /include=($(C_INC)$(GUI_INC_DIR)$(GUI_INC_VER)$(PERL_INC)$(PYTHON_INC)$(TCL_INC))
300 ALL_LIBS = $(LIBS) $(GUI_LIB_DIR) $(GUI_LIB) \
301            $(PERL_LIB) $(PYTHON_LIB) $(TCL_LIB) $(SNIFF_LIB) $(RUBY_LIB)
303 SRC =   buffer.c charset.c diff.c digraph.c edit.c eval.c ex_cmds.c ex_cmds2.c \
304         ex_docmd.c ex_eval.c ex_getln.c if_xcmdsrv.c fileio.c fold.c getchar.c \
305         hardcopy.c hashtab.c main.c mark.c menu.c mbyte.c memfile.c memline.c message.c misc1.c \
306         misc2.c move.c normal.c ops.c option.c popupmnu.c quickfix.c regexp.c search.c \
307         spell.c syntax.c tag.c term.c termlib.c ui.c undo.c version.c screen.c \
308         window.c os_unix.c os_vms.c pathdef.c \
309         $(GUI_SRC) $(PERL_SRC) $(PYTHON_SRC) $(TCL_SRC) $(SNIFF_SRC) \
310         $(RUBY_SRC) $(HANGULIN_SRC)
312 OBJ =   buffer.obj charset.obj diff.obj digraph.obj edit.obj eval.obj \
313         ex_cmds.obj ex_cmds2.obj ex_docmd.obj ex_eval.obj ex_getln.obj \
314         if_xcmdsrv.obj fileio.obj fold.obj getchar.obj hardcopy.obj hashtab.obj main.obj mark.obj \
315         menu.obj memfile.obj memline.obj message.obj misc1.obj misc2.obj \
316         move.obj mbyte.obj normal.obj ops.obj option.obj popupmnu.obj quickfix.obj \
317         regexp.obj search.obj spell.obj syntax.obj tag.obj term.obj termlib.obj \
318         ui.obj undo.obj screen.obj version.obj window.obj os_unix.obj \
319         os_vms.obj pathdef.obj \
320         $(GUI_OBJ) $(PERL_OBJ) $(PYTHON_OBJ) $(TCL_OBJ) $(SNIFF_OBJ) \
321         $(RUBY_OBJ) $(HANGULIN_OBJ)
323 # Default target is making the executable
324 all : [.auto]config.h mmk_compat motif_env gtk_env perl_env python_env tcl_env ruby_env $(TARGET)
325         ! $@
327 [.auto]config.h : $(CONFIG_H)
328         copy/nolog $(CONFIG_H) [.auto]config.h
330 mmk_compat :
331         -@ open/write pd pathdef.c
332         -@ write pd "/* Empty file to satisfy MMK depend.  */"
333         -@ write pd "/* It will be owerwritten later on... */"
334         -@ close pd
335 clean :
336         -@ if "''F$SEARCH("*.exe")'" .NES. "" then delete/noconfirm/nolog *.exe;*
337         -@ if "''F$SEARCH("*.obj")'" .NES. "" then delete/noconfirm/nolog *.obj;*
338         -@ if "''F$SEARCH("[.auto]config.h")'" .NES. "" then delete/noconfirm/nolog [.auto]config.h;*
339         -@ if "''F$SEARCH("pathdef.c")'" .NES. "" then delete/noconfirm/nolog pathdef.c;*
340         -@ if "''F$SEARCH("if_perl.c")'" .NES. "" then delete/noconfirm/nolog if_perl.c;*
341         -@ if "''F$SEARCH("*.opt")'" .NES. "" then delete/noconfirm/nolog *.opt;*
343 # Link the target
344 $(TARGET) : $(OBJ)
345         $(LD_DEF) $(LDFLAGS) /exe=$(TARGET) $+ $(ALL_LIBS)
347 .c.obj :
348         $(CC_DEF) $(ALL_CFLAGS) $<
350 pathdef.c : check_ccver $(CONFIG_H)
351         -@ write sys$output "creating PATHDEF.C file."
352         -@ open/write pd pathdef.c
353         -@ write pd "/* pathdef.c -- DO NOT EDIT! */"
354         -@ write pd "/* This file is automatically created by MAKE_VMS.MMS"
355         -@ write pd " * Change the file MAKE_VMS.MMS Only. */"
356         -@ write pd "typedef unsigned char   char_u;"
357         -@ write pd "char_u *default_vim_dir = (char_u *)"$(VIMLOC)";"
358         -@ write pd "char_u *default_vimruntime_dir = (char_u *)"$(VIMRUN)";"
359         -@ write pd "char_u *all_cflags = (char_u *)""$(CC_DEF)$(ALL_CFLAGS_VER)"";"
360         -@ write pd "char_u *all_lflags = (char_u *)""$(LD_DEF)$(LDFLAGS) /exe=$(TARGET) *.OBJ $(ALL_LIBS)"";"
361         -@ write pd "char_u *compiler_version = (char_u *) ""''CC_VER'"";"
362         -@ write pd "char_u *compiled_user = (char_u *) "$(VIMUSER)";"
363         -@ write pd "char_u *compiled_sys = (char_u *) "$(VIMHOST)";"
364         -@ close pd
366 if_perl.c : if_perl.xs
367         -@ $(PERL) PERL_ROOT:[LIB.ExtUtils]xsubpp -prototypes -typemap -
368  PERL_ROOT:[LIB.ExtUtils]typemap if_perl.xs >> $@
370 make_vms.mms :
371         -@ write sys$output "The name of the makefile MUST be <MAKE_VMS.MMS> !!!"
373 .IFDEF CCVER
374 # This part can make some complications if you're using some predefined
375 # symbols/flags for your compiler. If does, just comment out CCVER variable
376 check_ccver :
377         -@ define sys$output cc_ver.tmp
378         -@ $(CC_DEF)/version
379         -@ deassign sys$output
380         -@ open/read file cc_ver.tmp
381         -@ read file CC_VER
382         -@ close file
383         -@ delete/noconfirm/nolog cc_ver.tmp.*
384 .ELSE
385 check_ccver :
386         -@ !
387 .ENDIF
389 .IFDEF MOTIF
390 motif_env :
391 .IFDEF XPM
392         -@ write sys$output "using DECW/Motif/XPM environment."
393 .ELSE
394         -@ write sys$output "using DECW/Motif environment."
395 .ENDIF
396         -@ write sys$output "creating OS_VMS_MOTIF.OPT file."
397         -@ open/write opt_file OS_VMS_MOTIF.OPT
398         -@ write opt_file "sys$share:decw$xmlibshr12.exe/share,-"
399         -@ write opt_file "sys$share:decw$xtlibshrr5.exe/share,-"
400         -@ write opt_file "sys$share:decw$xlibshr.exe/share"
401         -@ close opt_file
402 .ELSE
403 motif_env :
404         -@ !
405 .ENDIF
408 .IFDEF GTK
409 gtk_env :
410         -@ write sys$output "using GTK environment:"
411         -@ define/nolog gtk_root /trans=conc $(GTK_DIR)
412         -@ show logical gtk_root
413         -@ write sys$output "    include path: "$(GUI_INC)""
414         -@ write sys$output "creating OS_VMS_GTK.OPT file."
415         -@ open/write opt_file OS_VMS_GTK.OPT
416         -@ write opt_file "gtk_root:[glib]libglib.exe /share,-"
417         -@ write opt_file "gtk_root:[glib.gmodule]libgmodule.exe /share,-"
418         -@ write opt_file "gtk_root:[gtk.gdk]libgdk.exe /share,-"
419         -@ write opt_file "gtk_root:[gtk.gtk]libgtk.exe /share,-"
420         -@ write opt_file "sys$share:decw$xmlibshr12.exe/share,-"
421         -@ write opt_file "sys$share:decw$xtlibshrr5.exe/share,-"
422         -@ write opt_file "sys$share:decw$xlibshr.exe/share"
423         -@ close opt_file
424 .ELSE
425 gtk_env :
426         -@ !
427 .ENDIF
429 .IFDEF VIM_PERL
430 perl_env :
431         -@ write sys$output "using PERL environment:"
432         -@ show logical PERLSHR
433         -@ write sys$output "    include path: ""$(PERL_INC)"""
434         -@ show symbol perl
435         -@ open/write pd if_perl.c
436         -@ write pd "/* Empty file to satisfy MMK depend.  */"
437         -@ write pd "/* It will be owerwritten later on... */"
438         -@ close pd
439         -@ write sys$output "creating OS_VMS_PERL.OPT file."
440         -@ open/write opt_file OS_VMS_PERL.OPT
441         -@ write opt_file "PERLSHR /share"
442         -@ close opt_file
443 .ELSE
444 perl_env :
445         -@ !
446 .ENDIF
448 .IFDEF VIM_PYTHON
449 python_env :
450         -@ write sys$output "using PYTHON environment:"
451         -@ show logical PYTHON_INCLUDE
452         -@ show logical PYTHON_OLB
453         -@ write sys$output "creating OS_VMS_PYTHON.OPT file."
454         -@ open/write opt_file OS_VMS_PYTHON.OPT
455         -@ write opt_file "PYTHON_OLB:PYTHON.OLB /share"
456         -@ close opt_file
457 .ELSE
458 python_env :
459         -@ !
460 .ENDIF
462 .IFDEF VIM_TCL
463 tcl_env :
464         -@ write sys$output "using TCL environment:"
465         -@ show logical TCLSHR
466         -@ write sys$output "    include path: ""$(TCL_INC)"""
467         -@ write sys$output "creating OS_VMS_TCL.OPT file."
468         -@ open/write opt_file OS_VMS_TCL.OPT
469         -@ write opt_file "TCLSHR /share"
470         -@ close opt_file
471 .ELSE
472 tcl_env :
473         -@ !
474 .ENDIF
476 .IFDEF VIM_RUBY
477 ruby_env :
478         -@ write sys$output "using RUBY environment:"
479         -@ write sys$output "    include path: ""$(RUBY_INC)"""
480         -@ write sys$output "creating OS_VMS_RUBY.OPT file."
481         -@ open/write opt_file OS_VMS_RUBY.OPT
482         -@ write opt_file "RUBYSHR /share"
483         -@ close opt_file
484 .ELSE
485 ruby_env :
486         -@ !
487 .ENDIF
489 buffer.obj : buffer.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 version.h
493 charset.obj : charset.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 diff.obj : diff.c vim.h [.auto]config.h feature.h os_unix.h   \
498  ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \
499  [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
500  arabic.h
501 digraph.obj : digraph.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 edit.obj : edit.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 eval.obj : eval.c vim.h [.auto]config.h feature.h os_unix.h   \
510  ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \
511  [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
512  arabic.h version.h
513 ex_cmds.obj : ex_cmds.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_cmds2.obj : ex_cmds2.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 version.h
521 ex_docmd.obj : ex_docmd.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_eval.obj : ex_eval.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 ex_getln.obj : ex_getln.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 fileio.obj : fileio.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 fold.obj : fold.c vim.h [.auto]config.h feature.h os_unix.h   \
538  ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \
539  [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
540  arabic.h
541 getchar.obj : getchar.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
545 hardcopy.obj : hardcopy.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 hashtab.obj : hashtab.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
553 if_cscope.obj : if_cscope.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 if_cscope.h
557 if_xcmdsrv.obj : if_xcmdsrv.c vim.h [.auto]config.h feature.h os_unix.h \
558  ascii.h keymap.h term.h macros.h structs.h regexp.h \
559  gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
560  globals.h farsi.h arabic.h version.h
561 main.obj : main.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 farsi.c arabic.c
565 mark.obj : mark.c vim.h [.auto]config.h feature.h os_unix.h   \
566  ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \
567  [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
568  arabic.h
569 memfile.obj : memfile.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 memline.obj : memline.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 menu.obj : menu.c vim.h [.auto]config.h feature.h os_unix.h   \
578  ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \
579  [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
580  arabic.h
581 message.obj : message.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
585 misc1.obj : misc1.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 version.h
589 misc2.obj : misc2.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 move.obj : move.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 mbyte.obj : mbyte.c vim.h [.auto]config.h feature.h os_unix.h   \
598  ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \
599  [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
600  arabic.h
601 normal.obj : normal.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
605 ops.obj : ops.c vim.h [.auto]config.h feature.h os_unix.h   \
606  ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \
607  [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
608  arabic.h
609 option.obj : option.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 os_unix.obj : os_unix.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 os_vms.obj : os_vms.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 os_unixx.h
621 pathdef.obj : pathdef.c vim.h [.auto]config.h feature.h os_unix.h \
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
625 popupmnu.obj : popupmnu.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 quickfix.obj : quickfix.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 regexp.obj : regexp.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 screen.obj : screen.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 search.obj : search.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
645 spell.obj : spell.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 syntax.obj : syntax.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
653 tag.obj : tag.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 term.obj : term.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 termlib.obj : termlib.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 ui.obj : ui.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 undo.obj : undo.c vim.h [.auto]config.h feature.h os_unix.h   \
670  ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \
671  [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
672  arabic.h
673 version.obj : version.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 version.h
677 window.obj : window.c vim.h [.auto]config.h feature.h os_unix.h \
678  ascii.h keymap.h term.h macros.h structs.h regexp.h \
679  gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
680  globals.h farsi.h arabic.h
681 gui.obj : gui.c vim.h [.auto]config.h feature.h os_unix.h   \
682  ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \
683  [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
684  arabic.h
685 gui_gtk.obj : gui_gtk.c gui_gtk_f.h vim.h [.auto]config.h feature.h \
686  os_unix.h   ascii.h keymap.h term.h macros.h structs.h \
687  regexp.h gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h \
688  proto.h globals.h farsi.h arabic.h [-.pixmaps]stock_icons.h
689 gui_gtk_f.obj : gui_gtk_f.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 gui_gtk_f.h
693 gui_motif.obj : gui_motif.c vim.h [.auto]config.h feature.h os_unix.h \
694  ascii.h keymap.h term.h macros.h structs.h regexp.h \
695  gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
696  globals.h farsi.h arabic.h [-.pixmaps]alert.xpm [-.pixmaps]error.xpm \
697  [-.pixmaps]generic.xpm [-.pixmaps]info.xpm [-.pixmaps]quest.xpm
698 gui_athena.obj : gui_athena.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_at_sb.h
702 gui_gtk_x11.obj : gui_gtk_x11.c vim.h [.auto]config.h feature.h os_unix.h \
703  ascii.h keymap.h term.h macros.h structs.h regexp.h \
704  gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
705  globals.h farsi.h arabic.h gui_gtk_f.h [-.runtime]vim32x32.xpm \
706  [-.runtime]vim16x16.xpm [-.runtime]vim48x48.xpm
707 gui_x11.obj : gui_x11.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 [-.runtime]vim32x32.xpm \
711  [-.runtime]vim16x16.xpm [-.runtime]vim48x48.xpm [-.pixmaps]tb_new.xpm \
712  [-.pixmaps]tb_open.xpm [-.pixmaps]tb_close.xpm [-.pixmaps]tb_save.xpm \
713  [-.pixmaps]tb_print.xpm [-.pixmaps]tb_cut.xpm [-.pixmaps]tb_copy.xpm \
714  [-.pixmaps]tb_paste.xpm [-.pixmaps]tb_find.xpm \
715  [-.pixmaps]tb_find_next.xpm [-.pixmaps]tb_find_prev.xpm \
716  [-.pixmaps]tb_find_help.xpm [-.pixmaps]tb_exit.xpm \
717  [-.pixmaps]tb_undo.xpm [-.pixmaps]tb_redo.xpm [-.pixmaps]tb_help.xpm \
718  [-.pixmaps]tb_macro.xpm [-.pixmaps]tb_make.xpm \
719  [-.pixmaps]tb_save_all.xpm [-.pixmaps]tb_jump.xpm \
720  [-.pixmaps]tb_ctags.xpm [-.pixmaps]tb_load_session.xpm \
721  [-.pixmaps]tb_save_session.xpm [-.pixmaps]tb_new_session.xpm \
722  [-.pixmaps]tb_blank.xpm [-.pixmaps]tb_maximize.xpm \
723  [-.pixmaps]tb_split.xpm [-.pixmaps]tb_minimize.xpm \
724  [-.pixmaps]tb_shell.xpm [-.pixmaps]tb_replace.xpm \
725  [-.pixmaps]tb_vsplit.xpm [-.pixmaps]tb_maxwidth.xpm \
726  [-.pixmaps]tb_minwidth.xpm
727 gui_at_sb.obj : gui_at_sb.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 gui_at_fs.obj : gui_at_fs.c vim.h [.auto]config.h feature.h os_unix.h \
732  ascii.h keymap.h term.h macros.h structs.h regexp.h \
733  gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
734  globals.h farsi.h arabic.h gui_at_sb.h
735 pty.obj : pty.c vim.h [.auto]config.h feature.h os_unix.h   \
736  ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \
737  [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
738  arabic.h
739 hangulin.obj : hangulin.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_perl.obj : [.auto]if_perl.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_perlsfio.obj : if_perlsfio.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_python.obj : if_python.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_tcl.obj : if_tcl.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
759 if_ruby.obj : if_ruby.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 version.h
763 if_sniff.obj : if_sniff.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 os_unixx.h
767 gui_beval.obj : gui_beval.c vim.h [.auto]config.h feature.h os_unix.h \
768  ascii.h keymap.h term.h macros.h structs.h regexp.h \
769  gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
770  globals.h farsi.h arabic.h
771 workshop.obj : workshop.c [.auto]config.h integration.h vim.h feature.h \
772  os_unix.h ascii.h keymap.h term.h macros.h structs.h \
773  regexp.h gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h \
774  proto.h globals.h farsi.h arabic.h version.h workshop.h
775 wsdebug.obj : wsdebug.c
776 integration.obj : integration.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 integration.h
780 netbeans.obj : netbeans.c vim.h [.auto]config.h feature.h os_unix.h \
781  ascii.h keymap.h term.h macros.h structs.h regexp.h \
782  gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
783  globals.h farsi.h arabic.h version.h
784 gui_xmdlg.obj : gui_xmdlg.c
785 gui_xmebw.obj : gui_xmebw.c