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