xref: /vim-8.2.3635/src/Make_vms.mms (revision 12ee7ff0)
1#
2# Makefile for Vim on OpenVMS
3#
4# Maintainer:   Zoltan Arpadffy <[email protected]>
5# Last change:  2019 May 24
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_MZSCHEME
260# MZSCHEME related setup
261MZSCH_DEF = ,"FEAT_MZSCHEME"
262MZSCH_SRC = if_mzsch.c
263MZSCH_OBJ = if_mzsch.obj
264.ENDIF
265
266.IFDEF VIM_ICONV
267# ICONV related setup
268ICONV_DEF = ,"USE_ICONV"
269.ENDIF
270
271# XDIFF related setup.
272XDIFF_SRC = xdiffi.c,xemit.c,xprepare.c,xutils.c,xhistogram.c,xpatience.c
273XDIFF_OBJ = xdiffi.obj,xemit.obj,xprepare.obj,xutils.obj,xhistogram.obj,xpatience.obj
274XDIFF_INC = ,[.xdiff]
275
276######################################################################
277# End of configuration section.
278# Please, do not change anything below without programming experience.
279######################################################################
280
281MODEL_DEF = "FEAT_$(MODEL)",
282
283# These go into pathdef.c
284VIMUSER = "''F$EDIT(F$GETJPI(" ","USERNAME"),"TRIM")'"
285VIMHOST = "''F$TRNLNM("SYS$NODE")'''F$TRNLNM("UCX$INET_HOST")'.''F$TRNLNM("UCX$INET_DOMAIN")'"
286
287.SUFFIXES : .obj .c
288
289ALL_CFLAGS = /def=($(MODEL_DEF)$(DEFS)$(DEBUG_DEF)$(PERL_DEF)$(PYTHON_DEF) -
290 $(TCL_DEF)$(RUBY_DEF)$(XIM_DEF)$(HANGULIN_DEF)$(TAG_DEF)$(MZSCH_DEF) -
291 $(ICONV_DEF)) -
292 $(CFLAGS)$(GUI_FLAG) -
293 /include=($(C_INC)$(GUI_INC_DIR)$(GUI_INC)$(PERL_INC)$(PYTHON_INC) -
294 $(TCL_INC)$(XDIFF_INC)$(XPM_INC))
295
296# CFLAGS displayed in :ver information
297# It is specially formated for correct display of unix like includes
298# as $(GUI_INC) - replaced with $(GUI_INC_VER)
299# Otherwise should not be any other difference.
300ALL_CFLAGS_VER = /def=($(MODEL_DEF)$(DEFS)$(DEBUG_DEF)$(PERL_DEF)$(PYTHON_DEF) -
301 $(TCL_DEF)$(RUBY_DEF)$(XIM_DEF)$(HANGULIN_DEF)$(TAG_DEF)$(MZSCH_DEF) -
302 $(ICONV_DEF)) -
303 $(CFLAGS)$(GUI_FLAG) -
304 /include=($(C_INC)$(GUI_INC_DIR)$(GUI_INC_VER)$(PERL_INC)$(PYTHON_INC) -
305 $(TCL_INC)$(XDIFF_INC)$(XPM_INC))
306
307ALL_LIBS = $(LIBS) $(GUI_LIB_DIR) $(GUI_LIB) \
308	   $(PERL_LIB) $(PYTHON_LIB) $(TCL_LIB) $(RUBY_LIB)
309
310SRC =	arabic.c autocmd.c beval.c blob.c blowfish.c buffer.c change.c charset.c \
311	crypt.c crypt_zip.c debugger.c dict.c diff.c digraph.c edit.c eval.c \
312	evalfunc.c ex_cmds.c ex_cmds2.c ex_docmd.c ex_eval.c ex_getln.c \
313	if_cscope.c if_xcmdsrv.c fileio.c findfile.c fold.c getchar.c \
314	hardcopy.c hashtab.c indent.c insexpand.c json.c list.c main.c mark.c \
315	menu.c mbyte.c memfile.c memline.c message.c misc1.c misc2.c move.c \
316	normal.c ops.c option.c popupmnu.c popupwin.c, quickfix.c regexp.c search.c \
317	sha256.c sign.c spell.c spellfile.c syntax.c tag.c term.c termlib.c \
318	textprop.c ui.c undo.c usercmd.c userfunc.c version.c screen.c \
319	window.c os_unix.c os_vms.c pathdef.c \
320	$(GUI_SRC) $(PERL_SRC) $(PYTHON_SRC) $(TCL_SRC) \
321 	$(RUBY_SRC) $(HANGULIN_SRC) $(MZSCH_SRC) $(XDIFF_SRC)
322
323OBJ = 	arabic.obj autocmd.obj beval.obj blob.obj blowfish.obj buffer.obj change.obj \
324	charset.obj crypt.obj crypt_zip.obj debugger.obj dict.obj diff.obj \
325	digraph.obj edit.obj eval.obj evalfunc.obj ex_cmds.obj ex_cmds2.obj \
326	ex_docmd.obj ex_eval.obj ex_getln.obj if_cscope.obj if_xcmdsrv.obj \
327	fileio.obj findfile.obj fold.obj getchar.obj hardcopy.obj hashtab.obj \
328	indent.obj insexpand.obj json.obj list.obj main.obj mark.obj \
329	menu.obj memfile.obj memline.obj message.obj misc1.obj misc2.obj \
330	move.obj mbyte.obj normal.obj ops.obj option.obj popupmnu.obj popupwin.obj\
331	quickfix.obj regexp.obj search.obj sha256.obj sign.obj spell.obj \
332	spellfile.obj syntax.obj tag.obj term.obj termlib.obj textprop.obj \
333	ui.obj undo.obj usercmd.obj userfunc.obj screen.obj version.obj \
334	window.obj os_unix.obj os_vms.obj pathdef.obj if_mzsch.obj \
335	$(GUI_OBJ) $(PERL_OBJ) $(PYTHON_OBJ) $(TCL_OBJ) \
336 	$(RUBY_OBJ) $(HANGULIN_OBJ) $(MZSCH_OBJ) $(XDIFF_OBJ)
337
338# Default target is making the executable
339all : [.auto]config.h mmk_compat motif_env gtk_env perl_env python_env tcl_env ruby_env $(TARGET)
340	! $@
341
342[.auto]config.h : $(CONFIG_H)
343	copy/nolog $(CONFIG_H) [.auto]config.h
344
345mmk_compat :
346	-@ open/write pd pathdef.c
347	-@ write pd "/* Empty file to satisfy MMK depend.  */"
348	-@ write pd "/* It will be overwritten later on... */"
349	-@ close pd
350clean :
351	-@ if "''F$SEARCH("*.exe")'" .NES. "" then delete/noconfirm/nolog *.exe;*
352	-@ if "''F$SEARCH("*.obj")'" .NES. "" then delete/noconfirm/nolog *.obj;*
353	-@ if "''F$SEARCH("[.auto]config.h")'" .NES. "" then delete/noconfirm/nolog [.auto]config.h;*
354	-@ if "''F$SEARCH("pathdef.c")'" .NES. "" then delete/noconfirm/nolog pathdef.c;*
355	-@ if "''F$SEARCH("if_perl.c")'" .NES. "" then delete/noconfirm/nolog if_perl.c;*
356	-@ if "''F$SEARCH("*.opt")'" .NES. "" then delete/noconfirm/nolog *.opt;*
357
358# Link the target
359$(TARGET) : $(OBJ)
360	$(LD_DEF) $(LDFLAGS) /exe=$(TARGET) $+ $(ALL_LIBS)
361
362.c.obj :
363	$(CC_DEF) $(ALL_CFLAGS) $<
364
365pathdef.c : check_ccver $(CONFIG_H)
366	-@ write sys$output "creating PATHDEF.C file."
367	-@ open/write pd pathdef.c
368	-@ write pd "/* pathdef.c -- DO NOT EDIT! */"
369	-@ write pd "/* This file is automatically created by MAKE_VMS.MMS"
370	-@ write pd " * Change the file MAKE_VMS.MMS Only. */"
371	-@ write pd "typedef unsigned char   char_u;"
372	-@ write pd "char_u *default_vim_dir = (char_u *)"$(VIMLOC)";"
373	-@ write pd "char_u *default_vimruntime_dir = (char_u *)"$(VIMRUN)";"
374	-@ write pd "char_u *all_cflags = (char_u *)""$(CC_DEF)$(ALL_CFLAGS_VER)"";"
375	-@ write pd "char_u *all_lflags = (char_u *)""$(LD_DEF)$(LDFLAGS) /exe=$(TARGET) *.OBJ $(ALL_LIBS)"";"
376	-@ write pd "char_u *compiler_version = (char_u *) ""''CC_VER'"";"
377	-@ write pd "char_u *compiled_user = (char_u *) "$(VIMUSER)";"
378	-@ write pd "char_u *compiled_sys  = (char_u *) "$(VIMHOST)";"
379	-@ write pd "char_u *compiled_arch = (char_u *) ""$(MMSARCH_NAME)"";"
380	-@ close pd
381
382if_perl.c : if_perl.xs
383	-@ $(PERL) PERL_ROOT:[LIB.ExtUtils]xsubpp -prototypes -typemap -
384 PERL_ROOT:[LIB.ExtUtils]typemap if_perl.xs >> $@
385
386make_vms.mms :
387	-@ write sys$output "The name of the makefile MUST be <MAKE_VMS.MMS> !!!"
388
389.IFDEF CCVER
390# This part can make some complications if you're using some predefined
391# symbols/flags for your compiler. If does, just comment out CCVER variable
392check_ccver :
393	-@ define sys$output cc_ver.tmp
394	-@ $(CC_DEF)/version
395	-@ deassign sys$output
396	-@ open/read file cc_ver.tmp
397	-@ read file CC_VER
398	-@ close file
399	-@ delete/noconfirm/nolog cc_ver.tmp.*
400.ELSE
401check_ccver :
402	-@ !
403.ENDIF
404
405.IFDEF MOTIF
406motif_env :
407.IFDEF XPM
408	-@ write sys$output "using DECW/Motif/XPM environment."
409.ELSE
410	-@ write sys$output "using DECW/Motif environment."
411.ENDIF
412	-@ write sys$output "creating OS_VMS_MOTIF.OPT file."
413	-@ open/write opt_file OS_VMS_MOTIF.OPT
414	-@ write opt_file "sys$share:decw$xmlibshr12.exe/share,-"
415	-@ write opt_file "sys$share:decw$xtlibshrr5.exe/share,-"
416	-@ write opt_file "sys$share:decw$xlibshr.exe/share"
417	-@ close opt_file
418.ELSE
419motif_env :
420	-@ !
421.ENDIF
422
423
424.IFDEF GTK
425gtk_env :
426	-@ write sys$output "using GTK environment:"
427	-@ define/nolog gtk_root /trans=conc $(GTK_DIR)
428	-@ show logical gtk_root
429	-@ write sys$output "    include path: "$(GUI_INC)""
430	-@ write sys$output "creating OS_VMS_GTK.OPT file."
431	-@ open/write opt_file OS_VMS_GTK.OPT
432	-@ write opt_file "gtk_root:[glib]libglib.exe /share,-"
433	-@ write opt_file "gtk_root:[glib.gmodule]libgmodule.exe /share,-"
434	-@ write opt_file "gtk_root:[gtk.gdk]libgdk.exe /share,-"
435	-@ write opt_file "gtk_root:[gtk.gtk]libgtk.exe /share,-"
436	-@ write opt_file "sys$share:decw$xmlibshr12.exe/share,-"
437	-@ write opt_file "sys$share:decw$xtlibshrr5.exe/share,-"
438	-@ write opt_file "sys$share:decw$xlibshr.exe/share"
439	-@ close opt_file
440.ELSE
441gtk_env :
442	-@ !
443.ENDIF
444
445.IFDEF VIM_PERL
446perl_env :
447	-@ write sys$output "using PERL environment:"
448	-@ show logical PERLSHR
449	-@ write sys$output "    include path: ""$(PERL_INC)"""
450	-@ show symbol perl
451	-@ open/write pd if_perl.c
452	-@ write pd "/* Empty file to satisfy MMK depend.  */"
453	-@ write pd "/* It will be overwritten later on... */"
454	-@ close pd
455	-@ write sys$output "creating OS_VMS_PERL.OPT file."
456	-@ open/write opt_file OS_VMS_PERL.OPT
457	-@ write opt_file "PERLSHR /share"
458	-@ close opt_file
459.ELSE
460perl_env :
461	-@ !
462.ENDIF
463
464.IFDEF VIM_PYTHON
465python_env :
466	-@ write sys$output "using PYTHON environment:"
467	-@ show logical PYTHON_INCLUDE
468	-@ show logical PYTHON_OLB
469	-@ write sys$output "creating OS_VMS_PYTHON.OPT file."
470	-@ open/write opt_file OS_VMS_PYTHON.OPT
471	-@ write opt_file "PYTHON_OLB:PYTHON.OLB /share"
472	-@ close opt_file
473.ELSE
474python_env :
475	-@ !
476.ENDIF
477
478.IFDEF VIM_TCL
479tcl_env :
480	-@ write sys$output "using TCL environment:"
481	-@ show logical TCLSHR
482	-@ write sys$output "    include path: ""$(TCL_INC)"""
483	-@ write sys$output "creating OS_VMS_TCL.OPT file."
484	-@ open/write opt_file OS_VMS_TCL.OPT
485	-@ write opt_file "TCLSHR /share"
486	-@ close opt_file
487.ELSE
488tcl_env :
489	-@ !
490.ENDIF
491
492.IFDEF VIM_RUBY
493ruby_env :
494	-@ write sys$output "using RUBY environment:"
495	-@ write sys$output "    include path: ""$(RUBY_INC)"""
496	-@ write sys$output "creating OS_VMS_RUBY.OPT file."
497	-@ open/write opt_file OS_VMS_RUBY.OPT
498	-@ write opt_file "RUBYSHR /share"
499	-@ close opt_file
500.ELSE
501ruby_env :
502	-@ !
503.ENDIF
504
505arabic.obj : arabic.c vim.h
506autocmd.obj : autocmd.c vim.h [.auto]config.h feature.h os_unix.h
507blowfish.obj : blowfish.c vim.h [.auto]config.h feature.h os_unix.h
508blob.obj : blob.c vim.h [.auto]config.h feature.h os_unix.h
509buffer.obj : buffer.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 beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
512 globals.h version.h
513change.obj : change.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 beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
516 globals.h version.h
517charset.obj : charset.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 beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
520 globals.h
521crypt.obj : crypt.c vim.h [.auto]config.h feature.h os_unix.h \
522 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \
523 beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \
524 globals.h
525crypt_zip.obj : crypt_zip.c vim.h [.auto]config.h feature.h os_unix.h \
526 ascii.h keymap.h term.h macros.h option.h structs.h \
527 regexp.h gui.h beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h \
528 proto.h globals.h
529debugger.obj : debugger.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 beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
532 globals.h
533dict.obj : dict.c vim.h [.auto]config.h feature.h os_unix.h \
534 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \
535 beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \
536 globals.h
537diff.obj : diff.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 beval.h \
539 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h \
540
541digraph.obj : digraph.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 beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
544 globals.h
545edit.obj : edit.c vim.h [.auto]config.h feature.h os_unix.h   \
546 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
547 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h \
548
549eval.obj : eval.c vim.h [.auto]config.h feature.h os_unix.h   \
550 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
551 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h \
552 version.h
553evalfunc.obj : evalfunc.c vim.h [.auto]config.h feature.h os_unix.h \
554 ascii.h keymap.h term.h macros.h option.h structs.h \
555 regexp.h gui.h beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h \
556 proto.h globals.h version.h
557ex_cmds.obj : ex_cmds.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 beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
560 globals.h version.h
561ex_cmds2.obj : ex_cmds2.c vim.h [.auto]config.h feature.h os_unix.h \
562 ascii.h keymap.h term.h macros.h structs.h regexp.h \
563 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
564 globals.h version.h
565ex_docmd.obj : ex_docmd.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 beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
568 globals.h
569ex_eval.obj : ex_eval.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 beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
572 globals.h
573ex_getln.obj : ex_getln.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 beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
576 globals.h
577fileio.obj : fileio.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 beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
580 globals.h
581findfile.obj : findfile.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 beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
584 globals.h
585fold.obj : fold.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 beval.h \
587 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h \
588
589getchar.obj : getchar.c vim.h [.auto]config.h feature.h os_unix.h \
590 ascii.h keymap.h term.h macros.h structs.h regexp.h \
591 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
592 globals.h
593hardcopy.obj : hardcopy.c vim.h [.auto]config.h feature.h os_unix.h \
594 ascii.h keymap.h term.h macros.h structs.h regexp.h \
595 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
596 globals.h
597hashtab.obj : hashtab.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 beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
600 globals.h
601if_cscope.obj : if_cscope.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 beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
604 globals.h if_cscope.h
605if_xcmdsrv.obj : if_xcmdsrv.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 beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
608 globals.h version.h
609if_mzsch.obj : if_mzsch.c vim.h [.auto]config.h feature.h os_unix.h \
610 ascii.h keymap.h term.h macros.h option.h structs.h \
611 regexp.h gui.h beval.h [.proto]gui_beval.pro ex_cmds.h proto.h \
612 globals.h if_mzsch.h
613indent.obj : indent.c vim.h [.auto]config.h feature.h os_unix.h
614insexpand.obj : insexpand.c vim.h [.auto]config.h feature.h os_unix.h
615json.obj : json.c vim.h [.auto]config.h feature.h os_unix.h   \
616 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
617 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h \
618 version.h
619list.obj : list.c vim.h [.auto]config.h feature.h os_unix.h \
620 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \
621 beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \
622 globals.h
623main.obj : main.c vim.h [.auto]config.h feature.h os_unix.h   \
624 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
625 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h \
626 arabic.c
627mark.obj : mark.c vim.h [.auto]config.h feature.h os_unix.h   \
628 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
629 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h \
630
631memfile.obj : memfile.c vim.h [.auto]config.h feature.h os_unix.h \
632 ascii.h keymap.h term.h macros.h structs.h regexp.h \
633 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
634 globals.h
635memline.obj : memline.c vim.h [.auto]config.h feature.h os_unix.h \
636 ascii.h keymap.h term.h macros.h structs.h regexp.h \
637 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
638 globals.h
639menu.obj : menu.c vim.h [.auto]config.h feature.h os_unix.h   \
640 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
641 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h \
642
643message.obj : message.c vim.h [.auto]config.h feature.h os_unix.h \
644 ascii.h keymap.h term.h macros.h structs.h regexp.h \
645 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
646 globals.h
647misc1.obj : misc1.c vim.h [.auto]config.h feature.h os_unix.h   \
648 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
649 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h \
650 version.h
651misc2.obj : misc2.c vim.h [.auto]config.h feature.h os_unix.h   \
652 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
653 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h \
654
655move.obj : move.c vim.h [.auto]config.h feature.h os_unix.h   \
656 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
657 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h \
658
659mbyte.obj : mbyte.c vim.h [.auto]config.h feature.h os_unix.h   \
660 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
661 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h \
662
663normal.obj : normal.c vim.h [.auto]config.h feature.h os_unix.h \
664 ascii.h keymap.h term.h macros.h structs.h regexp.h \
665 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
666 globals.h
667ops.obj : ops.c vim.h [.auto]config.h feature.h os_unix.h   \
668 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
669 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h \
670
671option.obj : option.c vim.h [.auto]config.h feature.h os_unix.h \
672 ascii.h keymap.h term.h macros.h structs.h regexp.h \
673 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
674 globals.h
675os_unix.obj : os_unix.c vim.h [.auto]config.h feature.h os_unix.h \
676 ascii.h keymap.h term.h macros.h structs.h regexp.h \
677 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
678 globals.h os_unixx.h
679os_vms.obj : os_vms.c vim.h [.auto]config.h feature.h os_unix.h \
680 ascii.h keymap.h term.h macros.h structs.h regexp.h \
681 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
682 globals.h os_unixx.h
683pathdef.obj : pathdef.c vim.h [.auto]config.h feature.h os_unix.h \
684 ascii.h keymap.h term.h macros.h structs.h regexp.h \
685 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
686 globals.h
687popupmnu.obj : popupmnu.c vim.h [.auto]config.h feature.h os_unix.h \
688 ascii.h keymap.h term.h macros.h structs.h regexp.h \
689 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
690 globals.h
691popupwin.obj : popupwin.c vim.h [.auto]config.h feature.h os_unix.h \
692 ascii.h keymap.h term.h macros.h structs.h regexp.h \
693 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
694 globals.h
695quickfix.obj : quickfix.c vim.h [.auto]config.h feature.h os_unix.h \
696 ascii.h keymap.h term.h macros.h structs.h regexp.h \
697 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
698 globals.h
699regexp.obj : regexp.c vim.h [.auto]config.h feature.h os_unix.h \
700 ascii.h keymap.h term.h macros.h structs.h regexp.h \
701 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
702 globals.h
703screen.obj : screen.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 beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
706 globals.h
707search.obj : search.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 beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
710 globals.h
711sha256.obj : sha256.c vim.h [.auto]config.h feature.h os_unix.h \
712 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \
713 beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \
714 globals.h
715sign.obj : sign.c vim.h [.auto]config.h feature.h os_unix.h \
716 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \
717 beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \
718 globals.h
719spell.obj : spell.c vim.h [.auto]config.h feature.h os_unix.h \
720 ascii.h keymap.h term.h macros.h structs.h regexp.h \
721 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
722 globals.h
723spellfile.obj : spellfile.c vim.h [.auto]config.h feature.h os_unix.h \
724 ascii.h keymap.h term.h macros.h option.h structs.h \
725 regexp.h gui.h beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h \
726 proto.h globals.h
727syntax.obj : syntax.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 beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
730 globals.h
731tag.obj : tag.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 beval.h \
733 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h \
734
735term.obj : term.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 beval.h \
737 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h \
738
739termlib.obj : termlib.c vim.h [.auto]config.h feature.h os_unix.h   \
740 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
741 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h \
742
743textprop.obj : textprop.c vim.h [.auto]config.h feature.h os_unix.h   \
744 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
745 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h \
746
747ui.obj : ui.c vim.h [.auto]config.h feature.h os_unix.h   \
748 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
749 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h \
750
751undo.obj : undo.c vim.h [.auto]config.h feature.h os_unix.h   \
752 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
753 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h \
754
755usercmd.obj : usercmd.c vim.h [.auto]config.h feature.h os_unix.h \
756 ascii.h keymap.h term.h macros.h option.h structs.h \
757 regexp.h gui.h beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h \
758 proto.h globals.h
759
760userfunc.obj : userfunc.c vim.h [.auto]config.h feature.h os_unix.h \
761 ascii.h keymap.h term.h macros.h option.h structs.h \
762 regexp.h gui.h beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h \
763 proto.h globals.h
764
765version.obj : version.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 version.h
769window.obj : window.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
773gui.obj : gui.c vim.h [.auto]config.h feature.h os_unix.h   \
774 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
775 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h \
776
777gui_gtk.obj : gui_gtk.c gui_gtk_f.h vim.h [.auto]config.h feature.h \
778 os_unix.h   ascii.h keymap.h term.h macros.h structs.h \
779 regexp.h gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h \
780 proto.h globals.h [-.pixmaps]stock_icons.h
781gui_gtk_f.obj : gui_gtk_f.c vim.h [.auto]config.h feature.h os_unix.h \
782 ascii.h keymap.h term.h macros.h structs.h regexp.h \
783 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
784 globals.h gui_gtk_f.h
785gui_motif.obj : gui_motif.c vim.h [.auto]config.h feature.h os_unix.h \
786 ascii.h keymap.h term.h macros.h structs.h regexp.h \
787 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
788 globals.h [-.pixmaps]alert.xpm [-.pixmaps]error.xpm \
789 [-.pixmaps]generic.xpm [-.pixmaps]info.xpm [-.pixmaps]quest.xpm
790gui_athena.obj : gui_athena.c vim.h [.auto]config.h feature.h os_unix.h \
791 ascii.h keymap.h term.h macros.h structs.h regexp.h \
792 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
793 globals.h gui_at_sb.h
794gui_gtk_x11.obj : gui_gtk_x11.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 gui_gtk_f.h [-.runtime]vim32x32.xpm \
798 [-.runtime]vim16x16.xpm [-.runtime]vim48x48.xpm
799gui_x11.obj : gui_x11.c vim.h [.auto]config.h feature.h os_unix.h \
800 ascii.h keymap.h term.h macros.h structs.h regexp.h \
801 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
802 globals.h [-.runtime]vim32x32.xpm \
803 [-.runtime]vim16x16.xpm [-.runtime]vim48x48.xpm [-.pixmaps]tb_new.xpm \
804 [-.pixmaps]tb_open.xpm [-.pixmaps]tb_close.xpm [-.pixmaps]tb_save.xpm \
805 [-.pixmaps]tb_print.xpm [-.pixmaps]tb_cut.xpm [-.pixmaps]tb_copy.xpm \
806 [-.pixmaps]tb_paste.xpm [-.pixmaps]tb_find.xpm \
807 [-.pixmaps]tb_find_next.xpm [-.pixmaps]tb_find_prev.xpm \
808 [-.pixmaps]tb_find_help.xpm [-.pixmaps]tb_exit.xpm \
809 [-.pixmaps]tb_undo.xpm [-.pixmaps]tb_redo.xpm [-.pixmaps]tb_help.xpm \
810 [-.pixmaps]tb_macro.xpm [-.pixmaps]tb_make.xpm \
811 [-.pixmaps]tb_save_all.xpm [-.pixmaps]tb_jump.xpm \
812 [-.pixmaps]tb_ctags.xpm [-.pixmaps]tb_load_session.xpm \
813 [-.pixmaps]tb_save_session.xpm [-.pixmaps]tb_new_session.xpm \
814 [-.pixmaps]tb_blank.xpm [-.pixmaps]tb_maximize.xpm \
815 [-.pixmaps]tb_split.xpm [-.pixmaps]tb_minimize.xpm \
816 [-.pixmaps]tb_shell.xpm [-.pixmaps]tb_replace.xpm \
817 [-.pixmaps]tb_vsplit.xpm [-.pixmaps]tb_maxwidth.xpm \
818 [-.pixmaps]tb_minwidth.xpm
819gui_at_sb.obj : gui_at_sb.c vim.h [.auto]config.h feature.h os_unix.h \
820 ascii.h keymap.h term.h macros.h structs.h regexp.h \
821 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
822 globals.h gui_at_sb.h
823gui_at_fs.obj : gui_at_fs.c vim.h [.auto]config.h feature.h os_unix.h \
824 ascii.h keymap.h term.h macros.h structs.h regexp.h \
825 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
826 globals.h gui_at_sb.h
827pty.obj : pty.c vim.h [.auto]config.h feature.h os_unix.h   \
828 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
829 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h \
830
831hangulin.obj : hangulin.c vim.h [.auto]config.h feature.h os_unix.h \
832 ascii.h keymap.h term.h macros.h structs.h regexp.h \
833 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
834 globals.h
835if_perl.obj : [.auto]if_perl.c vim.h [.auto]config.h feature.h os_unix.h \
836 ascii.h keymap.h term.h macros.h structs.h regexp.h \
837 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
838 globals.h
839if_perlsfio.obj : if_perlsfio.c vim.h [.auto]config.h feature.h os_unix.h \
840 ascii.h keymap.h term.h macros.h structs.h regexp.h \
841 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
842 globals.h
843if_python.obj : if_python.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
847if_tcl.obj : if_tcl.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
851if_ruby.obj : if_ruby.c vim.h [.auto]config.h feature.h os_unix.h \
852 ascii.h keymap.h term.h macros.h structs.h regexp.h \
853 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
854 globals.h version.h
855beval.obj : beval.c vim.h [.auto]config.h feature.h os_unix.h \
856 ascii.h keymap.h term.h macros.h structs.h regexp.h \
857 gui.h beval.h option.h ex_cmds.h proto.h \
858 globals.h
859gui_beval.obj : gui_beval.c vim.h [.auto]config.h feature.h os_unix.h \
860 ascii.h keymap.h term.h macros.h structs.h regexp.h \
861 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
862 globals.h
863workshop.obj : workshop.c [.auto]config.h integration.h vim.h feature.h \
864 os_unix.h ascii.h keymap.h term.h macros.h structs.h \
865 regexp.h gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h \
866 proto.h globals.h version.h workshop.h
867wsdebug.obj : wsdebug.c
868integration.obj : integration.c vim.h [.auto]config.h feature.h os_unix.h \
869 ascii.h keymap.h term.h macros.h structs.h regexp.h \
870 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
871 globals.h integration.h
872netbeans.obj : netbeans.c vim.h [.auto]config.h feature.h os_unix.h \
873 ascii.h keymap.h term.h macros.h structs.h regexp.h \
874 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
875 globals.h version.h
876gui_xmdlg.obj : gui_xmdlg.c [.auto]config.h vim.h feature.h os_unix.h
877gui_xmebw.obj : gui_xmebw.c [.auto]config.h vim.h feature.h os_unix.h
878xdiffi.obj : [.xdiff]xdiffi.c [.xdiff]xinclude.h [.auto]config.h vim.h feature.h os_unix.h
879xemit.obj : [.xdiff]xemit.c [.xdiff]xinclude.h [.auto]config.h vim.h feature.h os_unix.h
880xprepare.obj : [.xdiff]xprepare.c [.xdiff]xinclude.h [.auto]config.h vim.h feature.h os_unix.h
881xutils.obj : [.xdiff]xutils.c [.xdiff]xinclude.h [.auto]config.h vim.h feature.h os_unix.h
882xhistogram.obj : [.xdiff]xhistogram.c [.xdiff]xinclude.h [.auto]config.h vim.h feature.h os_unix.h
883xpatience.obj : [.xdiff]xpatience.c [.xdiff]xinclude.h [.auto]config.h vim.h feature.h os_unix.h
884