blob: 524d9b485de035d8beee30f21301a778a6196983 [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001#
2# Makefile for Vim on OpenVMS
3#
4# Maintainer: Zoltan Arpadffy <arpadffy@polarhome.com>
Bram Moolenaar3d20ca12006-11-28 16:43:58 +00005# Last change: 2006 Sep 04
Bram Moolenaar071d4272004-06-13 20:20:40 +00006#
Bram Moolenaar8d343302005-07-12 22:46:17 +00007# This has script been tested on VMS 6.2 to 8.2 on DEC Alpha, VAX and IA64
Bram Moolenaar071d4272004-06-13 20:20:40 +00008# 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#
Bram Moolenaar3d20ca12006-11-28 16:43:58 +000016# To build: mms/descrip=Make_vms.mms /ignore=warning
Bram Moolenaar071d4272004-06-13 20:20:40 +000017# 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######################################################################
Bram Moolenaar071d4272004-06-13 20:20:40 +000024# VMS version
25# Uncomment if you use VMS version 6.2 or older
26# OLD_VMS = YES
27
28# Compiler selection.
29# Comment out if you use the VAXC compiler
30DECC = YES
31
32# Build model selection
33# TINY - Almost no features enabled, not even multiple windows
34# SMALL - Few features enabled, as basic as possible
35# NORMAL - A default selection of features enabled
36# BIG - Many features enabled, as rich as possible. (default)
37# HUGE - All possible featues enabled.
38# Please select one of these alternatives above.
39MODEL = BIG
40
41# GUI or terminal mode executable.
42# Comment out if you want just the character terminal mode only.
Bram Moolenaar4c3f5362006-04-11 21:38:50 +000043# GUI with Motif
Bram Moolenaar071d4272004-06-13 20:20:40 +000044GUI = YES
45
46# GUI with GTK
47# If you have GTK installed you might want to enable this option.
Bram Moolenaar3d20ca12006-11-28 16:43:58 +000048# NOTE: you will need to properly define GTK_DIR below
Bram Moolenaar071d4272004-06-13 20:20:40 +000049# GTK = YES
50
Bram Moolenaar8d343302005-07-12 22:46:17 +000051# GUI/Motif with XPM
52# If you have XPM installed you might want to build Motif version with toolbar
53# XPM = YES
54
Bram Moolenaar071d4272004-06-13 20:20:40 +000055# Comment out if you want the compiler version with :ver command.
56# NOTE: This part can make some complications if you're using some
57# predefined symbols/flags for your compiler. If does, just leave behind
58# the comment varialbe CCVER.
59CCVER = YES
60
61# Uncomment if want a debug version. Resulting executable is DVIM.EXE
62# Development purpose only! Normally, it should not be defined. !!!
63# DEBUG = YES
64
65# Languages support for Perl, Python, TCL etc.
66# If you don't need it really, leave them behind the comment.
67# You will need related libraries, include files etc.
68# VIM_TCL = YES
69# VIM_PERL = YES
70# VIM_PYTHON = YES
71# VIM_RUBY = YES
72# VIM_SNIFF = YES
73
74# X Input Method. For entering special languages like chinese and
75# Japanese. Please define just one: VIM_XIM or VIM_HANGULIN
76# If you don't need it really, leave it behind the comment.
77# VIM_XIM = YES
78
79# Internal Hangul input method. GUI only.
80# If you don't need it really, leave it behind the comment.
81# VIM_HANGULIN = YES
82
83# Allow any white space to separate the fields in a tags file
84# When not defined, only a TAB is allowed.
85# VIM_TAG_ANYWHITE = YES
86
87######################################################################
88# Directory, library and include files configuration section.
89# Normally you need not to change anything below. !
90# These may need to be defined if things are not in standard locations
91#
92# You can find some explanation in INSTALLVMS.TXT
93######################################################################
94
95# Compiler setup
96
Bram Moolenaar3d20ca12006-11-28 16:43:58 +000097.IFDEF MMSVAX
Bram Moolenaar071d4272004-06-13 20:20:40 +000098.IFDEF DECC # VAX with DECC
Bram Moolenaar910f66f2006-04-05 20:41:53 +000099CC_DEF = cc # /decc # some system requires this switch
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000100 # but when it is not required /ver might fail
Bram Moolenaar071d4272004-06-13 20:20:40 +0000101PREFIX = /prefix=all
102.ELSE # VAX with VAXC
103CC_DEF = cc
104PREFIX =
105CCVER =
106.ENDIF
107.ELSE # AXP wixh DECC
108CC_DEF = cc
109PREFIX = /prefix=all
110.ENDIF
111
112LD_DEF = link
113C_INC = [.proto]
114
115.IFDEF OLD_VMS
116VMS_DEF = ,"OLD_VMS"
117.ENDIF
118
119.IFDEF DEBUG
120DEBUG_DEF = ,"DEBUG"
121TARGET = dvim.exe
122CFLAGS = /debug/noopt$(PREFIX)
123LDFLAGS = /debug
124.ELSE
125TARGET = vim.exe
126CFLAGS = /opt$(PREFIX)
127LDFLAGS =
128.ENDIF
129
130# Predefined VIM directories
131# Please, use $VIM and $VIMRUNTIME logicals instead
132VIMLOC = ""
133VIMRUN = ""
134
135CONFIG_H = os_vms_conf.h
136
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000137# GTK or XPM but not both
Bram Moolenaar071d4272004-06-13 20:20:40 +0000138.IFDEF GTK
139.IFDEF GUI
140.ELSE
141GUI = YES
142.ENDIF
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000143.IFDEF XPM
144XPM = ""
145.ENDIF
146.ENDIF
147
148.IFDEF XPM
149.IFDEF GUI
150.ELSE
151GUI = YES
152.ENDIF
153.IFDEF GTK
154GTK = ""
Bram Moolenaar071d4272004-06-13 20:20:40 +0000155.ENDIF
Bram Moolenaar8d343302005-07-12 22:46:17 +0000156.ENDIF
Bram Moolenaar071d4272004-06-13 20:20:40 +0000157
158.IFDEF GUI
159# X/Motif/GTK executable (also works in terminal mode )
160
161.IFDEF GTK
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000162# NOTE: you need to set up your GTK_DIR (GTK root directory), because it is
163# unique on every system - logicals are not accepted
Bram Moolenaar8d343302005-07-12 22:46:17 +0000164# please note: directory should end with . in order to /trans=conc work
Bram Moolenaar3d20ca12006-11-28 16:43:58 +0000165# This value for GTK_DIR is an example.
166GTK_DIR = $1$DGA104:[USERS.ZAY.WORK.GTK1210.]
Bram Moolenaar071d4272004-06-13 20:20:40 +0000167DEFS = "HAVE_CONFIG_H","FEAT_GUI_GTK"
168LIBS = ,OS_VMS_GTK.OPT/OPT
169GUI_FLAG = /name=(as_is,short)/float=ieee/ieee=denorm
Bram Moolenaar8d343302005-07-12 22:46:17 +0000170GUI_SRC = gui.c gui_gtk.c gui_gtk_f.c gui_gtk_x11.c gui_beval.c pty.c
171GUI_OBJ = gui.obj gui_gtk.obj gui_gtk_f.obj gui_gtk_x11.obj gui_beval.obj pty.obj
Bram Moolenaar071d4272004-06-13 20:20:40 +0000172GUI_INC = ,"/gtk_root/gtk","/gtk_root/glib"
173# GUI_INC_VER is used just for :ver information
174# this string should escape from C and DCL in the same time
175GUI_INC_VER= ,\""/gtk_root/gtk\"",\""/gtk_root/glib\""
Bram Moolenaar8d343302005-07-12 22:46:17 +0000176.ELSE
Bram Moolenaar071d4272004-06-13 20:20:40 +0000177MOTIF = YES
Bram Moolenaar8d343302005-07-12 22:46:17 +0000178.IFDEF XPM
179DEFS = "HAVE_CONFIG_H","FEAT_GUI_MOTIF","HAVE_XPM"
180.ELSE
Bram Moolenaar071d4272004-06-13 20:20:40 +0000181DEFS = "HAVE_CONFIG_H","FEAT_GUI_MOTIF"
Bram Moolenaar8d343302005-07-12 22:46:17 +0000182.ENDIF
Bram Moolenaar071d4272004-06-13 20:20:40 +0000183LIBS = ,OS_VMS_MOTIF.OPT/OPT
184GUI_FLAG =
Bram Moolenaar8d343302005-07-12 22:46:17 +0000185GUI_SRC = gui.c gui_motif.c gui_x11.c gui_beval.c gui_xmdlg.c gui_xmebw.c
186GUI_OBJ = gui.obj gui_motif.obj gui_x11.obj gui_beval.obj gui_xmdlg.obj gui_xmebw.obj
Bram Moolenaar071d4272004-06-13 20:20:40 +0000187GUI_INC =
188.ENDIF
189
190# You need to define these variables if you do not have DECW files
191# at standard location
192GUI_INC_DIR = ,decw$include:
193# GUI_LIB_DIR = ,sys$library:
194
195.ELSE
196# Character terminal only executable
197DEFS = "HAVE_CONFIG_H"
198LIBS =
199.ENDIF
200
201.IFDEF VIM_PERL
202# Perl related setup.
203PERL = perl
204PERL_DEF = ,"FEAT_PERL"
205PERL_SRC = if_perlsfio.c if_perl.xs
206PERL_OBJ = if_perlsfio.obj if_perl.obj
207PERL_LIB = ,OS_VMS_PERL.OPT/OPT
208PERL_INC = ,dka0:[perlbuild.perl.lib.vms_axp.5_6_1.core]
209.ENDIF
210
211.IFDEF VIM_PYTHON
212# Python related setup.
213PYTHON_DEF = ,"FEAT_PYTHON"
214PYTHON_SRC = if_python.c
215PYTHON_OBJ = if_python.obj
216PYTHON_LIB = ,OS_VMS_PYTHON.OPT/OPT
217PYTHON_INC = ,PYTHON_INCLUDE
218.ENDIF
219
220.IFDEF VIM_TCL
221# TCL related setup.
222TCL_DEF = ,"FEAT_TCL"
223TCL_SRC = if_tcl.c
224TCL_OBJ = if_tcl.obj
225TCL_LIB = ,OS_VMS_TCL.OPT/OPT
226TCL_INC = ,dka0:[tcl80.generic]
227.ENDIF
228
229.IFDEF VIM_SNIFF
230# SNIFF related setup.
231SNIFF_DEF = ,"FEAT_SNIFF"
232SNIFF_SRC = if_sniff.c
233SNIFF_OBJ = if_sniff.obj
234SNIFF_LIB =
235SNIFF_INC =
236.ENDIF
237
238.IFDEF VIM_RUBY
239# RUBY related setup.
240RUBY_DEF = ,"FEAT_RUBY"
241RUBY_SRC = if_ruby.c
242RUBY_OBJ = if_ruby.obj
243RUBY_LIB = ,OS_VMS_RUBY.OPT/OPT
244RUBY_INC =
245.ENDIF
246
247.IFDEF VIM_XIM
248# XIM related setup.
249.IFDEF GUI
250XIM_DEF = ,"FEAT_XIM"
251.ENDIF
252.ENDIF
253
254.IFDEF VIM_HANGULIN
255# HANGULIN related setup.
256.IFDEF GUI
257HANGULIN_DEF = ,"FEAT_HANGULIN"
258HANGULIN_SRC = hangulin.c
259HANGULIN_OBJ = hangulin.obj
260.ENDIF
261.ENDIF
262
263.IFDEF VIM_TAG_ANYWHITE
264# TAG_ANYWHITE related setup.
265TAG_DEF = ,"FEAT_TAG_ANYWHITE"
266.ENDIF
267
268
269######################################################################
270# End of configuration section.
271# Please, do not change anything below without programming experience.
272######################################################################
273
Bram Moolenaar071d4272004-06-13 20:20:40 +0000274MODEL_DEF = "FEAT_$(MODEL)",
275
276# These go into pathdef.c
277VIMUSER = "''F$EDIT(F$GETJPI(" ","USERNAME"),"TRIM")'"
278VIMHOST = "''F$TRNLNM("SYS$NODE")'''F$TRNLNM("UCX$INET_HOST")'.''F$TRNLNM("UCX$INET_DOMAIN")'"
279
280.SUFFIXES : .obj .c
281
282ALL_CFLAGS = /def=($(MODEL_DEF)$(DEFS)$(VMS_DEF)$(DEBUG_DEF)$(PERL_DEF)$(PYTHON_DEF) -
283 $(TCL_DEF)$(SNIFF_DEF)$(RUBY_DEF)$(XIM_DEF)$(HANGULIN_DEF)$(TAG_DEF)) -
284 $(CFLAGS)$(GUI_FLAG) -
285 /include=($(C_INC)$(GUI_INC_DIR)$(GUI_INC)$(PERL_INC)$(PYTHON_INC)$(TCL_INC))
286
287# CFLAGS displayed in :ver information
288# It is specially formated for correct display of unix like includes
289# as $(GUI_INC) - replaced with $(GUI_INC_VER)
290# Otherwise should not be any other difference.
291ALL_CFLAGS_VER = /def=($(MODEL_DEF)$(DEFS)$(VMS_DEF)$(DEBUG_DEF)$(PERL_DEF)$(PYTHON_DEF) -
292 $(TCL_DEF)$(SNIFF_DEF)$(RUBY_DEF)$(XIM_DEF)$(HANGULIN_DEF)$(TAG_DEF)) -
293 $(CFLAGS)$(GUI_FLAG) -
294 /include=($(C_INC)$(GUI_INC_DIR)$(GUI_INC_VER)$(PERL_INC)$(PYTHON_INC)$(TCL_INC))
295
296ALL_LIBS = $(LIBS) $(GUI_LIB_DIR) $(GUI_LIB) \
297 $(PERL_LIB) $(PYTHON_LIB) $(TCL_LIB) $(SNIFF_LIB) $(RUBY_LIB)
298
299SRC = buffer.c charset.c diff.c digraph.c edit.c eval.c ex_cmds.c ex_cmds2.c \
300 ex_docmd.c ex_eval.c ex_getln.c if_xcmdsrv.c fileio.c fold.c getchar.c \
Bram Moolenaar76b92b22006-03-24 22:46:53 +0000301 hardcopy.c hashtab.c main.c mark.c menu.c mbyte.c memfile.c memline.c message.c misc1.c \
302 misc2.c move.c normal.c ops.c option.c popupmnu.c quickfix.c regexp.c search.c \
Bram Moolenaar217ad922005-03-20 22:37:15 +0000303 spell.c syntax.c tag.c term.c termlib.c ui.c undo.c version.c screen.c \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000304 window.c os_unix.c os_vms.c pathdef.c \
305 $(GUI_SRC) $(PERL_SRC) $(PYTHON_SRC) $(TCL_SRC) $(SNIFF_SRC) \
306 $(RUBY_SRC) $(HANGULIN_SRC)
307
308OBJ = buffer.obj charset.obj diff.obj digraph.obj edit.obj eval.obj \
309 ex_cmds.obj ex_cmds2.obj ex_docmd.obj ex_eval.obj ex_getln.obj \
Bram Moolenaar76b92b22006-03-24 22:46:53 +0000310 if_xcmdsrv.obj fileio.obj fold.obj getchar.obj hardcopy.obj hashtab.obj main.obj mark.obj \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000311 menu.obj memfile.obj memline.obj message.obj misc1.obj misc2.obj \
Bram Moolenaar76b92b22006-03-24 22:46:53 +0000312 move.obj mbyte.obj normal.obj ops.obj option.obj popupmnu.obj quickfix.obj \
Bram Moolenaar217ad922005-03-20 22:37:15 +0000313 regexp.obj search.obj spell.obj syntax.obj tag.obj term.obj termlib.obj \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000314 ui.obj undo.obj screen.obj version.obj window.obj os_unix.obj \
315 os_vms.obj pathdef.obj \
316 $(GUI_OBJ) $(PERL_OBJ) $(PYTHON_OBJ) $(TCL_OBJ) $(SNIFF_OBJ) \
317 $(RUBY_OBJ) $(HANGULIN_OBJ)
318
319# Default target is making the executable
320all : [.auto]config.h mmk_compat motif_env gtk_env perl_env python_env tcl_env ruby_env $(TARGET)
321 ! $@
322
323[.auto]config.h : $(CONFIG_H)
324 copy/nolog $(CONFIG_H) [.auto]config.h
325
326mmk_compat :
327 -@ open/write pd pathdef.c
328 -@ write pd "/* Empty file to satisfy MMK depend. */"
329 -@ write pd "/* It will be owerwritten later on... */"
330 -@ close pd
331clean :
332 -@ if "''F$SEARCH("*.exe")'" .NES. "" then delete/noconfirm/nolog *.exe;*
333 -@ if "''F$SEARCH("*.obj")'" .NES. "" then delete/noconfirm/nolog *.obj;*
334 -@ if "''F$SEARCH("[.auto]config.h")'" .NES. "" then delete/noconfirm/nolog [.auto]config.h;*
335 -@ if "''F$SEARCH("pathdef.c")'" .NES. "" then delete/noconfirm/nolog pathdef.c;*
336 -@ if "''F$SEARCH("if_perl.c")'" .NES. "" then delete/noconfirm/nolog if_perl.c;*
337 -@ if "''F$SEARCH("*.opt")'" .NES. "" then delete/noconfirm/nolog *.opt;*
338
339# Link the target
340$(TARGET) : $(OBJ)
341 $(LD_DEF) $(LDFLAGS) /exe=$(TARGET) $+ $(ALL_LIBS)
342
343.c.obj :
344 $(CC_DEF) $(ALL_CFLAGS) $<
345
346pathdef.c : check_ccver $(CONFIG_H)
347 -@ write sys$output "creating PATHDEF.C file."
348 -@ open/write pd pathdef.c
349 -@ write pd "/* pathdef.c -- DO NOT EDIT! */"
350 -@ write pd "/* This file is automatically created by MAKE_VMS.MMS"
351 -@ write pd " * Change the file MAKE_VMS.MMS Only. */"
352 -@ write pd "typedef unsigned char char_u;"
353 -@ write pd "char_u *default_vim_dir = (char_u *)"$(VIMLOC)";"
354 -@ write pd "char_u *default_vimruntime_dir = (char_u *)"$(VIMRUN)";"
355 -@ write pd "char_u *all_cflags = (char_u *)""$(CC_DEF)$(ALL_CFLAGS_VER)"";"
356 -@ write pd "char_u *all_lflags = (char_u *)""$(LD_DEF)$(LDFLAGS) /exe=$(TARGET) *.OBJ $(ALL_LIBS)"";"
357 -@ write pd "char_u *compiler_version = (char_u *) ""''CC_VER'"";"
358 -@ write pd "char_u *compiled_user = (char_u *) "$(VIMUSER)";"
Bram Moolenaar3d20ca12006-11-28 16:43:58 +0000359 -@ write pd "char_u *compiled_sys = (char_u *) "$(VIMHOST)";"
360 -@ write pd "char_u *compiled_arch = (char_u *) ""$(MMSARCH_NAME)"";"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000361 -@ close pd
362
363if_perl.c : if_perl.xs
364 -@ $(PERL) PERL_ROOT:[LIB.ExtUtils]xsubpp -prototypes -typemap -
365 PERL_ROOT:[LIB.ExtUtils]typemap if_perl.xs >> $@
366
367make_vms.mms :
368 -@ write sys$output "The name of the makefile MUST be <MAKE_VMS.MMS> !!!"
369
370.IFDEF CCVER
371# This part can make some complications if you're using some predefined
372# symbols/flags for your compiler. If does, just comment out CCVER variable
373check_ccver :
374 -@ define sys$output cc_ver.tmp
375 -@ $(CC_DEF)/version
376 -@ deassign sys$output
377 -@ open/read file cc_ver.tmp
378 -@ read file CC_VER
379 -@ close file
380 -@ delete/noconfirm/nolog cc_ver.tmp.*
381.ELSE
382check_ccver :
383 -@ !
384.ENDIF
385
386.IFDEF MOTIF
387motif_env :
Bram Moolenaar8d343302005-07-12 22:46:17 +0000388.IFDEF XPM
389 -@ write sys$output "using DECW/Motif/XPM environment."
390.ELSE
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000391 -@ write sys$output "using DECW/Motif environment."
Bram Moolenaar8d343302005-07-12 22:46:17 +0000392.ENDIF
Bram Moolenaar071d4272004-06-13 20:20:40 +0000393 -@ write sys$output "creating OS_VMS_MOTIF.OPT file."
394 -@ open/write opt_file OS_VMS_MOTIF.OPT
395 -@ write opt_file "sys$share:decw$xmlibshr12.exe/share,-"
396 -@ write opt_file "sys$share:decw$xtlibshrr5.exe/share,-"
397 -@ write opt_file "sys$share:decw$xlibshr.exe/share"
398 -@ close opt_file
399.ELSE
400motif_env :
401 -@ !
402.ENDIF
403
404
405.IFDEF GTK
406gtk_env :
407 -@ write sys$output "using GTK environment:"
408 -@ define/nolog gtk_root /trans=conc $(GTK_DIR)
409 -@ show logical gtk_root
410 -@ write sys$output " include path: "$(GUI_INC)""
411 -@ write sys$output "creating OS_VMS_GTK.OPT file."
412 -@ open/write opt_file OS_VMS_GTK.OPT
413 -@ write opt_file "gtk_root:[glib]libglib.exe /share,-"
414 -@ write opt_file "gtk_root:[glib.gmodule]libgmodule.exe /share,-"
415 -@ write opt_file "gtk_root:[gtk.gdk]libgdk.exe /share,-"
416 -@ write opt_file "gtk_root:[gtk.gtk]libgtk.exe /share,-"
417 -@ write opt_file "sys$share:decw$xmlibshr12.exe/share,-"
418 -@ write opt_file "sys$share:decw$xtlibshrr5.exe/share,-"
419 -@ write opt_file "sys$share:decw$xlibshr.exe/share"
420 -@ close opt_file
421.ELSE
422gtk_env :
423 -@ !
424.ENDIF
425
426.IFDEF VIM_PERL
427perl_env :
428 -@ write sys$output "using PERL environment:"
429 -@ show logical PERLSHR
430 -@ write sys$output " include path: ""$(PERL_INC)"""
431 -@ show symbol perl
432 -@ open/write pd if_perl.c
433 -@ write pd "/* Empty file to satisfy MMK depend. */"
434 -@ write pd "/* It will be owerwritten later on... */"
435 -@ close pd
436 -@ write sys$output "creating OS_VMS_PERL.OPT file."
437 -@ open/write opt_file OS_VMS_PERL.OPT
438 -@ write opt_file "PERLSHR /share"
439 -@ close opt_file
440.ELSE
441perl_env :
442 -@ !
443.ENDIF
444
445.IFDEF VIM_PYTHON
446python_env :
447 -@ write sys$output "using PYTHON environment:"
448 -@ show logical PYTHON_INCLUDE
449 -@ show logical PYTHON_OLB
450 -@ write sys$output "creating OS_VMS_PYTHON.OPT file."
451 -@ open/write opt_file OS_VMS_PYTHON.OPT
452 -@ write opt_file "PYTHON_OLB:PYTHON.OLB /share"
453 -@ close opt_file
454.ELSE
455python_env :
456 -@ !
457.ENDIF
458
459.IFDEF VIM_TCL
460tcl_env :
461 -@ write sys$output "using TCL environment:"
462 -@ show logical TCLSHR
463 -@ write sys$output " include path: ""$(TCL_INC)"""
464 -@ write sys$output "creating OS_VMS_TCL.OPT file."
465 -@ open/write opt_file OS_VMS_TCL.OPT
466 -@ write opt_file "TCLSHR /share"
467 -@ close opt_file
468.ELSE
469tcl_env :
470 -@ !
471.ENDIF
472
473.IFDEF VIM_RUBY
474ruby_env :
475 -@ write sys$output "using RUBY environment:"
476 -@ write sys$output " include path: ""$(RUBY_INC)"""
477 -@ write sys$output "creating OS_VMS_RUBY.OPT file."
478 -@ open/write opt_file OS_VMS_RUBY.OPT
479 -@ write opt_file "RUBYSHR /share"
480 -@ close opt_file
481.ELSE
482ruby_env :
483 -@ !
484.ENDIF
485
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000486buffer.obj : buffer.c vim.h [.auto]config.h feature.h os_unix.h \
487 ascii.h keymap.h term.h macros.h structs.h regexp.h \
488 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
489 globals.h farsi.h arabic.h version.h
490charset.obj : charset.c vim.h [.auto]config.h feature.h os_unix.h \
491 ascii.h keymap.h term.h macros.h structs.h regexp.h \
492 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
493 globals.h farsi.h arabic.h
494diff.obj : diff.c vim.h [.auto]config.h feature.h os_unix.h \
495 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \
496 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
497 arabic.h
498digraph.obj : digraph.c vim.h [.auto]config.h feature.h os_unix.h \
499 ascii.h keymap.h term.h macros.h structs.h regexp.h \
500 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
501 globals.h farsi.h arabic.h
502edit.obj : edit.c vim.h [.auto]config.h feature.h os_unix.h \
503 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \
504 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
505 arabic.h
506eval.obj : eval.c vim.h [.auto]config.h feature.h os_unix.h \
507 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \
508 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
509 arabic.h version.h
510ex_cmds.obj : ex_cmds.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 gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
513 globals.h farsi.h arabic.h version.h
514ex_cmds2.obj : ex_cmds2.c vim.h [.auto]config.h feature.h os_unix.h \
515 ascii.h keymap.h term.h macros.h structs.h regexp.h \
516 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
517 globals.h farsi.h arabic.h version.h
518ex_docmd.obj : ex_docmd.c vim.h [.auto]config.h feature.h os_unix.h \
519 ascii.h keymap.h term.h macros.h structs.h regexp.h \
520 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
521 globals.h farsi.h arabic.h
522ex_eval.obj : ex_eval.c vim.h [.auto]config.h feature.h os_unix.h \
523 ascii.h keymap.h term.h macros.h structs.h regexp.h \
524 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
525 globals.h farsi.h arabic.h
526ex_getln.obj : ex_getln.c vim.h [.auto]config.h feature.h os_unix.h \
527 ascii.h keymap.h term.h macros.h structs.h regexp.h \
528 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
529 globals.h farsi.h arabic.h
530fileio.obj : fileio.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 gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
533 globals.h farsi.h arabic.h
534fold.obj : fold.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 gui_beval.h \
536 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
537 arabic.h
538getchar.obj : getchar.c vim.h [.auto]config.h feature.h os_unix.h \
539 ascii.h keymap.h term.h macros.h structs.h regexp.h \
540 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
541 globals.h farsi.h arabic.h
Bram Moolenaar58d98232005-07-23 22:25:46 +0000542hardcopy.obj : hardcopy.c vim.h [.auto]config.h feature.h os_unix.h \
543 ascii.h keymap.h term.h macros.h structs.h regexp.h \
544 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
545 globals.h farsi.h arabic.h
Bram Moolenaar76b92b22006-03-24 22:46:53 +0000546hashtab.obj : hashtab.c vim.h [.auto]config.h feature.h os_unix.h \
Bram Moolenaar383f9bc2005-01-19 22:18:32 +0000547 ascii.h keymap.h term.h macros.h structs.h regexp.h \
548 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
549 globals.h farsi.h arabic.h
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000550if_cscope.obj : if_cscope.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 gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
553 globals.h farsi.h arabic.h if_cscope.h
554if_xcmdsrv.obj : if_xcmdsrv.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 gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
557 globals.h farsi.h arabic.h version.h
558main.obj : main.c vim.h [.auto]config.h feature.h os_unix.h \
559 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \
560 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
561 arabic.h farsi.c arabic.c
562mark.obj : mark.c vim.h [.auto]config.h feature.h os_unix.h \
563 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \
564 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
565 arabic.h
566memfile.obj : memfile.c vim.h [.auto]config.h feature.h os_unix.h \
567 ascii.h keymap.h term.h macros.h structs.h regexp.h \
568 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
569 globals.h farsi.h arabic.h
570memline.obj : memline.c vim.h [.auto]config.h feature.h os_unix.h \
571 ascii.h keymap.h term.h macros.h structs.h regexp.h \
572 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
573 globals.h farsi.h arabic.h
574menu.obj : menu.c vim.h [.auto]config.h feature.h os_unix.h \
575 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \
576 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
577 arabic.h
578message.obj : message.c vim.h [.auto]config.h feature.h os_unix.h \
579 ascii.h keymap.h term.h macros.h structs.h regexp.h \
580 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
581 globals.h farsi.h arabic.h
582misc1.obj : misc1.c vim.h [.auto]config.h feature.h os_unix.h \
583 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \
584 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
585 arabic.h version.h
586misc2.obj : misc2.c vim.h [.auto]config.h feature.h os_unix.h \
587 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \
588 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
589 arabic.h
590move.obj : move.c vim.h [.auto]config.h feature.h os_unix.h \
591 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \
592 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
593 arabic.h
594mbyte.obj : mbyte.c vim.h [.auto]config.h feature.h os_unix.h \
595 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \
596 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
597 arabic.h
598normal.obj : normal.c vim.h [.auto]config.h feature.h os_unix.h \
599 ascii.h keymap.h term.h macros.h structs.h regexp.h \
600 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
601 globals.h farsi.h arabic.h
602ops.obj : ops.c vim.h [.auto]config.h feature.h os_unix.h \
603 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \
604 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
605 arabic.h
606option.obj : option.c vim.h [.auto]config.h feature.h os_unix.h \
607 ascii.h keymap.h term.h macros.h structs.h regexp.h \
608 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
609 globals.h farsi.h arabic.h
610os_unix.obj : os_unix.c vim.h [.auto]config.h feature.h os_unix.h \
611 ascii.h keymap.h term.h macros.h structs.h regexp.h \
612 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
613 globals.h farsi.h arabic.h os_unixx.h
614os_vms.obj : os_vms.c vim.h [.auto]config.h feature.h os_unix.h \
615 ascii.h keymap.h term.h macros.h structs.h regexp.h \
616 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
617 globals.h farsi.h arabic.h os_unixx.h
618pathdef.obj : pathdef.c vim.h [.auto]config.h feature.h os_unix.h \
619 ascii.h keymap.h term.h macros.h structs.h regexp.h \
620 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
621 globals.h farsi.h arabic.h
Bram Moolenaar76b92b22006-03-24 22:46:53 +0000622popupmnu.obj : popupmnu.c vim.h [.auto]config.h feature.h os_unix.h \
Bram Moolenaardf1bdc92006-02-23 21:32:16 +0000623 ascii.h keymap.h term.h macros.h structs.h regexp.h \
624 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
625 globals.h farsi.h arabic.h
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000626quickfix.obj : quickfix.c vim.h [.auto]config.h feature.h os_unix.h \
627 ascii.h keymap.h term.h macros.h structs.h regexp.h \
628 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
629 globals.h farsi.h arabic.h
630regexp.obj : regexp.c vim.h [.auto]config.h feature.h os_unix.h \
631 ascii.h keymap.h term.h macros.h structs.h regexp.h \
632 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
633 globals.h farsi.h arabic.h
634screen.obj : screen.c vim.h [.auto]config.h feature.h os_unix.h \
635 ascii.h keymap.h term.h macros.h structs.h regexp.h \
636 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
637 globals.h farsi.h arabic.h
638search.obj : search.c vim.h [.auto]config.h feature.h os_unix.h \
639 ascii.h keymap.h term.h macros.h structs.h regexp.h \
640 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
641 globals.h farsi.h arabic.h
Bram Moolenaar217ad922005-03-20 22:37:15 +0000642spell.obj : spell.c vim.h [.auto]config.h feature.h os_unix.h \
643 ascii.h keymap.h term.h macros.h structs.h regexp.h \
644 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
645 globals.h farsi.h arabic.h
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000646syntax.obj : syntax.c vim.h [.auto]config.h feature.h os_unix.h \
647 ascii.h keymap.h term.h macros.h structs.h regexp.h \
648 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
649 globals.h farsi.h arabic.h
650tag.obj : tag.c vim.h [.auto]config.h feature.h os_unix.h \
651 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \
652 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
653 arabic.h
654term.obj : term.c vim.h [.auto]config.h feature.h os_unix.h \
655 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \
656 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
657 arabic.h
658termlib.obj : termlib.c vim.h [.auto]config.h feature.h os_unix.h \
659 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \
660 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
661 arabic.h
662ui.obj : ui.c vim.h [.auto]config.h feature.h os_unix.h \
663 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \
664 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
665 arabic.h
666undo.obj : undo.c vim.h [.auto]config.h feature.h os_unix.h \
667 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \
668 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
669 arabic.h
670version.obj : version.c vim.h [.auto]config.h feature.h os_unix.h \
671 ascii.h keymap.h term.h macros.h structs.h regexp.h \
672 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
673 globals.h farsi.h arabic.h version.h
674window.obj : window.c vim.h [.auto]config.h feature.h os_unix.h \
675 ascii.h keymap.h term.h macros.h structs.h regexp.h \
676 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
677 globals.h farsi.h arabic.h
678gui.obj : gui.c vim.h [.auto]config.h feature.h os_unix.h \
679 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \
680 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
681 arabic.h
682gui_gtk.obj : gui_gtk.c gui_gtk_f.h vim.h [.auto]config.h feature.h \
683 os_unix.h ascii.h keymap.h term.h macros.h structs.h \
684 regexp.h gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h \
685 proto.h globals.h farsi.h arabic.h [-.pixmaps]stock_icons.h
686gui_gtk_f.obj : gui_gtk_f.c vim.h [.auto]config.h feature.h os_unix.h \
687 ascii.h keymap.h term.h macros.h structs.h regexp.h \
688 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
689 globals.h farsi.h arabic.h gui_gtk_f.h
690gui_motif.obj : gui_motif.c vim.h [.auto]config.h feature.h os_unix.h \
691 ascii.h keymap.h term.h macros.h structs.h regexp.h \
692 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
693 globals.h farsi.h arabic.h [-.pixmaps]alert.xpm [-.pixmaps]error.xpm \
694 [-.pixmaps]generic.xpm [-.pixmaps]info.xpm [-.pixmaps]quest.xpm
695gui_athena.obj : gui_athena.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 gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
698 globals.h farsi.h arabic.h gui_at_sb.h
699gui_gtk_x11.obj : gui_gtk_x11.c vim.h [.auto]config.h feature.h os_unix.h \
700 ascii.h keymap.h term.h macros.h structs.h regexp.h \
701 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
702 globals.h farsi.h arabic.h gui_gtk_f.h [-.runtime]vim32x32.xpm \
703 [-.runtime]vim16x16.xpm [-.runtime]vim48x48.xpm
704gui_x11.obj : gui_x11.c vim.h [.auto]config.h feature.h os_unix.h \
705 ascii.h keymap.h term.h macros.h structs.h regexp.h \
706 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
707 globals.h farsi.h arabic.h [-.runtime]vim32x32.xpm \
708 [-.runtime]vim16x16.xpm [-.runtime]vim48x48.xpm [-.pixmaps]tb_new.xpm \
709 [-.pixmaps]tb_open.xpm [-.pixmaps]tb_close.xpm [-.pixmaps]tb_save.xpm \
710 [-.pixmaps]tb_print.xpm [-.pixmaps]tb_cut.xpm [-.pixmaps]tb_copy.xpm \
711 [-.pixmaps]tb_paste.xpm [-.pixmaps]tb_find.xpm \
712 [-.pixmaps]tb_find_next.xpm [-.pixmaps]tb_find_prev.xpm \
713 [-.pixmaps]tb_find_help.xpm [-.pixmaps]tb_exit.xpm \
714 [-.pixmaps]tb_undo.xpm [-.pixmaps]tb_redo.xpm [-.pixmaps]tb_help.xpm \
715 [-.pixmaps]tb_macro.xpm [-.pixmaps]tb_make.xpm \
716 [-.pixmaps]tb_save_all.xpm [-.pixmaps]tb_jump.xpm \
717 [-.pixmaps]tb_ctags.xpm [-.pixmaps]tb_load_session.xpm \
718 [-.pixmaps]tb_save_session.xpm [-.pixmaps]tb_new_session.xpm \
719 [-.pixmaps]tb_blank.xpm [-.pixmaps]tb_maximize.xpm \
720 [-.pixmaps]tb_split.xpm [-.pixmaps]tb_minimize.xpm \
721 [-.pixmaps]tb_shell.xpm [-.pixmaps]tb_replace.xpm \
722 [-.pixmaps]tb_vsplit.xpm [-.pixmaps]tb_maxwidth.xpm \
723 [-.pixmaps]tb_minwidth.xpm
724gui_at_sb.obj : gui_at_sb.c vim.h [.auto]config.h feature.h os_unix.h \
725 ascii.h keymap.h term.h macros.h structs.h regexp.h \
726 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
727 globals.h farsi.h arabic.h gui_at_sb.h
728gui_at_fs.obj : gui_at_fs.c vim.h [.auto]config.h feature.h os_unix.h \
729 ascii.h keymap.h term.h macros.h structs.h regexp.h \
730 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
731 globals.h farsi.h arabic.h gui_at_sb.h
732pty.obj : pty.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 gui_beval.h \
734 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
735 arabic.h
736hangulin.obj : hangulin.c vim.h [.auto]config.h feature.h os_unix.h \
737 ascii.h keymap.h term.h macros.h structs.h regexp.h \
738 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
739 globals.h farsi.h arabic.h
740if_perl.obj : [.auto]if_perl.c vim.h [.auto]config.h feature.h os_unix.h \
741 ascii.h keymap.h term.h macros.h structs.h regexp.h \
742 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
743 globals.h farsi.h arabic.h
744if_perlsfio.obj : if_perlsfio.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 gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
747 globals.h farsi.h arabic.h
748if_python.obj : if_python.c vim.h [.auto]config.h feature.h os_unix.h \
749 ascii.h keymap.h term.h macros.h structs.h regexp.h \
750 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
751 globals.h farsi.h arabic.h
752if_tcl.obj : if_tcl.c vim.h [.auto]config.h feature.h os_unix.h \
753 ascii.h keymap.h term.h macros.h structs.h regexp.h \
754 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
755 globals.h farsi.h arabic.h
756if_ruby.obj : if_ruby.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 gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
759 globals.h farsi.h arabic.h version.h
760if_sniff.obj : if_sniff.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 gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
763 globals.h farsi.h arabic.h os_unixx.h
764gui_beval.obj : gui_beval.c vim.h [.auto]config.h feature.h os_unix.h \
765 ascii.h keymap.h term.h macros.h structs.h regexp.h \
766 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
767 globals.h farsi.h arabic.h
768workshop.obj : workshop.c [.auto]config.h integration.h vim.h feature.h \
769 os_unix.h ascii.h keymap.h term.h macros.h structs.h \
770 regexp.h gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h \
771 proto.h globals.h farsi.h arabic.h version.h workshop.h
772wsdebug.obj : wsdebug.c
773integration.obj : integration.c vim.h [.auto]config.h feature.h os_unix.h \
774 ascii.h keymap.h term.h macros.h structs.h regexp.h \
775 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
776 globals.h farsi.h arabic.h integration.h
777netbeans.obj : netbeans.c vim.h [.auto]config.h feature.h os_unix.h \
778 ascii.h keymap.h term.h macros.h structs.h regexp.h \
779 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
780 globals.h farsi.h arabic.h version.h
Bram Moolenaar8d343302005-07-12 22:46:17 +0000781gui_xmdlg.obj : gui_xmdlg.c
782gui_xmebw.obj : gui_xmebw.c