blob: 8c5f74edd0cd9cd1cc4819ea0abe36f3bcb5722d [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 Moolenaarb52e2602007-10-29 21:38:54 +00005# Last change: 2007 Oct 22
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 Moolenaarb52e2602007-10-29 21:38:54 +000099CC_DEF = cc # /decc # some system requires this switch but when it is not required /ver might fail
Bram Moolenaar071d4272004-06-13 20:20:40 +0000100PREFIX = /prefix=all
101.ELSE # VAX with VAXC
102CC_DEF = cc
103PREFIX =
104CCVER =
105.ENDIF
106.ELSE # AXP wixh DECC
107CC_DEF = cc
108PREFIX = /prefix=all
109.ENDIF
110
111LD_DEF = link
112C_INC = [.proto]
113
114.IFDEF OLD_VMS
115VMS_DEF = ,"OLD_VMS"
116.ENDIF
117
118.IFDEF DEBUG
119DEBUG_DEF = ,"DEBUG"
120TARGET = dvim.exe
121CFLAGS = /debug/noopt$(PREFIX)
122LDFLAGS = /debug
123.ELSE
124TARGET = vim.exe
125CFLAGS = /opt$(PREFIX)
126LDFLAGS =
127.ENDIF
128
129# Predefined VIM directories
130# Please, use $VIM and $VIMRUNTIME logicals instead
131VIMLOC = ""
132VIMRUN = ""
133
134CONFIG_H = os_vms_conf.h
135
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000136# GTK or XPM but not both
Bram Moolenaar071d4272004-06-13 20:20:40 +0000137.IFDEF GTK
138.IFDEF GUI
139.ELSE
140GUI = YES
141.ENDIF
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000142.IFDEF XPM
143XPM = ""
144.ENDIF
145.ENDIF
146
147.IFDEF XPM
148.IFDEF GUI
149.ELSE
150GUI = YES
151.ENDIF
152.IFDEF GTK
153GTK = ""
Bram Moolenaar071d4272004-06-13 20:20:40 +0000154.ENDIF
Bram Moolenaar8d343302005-07-12 22:46:17 +0000155.ENDIF
Bram Moolenaar071d4272004-06-13 20:20:40 +0000156
157.IFDEF GUI
158# X/Motif/GTK executable (also works in terminal mode )
159
160.IFDEF GTK
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000161# NOTE: you need to set up your GTK_DIR (GTK root directory), because it is
162# unique on every system - logicals are not accepted
Bram Moolenaar8d343302005-07-12 22:46:17 +0000163# please note: directory should end with . in order to /trans=conc work
Bram Moolenaar3d20ca12006-11-28 16:43:58 +0000164# This value for GTK_DIR is an example.
165GTK_DIR = $1$DGA104:[USERS.ZAY.WORK.GTK1210.]
Bram Moolenaar071d4272004-06-13 20:20:40 +0000166DEFS = "HAVE_CONFIG_H","FEAT_GUI_GTK"
167LIBS = ,OS_VMS_GTK.OPT/OPT
168GUI_FLAG = /name=(as_is,short)/float=ieee/ieee=denorm
Bram Moolenaar8d343302005-07-12 22:46:17 +0000169GUI_SRC = gui.c gui_gtk.c gui_gtk_f.c gui_gtk_x11.c gui_beval.c pty.c
170GUI_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 +0000171GUI_INC = ,"/gtk_root/gtk","/gtk_root/glib"
172# GUI_INC_VER is used just for :ver information
173# this string should escape from C and DCL in the same time
174GUI_INC_VER= ,\""/gtk_root/gtk\"",\""/gtk_root/glib\""
Bram Moolenaar8d343302005-07-12 22:46:17 +0000175.ELSE
Bram Moolenaar071d4272004-06-13 20:20:40 +0000176MOTIF = YES
Bram Moolenaar8d343302005-07-12 22:46:17 +0000177.IFDEF XPM
178DEFS = "HAVE_CONFIG_H","FEAT_GUI_MOTIF","HAVE_XPM"
179.ELSE
Bram Moolenaar071d4272004-06-13 20:20:40 +0000180DEFS = "HAVE_CONFIG_H","FEAT_GUI_MOTIF"
Bram Moolenaar8d343302005-07-12 22:46:17 +0000181.ENDIF
Bram Moolenaar071d4272004-06-13 20:20:40 +0000182LIBS = ,OS_VMS_MOTIF.OPT/OPT
183GUI_FLAG =
Bram Moolenaar8d343302005-07-12 22:46:17 +0000184GUI_SRC = gui.c gui_motif.c gui_x11.c gui_beval.c gui_xmdlg.c gui_xmebw.c
185GUI_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 +0000186GUI_INC =
187.ENDIF
188
189# You need to define these variables if you do not have DECW files
190# at standard location
191GUI_INC_DIR = ,decw$include:
192# GUI_LIB_DIR = ,sys$library:
193
194.ELSE
195# Character terminal only executable
196DEFS = "HAVE_CONFIG_H"
197LIBS =
198.ENDIF
199
200.IFDEF VIM_PERL
201# Perl related setup.
202PERL = perl
203PERL_DEF = ,"FEAT_PERL"
204PERL_SRC = if_perlsfio.c if_perl.xs
205PERL_OBJ = if_perlsfio.obj if_perl.obj
206PERL_LIB = ,OS_VMS_PERL.OPT/OPT
207PERL_INC = ,dka0:[perlbuild.perl.lib.vms_axp.5_6_1.core]
208.ENDIF
209
210.IFDEF VIM_PYTHON
211# Python related setup.
212PYTHON_DEF = ,"FEAT_PYTHON"
213PYTHON_SRC = if_python.c
214PYTHON_OBJ = if_python.obj
215PYTHON_LIB = ,OS_VMS_PYTHON.OPT/OPT
216PYTHON_INC = ,PYTHON_INCLUDE
217.ENDIF
218
219.IFDEF VIM_TCL
220# TCL related setup.
221TCL_DEF = ,"FEAT_TCL"
222TCL_SRC = if_tcl.c
223TCL_OBJ = if_tcl.obj
224TCL_LIB = ,OS_VMS_TCL.OPT/OPT
225TCL_INC = ,dka0:[tcl80.generic]
226.ENDIF
227
228.IFDEF VIM_SNIFF
229# SNIFF related setup.
230SNIFF_DEF = ,"FEAT_SNIFF"
231SNIFF_SRC = if_sniff.c
232SNIFF_OBJ = if_sniff.obj
233SNIFF_LIB =
234SNIFF_INC =
235.ENDIF
236
237.IFDEF VIM_RUBY
238# RUBY related setup.
239RUBY_DEF = ,"FEAT_RUBY"
240RUBY_SRC = if_ruby.c
241RUBY_OBJ = if_ruby.obj
242RUBY_LIB = ,OS_VMS_RUBY.OPT/OPT
243RUBY_INC =
244.ENDIF
245
246.IFDEF VIM_XIM
247# XIM related setup.
248.IFDEF GUI
249XIM_DEF = ,"FEAT_XIM"
250.ENDIF
251.ENDIF
252
253.IFDEF VIM_HANGULIN
254# HANGULIN related setup.
255.IFDEF GUI
256HANGULIN_DEF = ,"FEAT_HANGULIN"
257HANGULIN_SRC = hangulin.c
258HANGULIN_OBJ = hangulin.obj
259.ENDIF
260.ENDIF
261
262.IFDEF VIM_TAG_ANYWHITE
263# TAG_ANYWHITE related setup.
264TAG_DEF = ,"FEAT_TAG_ANYWHITE"
265.ENDIF
266
267
268######################################################################
269# End of configuration section.
270# Please, do not change anything below without programming experience.
271######################################################################
272
Bram Moolenaar071d4272004-06-13 20:20:40 +0000273MODEL_DEF = "FEAT_$(MODEL)",
274
275# These go into pathdef.c
276VIMUSER = "''F$EDIT(F$GETJPI(" ","USERNAME"),"TRIM")'"
277VIMHOST = "''F$TRNLNM("SYS$NODE")'''F$TRNLNM("UCX$INET_HOST")'.''F$TRNLNM("UCX$INET_DOMAIN")'"
278
279.SUFFIXES : .obj .c
280
281ALL_CFLAGS = /def=($(MODEL_DEF)$(DEFS)$(VMS_DEF)$(DEBUG_DEF)$(PERL_DEF)$(PYTHON_DEF) -
282 $(TCL_DEF)$(SNIFF_DEF)$(RUBY_DEF)$(XIM_DEF)$(HANGULIN_DEF)$(TAG_DEF)) -
283 $(CFLAGS)$(GUI_FLAG) -
284 /include=($(C_INC)$(GUI_INC_DIR)$(GUI_INC)$(PERL_INC)$(PYTHON_INC)$(TCL_INC))
285
286# CFLAGS displayed in :ver information
287# It is specially formated for correct display of unix like includes
288# as $(GUI_INC) - replaced with $(GUI_INC_VER)
289# Otherwise should not be any other difference.
290ALL_CFLAGS_VER = /def=($(MODEL_DEF)$(DEFS)$(VMS_DEF)$(DEBUG_DEF)$(PERL_DEF)$(PYTHON_DEF) -
291 $(TCL_DEF)$(SNIFF_DEF)$(RUBY_DEF)$(XIM_DEF)$(HANGULIN_DEF)$(TAG_DEF)) -
292 $(CFLAGS)$(GUI_FLAG) -
293 /include=($(C_INC)$(GUI_INC_DIR)$(GUI_INC_VER)$(PERL_INC)$(PYTHON_INC)$(TCL_INC))
294
295ALL_LIBS = $(LIBS) $(GUI_LIB_DIR) $(GUI_LIB) \
296 $(PERL_LIB) $(PYTHON_LIB) $(TCL_LIB) $(SNIFF_LIB) $(RUBY_LIB)
297
298SRC = buffer.c charset.c diff.c digraph.c edit.c eval.c ex_cmds.c ex_cmds2.c \
299 ex_docmd.c ex_eval.c ex_getln.c if_xcmdsrv.c fileio.c fold.c getchar.c \
Bram Moolenaar76b92b22006-03-24 22:46:53 +0000300 hardcopy.c hashtab.c main.c mark.c menu.c mbyte.c memfile.c memline.c message.c misc1.c \
301 misc2.c move.c normal.c ops.c option.c popupmnu.c quickfix.c regexp.c search.c \
Bram Moolenaar217ad922005-03-20 22:37:15 +0000302 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 +0000303 window.c os_unix.c os_vms.c pathdef.c \
304 $(GUI_SRC) $(PERL_SRC) $(PYTHON_SRC) $(TCL_SRC) $(SNIFF_SRC) \
305 $(RUBY_SRC) $(HANGULIN_SRC)
306
307OBJ = buffer.obj charset.obj diff.obj digraph.obj edit.obj eval.obj \
308 ex_cmds.obj ex_cmds2.obj ex_docmd.obj ex_eval.obj ex_getln.obj \
Bram Moolenaar76b92b22006-03-24 22:46:53 +0000309 if_xcmdsrv.obj fileio.obj fold.obj getchar.obj hardcopy.obj hashtab.obj main.obj mark.obj \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000310 menu.obj memfile.obj memline.obj message.obj misc1.obj misc2.obj \
Bram Moolenaar76b92b22006-03-24 22:46:53 +0000311 move.obj mbyte.obj normal.obj ops.obj option.obj popupmnu.obj quickfix.obj \
Bram Moolenaar217ad922005-03-20 22:37:15 +0000312 regexp.obj search.obj spell.obj syntax.obj tag.obj term.obj termlib.obj \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000313 ui.obj undo.obj screen.obj version.obj window.obj os_unix.obj \
314 os_vms.obj pathdef.obj \
315 $(GUI_OBJ) $(PERL_OBJ) $(PYTHON_OBJ) $(TCL_OBJ) $(SNIFF_OBJ) \
316 $(RUBY_OBJ) $(HANGULIN_OBJ)
317
318# Default target is making the executable
319all : [.auto]config.h mmk_compat motif_env gtk_env perl_env python_env tcl_env ruby_env $(TARGET)
320 ! $@
321
322[.auto]config.h : $(CONFIG_H)
323 copy/nolog $(CONFIG_H) [.auto]config.h
324
325mmk_compat :
326 -@ open/write pd pathdef.c
327 -@ write pd "/* Empty file to satisfy MMK depend. */"
Bram Moolenaarcf0dfa22007-05-10 18:52:16 +0000328 -@ write pd "/* It will be overwritten later on... */"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000329 -@ close pd
330clean :
331 -@ if "''F$SEARCH("*.exe")'" .NES. "" then delete/noconfirm/nolog *.exe;*
332 -@ if "''F$SEARCH("*.obj")'" .NES. "" then delete/noconfirm/nolog *.obj;*
333 -@ if "''F$SEARCH("[.auto]config.h")'" .NES. "" then delete/noconfirm/nolog [.auto]config.h;*
334 -@ if "''F$SEARCH("pathdef.c")'" .NES. "" then delete/noconfirm/nolog pathdef.c;*
335 -@ if "''F$SEARCH("if_perl.c")'" .NES. "" then delete/noconfirm/nolog if_perl.c;*
336 -@ if "''F$SEARCH("*.opt")'" .NES. "" then delete/noconfirm/nolog *.opt;*
337
338# Link the target
339$(TARGET) : $(OBJ)
340 $(LD_DEF) $(LDFLAGS) /exe=$(TARGET) $+ $(ALL_LIBS)
341
342.c.obj :
343 $(CC_DEF) $(ALL_CFLAGS) $<
344
345pathdef.c : check_ccver $(CONFIG_H)
346 -@ write sys$output "creating PATHDEF.C file."
347 -@ open/write pd pathdef.c
348 -@ write pd "/* pathdef.c -- DO NOT EDIT! */"
349 -@ write pd "/* This file is automatically created by MAKE_VMS.MMS"
350 -@ write pd " * Change the file MAKE_VMS.MMS Only. */"
351 -@ write pd "typedef unsigned char char_u;"
352 -@ write pd "char_u *default_vim_dir = (char_u *)"$(VIMLOC)";"
353 -@ write pd "char_u *default_vimruntime_dir = (char_u *)"$(VIMRUN)";"
354 -@ write pd "char_u *all_cflags = (char_u *)""$(CC_DEF)$(ALL_CFLAGS_VER)"";"
355 -@ write pd "char_u *all_lflags = (char_u *)""$(LD_DEF)$(LDFLAGS) /exe=$(TARGET) *.OBJ $(ALL_LIBS)"";"
356 -@ write pd "char_u *compiler_version = (char_u *) ""''CC_VER'"";"
357 -@ write pd "char_u *compiled_user = (char_u *) "$(VIMUSER)";"
Bram Moolenaar3d20ca12006-11-28 16:43:58 +0000358 -@ write pd "char_u *compiled_sys = (char_u *) "$(VIMHOST)";"
359 -@ write pd "char_u *compiled_arch = (char_u *) ""$(MMSARCH_NAME)"";"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000360 -@ close pd
361
362if_perl.c : if_perl.xs
363 -@ $(PERL) PERL_ROOT:[LIB.ExtUtils]xsubpp -prototypes -typemap -
364 PERL_ROOT:[LIB.ExtUtils]typemap if_perl.xs >> $@
365
366make_vms.mms :
367 -@ write sys$output "The name of the makefile MUST be <MAKE_VMS.MMS> !!!"
368
369.IFDEF CCVER
370# This part can make some complications if you're using some predefined
371# symbols/flags for your compiler. If does, just comment out CCVER variable
372check_ccver :
373 -@ define sys$output cc_ver.tmp
374 -@ $(CC_DEF)/version
375 -@ deassign sys$output
376 -@ open/read file cc_ver.tmp
377 -@ read file CC_VER
378 -@ close file
379 -@ delete/noconfirm/nolog cc_ver.tmp.*
380.ELSE
381check_ccver :
382 -@ !
383.ENDIF
384
385.IFDEF MOTIF
386motif_env :
Bram Moolenaar8d343302005-07-12 22:46:17 +0000387.IFDEF XPM
388 -@ write sys$output "using DECW/Motif/XPM environment."
389.ELSE
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000390 -@ write sys$output "using DECW/Motif environment."
Bram Moolenaar8d343302005-07-12 22:46:17 +0000391.ENDIF
Bram Moolenaar071d4272004-06-13 20:20:40 +0000392 -@ write sys$output "creating OS_VMS_MOTIF.OPT file."
393 -@ open/write opt_file OS_VMS_MOTIF.OPT
394 -@ write opt_file "sys$share:decw$xmlibshr12.exe/share,-"
395 -@ write opt_file "sys$share:decw$xtlibshrr5.exe/share,-"
396 -@ write opt_file "sys$share:decw$xlibshr.exe/share"
397 -@ close opt_file
398.ELSE
399motif_env :
400 -@ !
401.ENDIF
402
403
404.IFDEF GTK
405gtk_env :
406 -@ write sys$output "using GTK environment:"
407 -@ define/nolog gtk_root /trans=conc $(GTK_DIR)
408 -@ show logical gtk_root
409 -@ write sys$output " include path: "$(GUI_INC)""
410 -@ write sys$output "creating OS_VMS_GTK.OPT file."
411 -@ open/write opt_file OS_VMS_GTK.OPT
412 -@ write opt_file "gtk_root:[glib]libglib.exe /share,-"
413 -@ write opt_file "gtk_root:[glib.gmodule]libgmodule.exe /share,-"
414 -@ write opt_file "gtk_root:[gtk.gdk]libgdk.exe /share,-"
415 -@ write opt_file "gtk_root:[gtk.gtk]libgtk.exe /share,-"
416 -@ write opt_file "sys$share:decw$xmlibshr12.exe/share,-"
417 -@ write opt_file "sys$share:decw$xtlibshrr5.exe/share,-"
418 -@ write opt_file "sys$share:decw$xlibshr.exe/share"
419 -@ close opt_file
420.ELSE
421gtk_env :
422 -@ !
423.ENDIF
424
425.IFDEF VIM_PERL
426perl_env :
427 -@ write sys$output "using PERL environment:"
428 -@ show logical PERLSHR
429 -@ write sys$output " include path: ""$(PERL_INC)"""
430 -@ show symbol perl
431 -@ open/write pd if_perl.c
432 -@ write pd "/* Empty file to satisfy MMK depend. */"
Bram Moolenaarcf0dfa22007-05-10 18:52:16 +0000433 -@ write pd "/* It will be overwritten later on... */"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000434 -@ close pd
435 -@ write sys$output "creating OS_VMS_PERL.OPT file."
436 -@ open/write opt_file OS_VMS_PERL.OPT
437 -@ write opt_file "PERLSHR /share"
438 -@ close opt_file
439.ELSE
440perl_env :
441 -@ !
442.ENDIF
443
444.IFDEF VIM_PYTHON
445python_env :
446 -@ write sys$output "using PYTHON environment:"
447 -@ show logical PYTHON_INCLUDE
448 -@ show logical PYTHON_OLB
449 -@ write sys$output "creating OS_VMS_PYTHON.OPT file."
450 -@ open/write opt_file OS_VMS_PYTHON.OPT
451 -@ write opt_file "PYTHON_OLB:PYTHON.OLB /share"
452 -@ close opt_file
453.ELSE
454python_env :
455 -@ !
456.ENDIF
457
458.IFDEF VIM_TCL
459tcl_env :
460 -@ write sys$output "using TCL environment:"
461 -@ show logical TCLSHR
462 -@ write sys$output " include path: ""$(TCL_INC)"""
463 -@ write sys$output "creating OS_VMS_TCL.OPT file."
464 -@ open/write opt_file OS_VMS_TCL.OPT
465 -@ write opt_file "TCLSHR /share"
466 -@ close opt_file
467.ELSE
468tcl_env :
469 -@ !
470.ENDIF
471
472.IFDEF VIM_RUBY
473ruby_env :
474 -@ write sys$output "using RUBY environment:"
475 -@ write sys$output " include path: ""$(RUBY_INC)"""
476 -@ write sys$output "creating OS_VMS_RUBY.OPT file."
477 -@ open/write opt_file OS_VMS_RUBY.OPT
478 -@ write opt_file "RUBYSHR /share"
479 -@ close opt_file
480.ELSE
481ruby_env :
482 -@ !
483.ENDIF
484
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000485buffer.obj : buffer.c vim.h [.auto]config.h feature.h os_unix.h \
486 ascii.h keymap.h term.h macros.h structs.h regexp.h \
487 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
488 globals.h farsi.h arabic.h version.h
489charset.obj : charset.c vim.h [.auto]config.h feature.h os_unix.h \
490 ascii.h keymap.h term.h macros.h structs.h regexp.h \
491 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
492 globals.h farsi.h arabic.h
493diff.obj : diff.c vim.h [.auto]config.h feature.h os_unix.h \
494 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \
495 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
496 arabic.h
497digraph.obj : digraph.c vim.h [.auto]config.h feature.h os_unix.h \
498 ascii.h keymap.h term.h macros.h structs.h regexp.h \
499 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
500 globals.h farsi.h arabic.h
501edit.obj : edit.c vim.h [.auto]config.h feature.h os_unix.h \
502 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \
503 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
504 arabic.h
505eval.obj : eval.c vim.h [.auto]config.h feature.h os_unix.h \
506 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \
507 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
508 arabic.h version.h
509ex_cmds.obj : ex_cmds.c vim.h [.auto]config.h feature.h os_unix.h \
510 ascii.h keymap.h term.h macros.h structs.h regexp.h \
511 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
512 globals.h farsi.h arabic.h version.h
513ex_cmds2.obj : ex_cmds2.c vim.h [.auto]config.h feature.h os_unix.h \
514 ascii.h keymap.h term.h macros.h structs.h regexp.h \
515 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
516 globals.h farsi.h arabic.h version.h
517ex_docmd.obj : ex_docmd.c vim.h [.auto]config.h feature.h os_unix.h \
518 ascii.h keymap.h term.h macros.h structs.h regexp.h \
519 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
520 globals.h farsi.h arabic.h
521ex_eval.obj : ex_eval.c vim.h [.auto]config.h feature.h os_unix.h \
522 ascii.h keymap.h term.h macros.h structs.h regexp.h \
523 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
524 globals.h farsi.h arabic.h
525ex_getln.obj : ex_getln.c vim.h [.auto]config.h feature.h os_unix.h \
526 ascii.h keymap.h term.h macros.h structs.h regexp.h \
527 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
528 globals.h farsi.h arabic.h
529fileio.obj : fileio.c vim.h [.auto]config.h feature.h os_unix.h \
530 ascii.h keymap.h term.h macros.h structs.h regexp.h \
531 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
532 globals.h farsi.h arabic.h
533fold.obj : fold.c vim.h [.auto]config.h feature.h os_unix.h \
534 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \
535 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
536 arabic.h
537getchar.obj : getchar.c vim.h [.auto]config.h feature.h os_unix.h \
538 ascii.h keymap.h term.h macros.h structs.h regexp.h \
539 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
540 globals.h farsi.h arabic.h
Bram Moolenaar58d98232005-07-23 22:25:46 +0000541hardcopy.obj : hardcopy.c vim.h [.auto]config.h feature.h os_unix.h \
542 ascii.h keymap.h term.h macros.h structs.h regexp.h \
543 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
544 globals.h farsi.h arabic.h
Bram Moolenaar76b92b22006-03-24 22:46:53 +0000545hashtab.obj : hashtab.c vim.h [.auto]config.h feature.h os_unix.h \
Bram Moolenaar383f9bc2005-01-19 22:18:32 +0000546 ascii.h keymap.h term.h macros.h structs.h regexp.h \
547 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
548 globals.h farsi.h arabic.h
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000549if_cscope.obj : if_cscope.c vim.h [.auto]config.h feature.h os_unix.h \
550 ascii.h keymap.h term.h macros.h structs.h regexp.h \
551 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
552 globals.h farsi.h arabic.h if_cscope.h
553if_xcmdsrv.obj : if_xcmdsrv.c vim.h [.auto]config.h feature.h os_unix.h \
554 ascii.h keymap.h term.h macros.h structs.h regexp.h \
555 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
556 globals.h farsi.h arabic.h version.h
557main.obj : main.c vim.h [.auto]config.h feature.h os_unix.h \
558 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \
559 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
560 arabic.h farsi.c arabic.c
561mark.obj : mark.c vim.h [.auto]config.h feature.h os_unix.h \
562 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \
563 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
564 arabic.h
565memfile.obj : memfile.c vim.h [.auto]config.h feature.h os_unix.h \
566 ascii.h keymap.h term.h macros.h structs.h regexp.h \
567 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
568 globals.h farsi.h arabic.h
569memline.obj : memline.c vim.h [.auto]config.h feature.h os_unix.h \
570 ascii.h keymap.h term.h macros.h structs.h regexp.h \
571 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
572 globals.h farsi.h arabic.h
573menu.obj : menu.c vim.h [.auto]config.h feature.h os_unix.h \
574 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \
575 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
576 arabic.h
577message.obj : message.c vim.h [.auto]config.h feature.h os_unix.h \
578 ascii.h keymap.h term.h macros.h structs.h regexp.h \
579 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
580 globals.h farsi.h arabic.h
581misc1.obj : misc1.c vim.h [.auto]config.h feature.h os_unix.h \
582 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \
583 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
584 arabic.h version.h
585misc2.obj : misc2.c vim.h [.auto]config.h feature.h os_unix.h \
586 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \
587 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
588 arabic.h
589move.obj : move.c vim.h [.auto]config.h feature.h os_unix.h \
590 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \
591 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
592 arabic.h
593mbyte.obj : mbyte.c vim.h [.auto]config.h feature.h os_unix.h \
594 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \
595 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
596 arabic.h
597normal.obj : normal.c vim.h [.auto]config.h feature.h os_unix.h \
598 ascii.h keymap.h term.h macros.h structs.h regexp.h \
599 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
600 globals.h farsi.h arabic.h
601ops.obj : ops.c vim.h [.auto]config.h feature.h os_unix.h \
602 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \
603 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
604 arabic.h
605option.obj : option.c vim.h [.auto]config.h feature.h os_unix.h \
606 ascii.h keymap.h term.h macros.h structs.h regexp.h \
607 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
608 globals.h farsi.h arabic.h
609os_unix.obj : os_unix.c vim.h [.auto]config.h feature.h os_unix.h \
610 ascii.h keymap.h term.h macros.h structs.h regexp.h \
611 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
612 globals.h farsi.h arabic.h os_unixx.h
613os_vms.obj : os_vms.c vim.h [.auto]config.h feature.h os_unix.h \
614 ascii.h keymap.h term.h macros.h structs.h regexp.h \
615 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
616 globals.h farsi.h arabic.h os_unixx.h
617pathdef.obj : pathdef.c vim.h [.auto]config.h feature.h os_unix.h \
618 ascii.h keymap.h term.h macros.h structs.h regexp.h \
619 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
620 globals.h farsi.h arabic.h
Bram Moolenaar76b92b22006-03-24 22:46:53 +0000621popupmnu.obj : popupmnu.c vim.h [.auto]config.h feature.h os_unix.h \
Bram Moolenaardf1bdc92006-02-23 21:32:16 +0000622 ascii.h keymap.h term.h macros.h structs.h regexp.h \
623 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
624 globals.h farsi.h arabic.h
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000625quickfix.obj : quickfix.c vim.h [.auto]config.h feature.h os_unix.h \
626 ascii.h keymap.h term.h macros.h structs.h regexp.h \
627 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
628 globals.h farsi.h arabic.h
629regexp.obj : regexp.c vim.h [.auto]config.h feature.h os_unix.h \
630 ascii.h keymap.h term.h macros.h structs.h regexp.h \
631 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
632 globals.h farsi.h arabic.h
633screen.obj : screen.c vim.h [.auto]config.h feature.h os_unix.h \
634 ascii.h keymap.h term.h macros.h structs.h regexp.h \
635 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
636 globals.h farsi.h arabic.h
637search.obj : search.c vim.h [.auto]config.h feature.h os_unix.h \
638 ascii.h keymap.h term.h macros.h structs.h regexp.h \
639 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
640 globals.h farsi.h arabic.h
Bram Moolenaar217ad922005-03-20 22:37:15 +0000641spell.obj : spell.c vim.h [.auto]config.h feature.h os_unix.h \
642 ascii.h keymap.h term.h macros.h structs.h regexp.h \
643 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
644 globals.h farsi.h arabic.h
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000645syntax.obj : syntax.c vim.h [.auto]config.h feature.h os_unix.h \
646 ascii.h keymap.h term.h macros.h structs.h regexp.h \
647 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
648 globals.h farsi.h arabic.h
649tag.obj : tag.c vim.h [.auto]config.h feature.h os_unix.h \
650 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \
651 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
652 arabic.h
653term.obj : term.c vim.h [.auto]config.h feature.h os_unix.h \
654 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \
655 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
656 arabic.h
657termlib.obj : termlib.c vim.h [.auto]config.h feature.h os_unix.h \
658 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \
659 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
660 arabic.h
661ui.obj : ui.c vim.h [.auto]config.h feature.h os_unix.h \
662 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \
663 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
664 arabic.h
665undo.obj : undo.c vim.h [.auto]config.h feature.h os_unix.h \
666 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \
667 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
668 arabic.h
669version.obj : version.c vim.h [.auto]config.h feature.h os_unix.h \
670 ascii.h keymap.h term.h macros.h structs.h regexp.h \
671 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
672 globals.h farsi.h arabic.h version.h
673window.obj : window.c vim.h [.auto]config.h feature.h os_unix.h \
674 ascii.h keymap.h term.h macros.h structs.h regexp.h \
675 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
676 globals.h farsi.h arabic.h
677gui.obj : gui.c vim.h [.auto]config.h feature.h os_unix.h \
678 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \
679 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
680 arabic.h
681gui_gtk.obj : gui_gtk.c gui_gtk_f.h vim.h [.auto]config.h feature.h \
682 os_unix.h ascii.h keymap.h term.h macros.h structs.h \
683 regexp.h gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h \
684 proto.h globals.h farsi.h arabic.h [-.pixmaps]stock_icons.h
685gui_gtk_f.obj : gui_gtk_f.c vim.h [.auto]config.h feature.h os_unix.h \
686 ascii.h keymap.h term.h macros.h structs.h regexp.h \
687 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
688 globals.h farsi.h arabic.h gui_gtk_f.h
689gui_motif.obj : gui_motif.c vim.h [.auto]config.h feature.h os_unix.h \
690 ascii.h keymap.h term.h macros.h structs.h regexp.h \
691 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
692 globals.h farsi.h arabic.h [-.pixmaps]alert.xpm [-.pixmaps]error.xpm \
693 [-.pixmaps]generic.xpm [-.pixmaps]info.xpm [-.pixmaps]quest.xpm
694gui_athena.obj : gui_athena.c vim.h [.auto]config.h feature.h os_unix.h \
695 ascii.h keymap.h term.h macros.h structs.h regexp.h \
696 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
697 globals.h farsi.h arabic.h gui_at_sb.h
698gui_gtk_x11.obj : gui_gtk_x11.c vim.h [.auto]config.h feature.h os_unix.h \
699 ascii.h keymap.h term.h macros.h structs.h regexp.h \
700 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
701 globals.h farsi.h arabic.h gui_gtk_f.h [-.runtime]vim32x32.xpm \
702 [-.runtime]vim16x16.xpm [-.runtime]vim48x48.xpm
703gui_x11.obj : gui_x11.c vim.h [.auto]config.h feature.h os_unix.h \
704 ascii.h keymap.h term.h macros.h structs.h regexp.h \
705 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
706 globals.h farsi.h arabic.h [-.runtime]vim32x32.xpm \
707 [-.runtime]vim16x16.xpm [-.runtime]vim48x48.xpm [-.pixmaps]tb_new.xpm \
708 [-.pixmaps]tb_open.xpm [-.pixmaps]tb_close.xpm [-.pixmaps]tb_save.xpm \
709 [-.pixmaps]tb_print.xpm [-.pixmaps]tb_cut.xpm [-.pixmaps]tb_copy.xpm \
710 [-.pixmaps]tb_paste.xpm [-.pixmaps]tb_find.xpm \
711 [-.pixmaps]tb_find_next.xpm [-.pixmaps]tb_find_prev.xpm \
712 [-.pixmaps]tb_find_help.xpm [-.pixmaps]tb_exit.xpm \
713 [-.pixmaps]tb_undo.xpm [-.pixmaps]tb_redo.xpm [-.pixmaps]tb_help.xpm \
714 [-.pixmaps]tb_macro.xpm [-.pixmaps]tb_make.xpm \
715 [-.pixmaps]tb_save_all.xpm [-.pixmaps]tb_jump.xpm \
716 [-.pixmaps]tb_ctags.xpm [-.pixmaps]tb_load_session.xpm \
717 [-.pixmaps]tb_save_session.xpm [-.pixmaps]tb_new_session.xpm \
718 [-.pixmaps]tb_blank.xpm [-.pixmaps]tb_maximize.xpm \
719 [-.pixmaps]tb_split.xpm [-.pixmaps]tb_minimize.xpm \
720 [-.pixmaps]tb_shell.xpm [-.pixmaps]tb_replace.xpm \
721 [-.pixmaps]tb_vsplit.xpm [-.pixmaps]tb_maxwidth.xpm \
722 [-.pixmaps]tb_minwidth.xpm
723gui_at_sb.obj : gui_at_sb.c vim.h [.auto]config.h feature.h os_unix.h \
724 ascii.h keymap.h term.h macros.h structs.h regexp.h \
725 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
726 globals.h farsi.h arabic.h gui_at_sb.h
727gui_at_fs.obj : gui_at_fs.c vim.h [.auto]config.h feature.h os_unix.h \
728 ascii.h keymap.h term.h macros.h structs.h regexp.h \
729 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
730 globals.h farsi.h arabic.h gui_at_sb.h
731pty.obj : pty.c vim.h [.auto]config.h feature.h os_unix.h \
732 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \
733 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
734 arabic.h
735hangulin.obj : hangulin.c vim.h [.auto]config.h feature.h os_unix.h \
736 ascii.h keymap.h term.h macros.h structs.h regexp.h \
737 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
738 globals.h farsi.h arabic.h
739if_perl.obj : [.auto]if_perl.c vim.h [.auto]config.h feature.h os_unix.h \
740 ascii.h keymap.h term.h macros.h structs.h regexp.h \
741 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
742 globals.h farsi.h arabic.h
743if_perlsfio.obj : if_perlsfio.c vim.h [.auto]config.h feature.h os_unix.h \
744 ascii.h keymap.h term.h macros.h structs.h regexp.h \
745 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
746 globals.h farsi.h arabic.h
747if_python.obj : if_python.c vim.h [.auto]config.h feature.h os_unix.h \
748 ascii.h keymap.h term.h macros.h structs.h regexp.h \
749 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
750 globals.h farsi.h arabic.h
751if_tcl.obj : if_tcl.c vim.h [.auto]config.h feature.h os_unix.h \
752 ascii.h keymap.h term.h macros.h structs.h regexp.h \
753 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
754 globals.h farsi.h arabic.h
755if_ruby.obj : if_ruby.c vim.h [.auto]config.h feature.h os_unix.h \
756 ascii.h keymap.h term.h macros.h structs.h regexp.h \
757 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
758 globals.h farsi.h arabic.h version.h
759if_sniff.obj : if_sniff.c vim.h [.auto]config.h feature.h os_unix.h \
760 ascii.h keymap.h term.h macros.h structs.h regexp.h \
761 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
762 globals.h farsi.h arabic.h os_unixx.h
763gui_beval.obj : gui_beval.c vim.h [.auto]config.h feature.h os_unix.h \
764 ascii.h keymap.h term.h macros.h structs.h regexp.h \
765 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
766 globals.h farsi.h arabic.h
767workshop.obj : workshop.c [.auto]config.h integration.h vim.h feature.h \
768 os_unix.h ascii.h keymap.h term.h macros.h structs.h \
769 regexp.h gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h \
770 proto.h globals.h farsi.h arabic.h version.h workshop.h
771wsdebug.obj : wsdebug.c
772integration.obj : integration.c vim.h [.auto]config.h feature.h os_unix.h \
773 ascii.h keymap.h term.h macros.h structs.h regexp.h \
774 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
775 globals.h farsi.h arabic.h integration.h
776netbeans.obj : netbeans.c vim.h [.auto]config.h feature.h os_unix.h \
777 ascii.h keymap.h term.h macros.h structs.h regexp.h \
778 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
779 globals.h farsi.h arabic.h version.h
Bram Moolenaar8d343302005-07-12 22:46:17 +0000780gui_xmdlg.obj : gui_xmdlg.c
781gui_xmebw.obj : gui_xmebw.c