blob: 7cb5614b84aaaf4fe9807f16bc5b3f7c042dc6c1 [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 Moolenaarf878bcf2010-07-30 22:29:41 +02005# Last change: 2008 Aug 16
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.
Bram Moolenaarac98e5d2008-09-01 14:51:37 +000039MODEL = HUGE
Bram Moolenaar071d4272004-06-13 20:20:40 +000040
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 Moolenaarf878bcf2010-07-30 22:29:41 +020044# GUI = YES
Bram Moolenaar071d4272004-06-13 20:20:40 +000045
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
Bram Moolenaarf878bcf2010-07-30 22:29:41 +020087# Allow FEATURE_MZSCHEME
88# VIM_MZSCHEME = YES
89
Bram Moolenaar071d4272004-06-13 20:20:40 +000090######################################################################
91# Directory, library and include files configuration section.
92# Normally you need not to change anything below. !
93# These may need to be defined if things are not in standard locations
94#
95# You can find some explanation in INSTALLVMS.TXT
96######################################################################
97
98# Compiler setup
99
Bram Moolenaar3d20ca12006-11-28 16:43:58 +0000100.IFDEF MMSVAX
Bram Moolenaar071d4272004-06-13 20:20:40 +0000101.IFDEF DECC # VAX with DECC
Bram Moolenaarb52e2602007-10-29 21:38:54 +0000102CC_DEF = cc # /decc # some system requires this switch but when it is not required /ver might fail
Bram Moolenaar071d4272004-06-13 20:20:40 +0000103PREFIX = /prefix=all
104.ELSE # VAX with VAXC
105CC_DEF = cc
106PREFIX =
107CCVER =
108.ENDIF
109.ELSE # AXP wixh DECC
110CC_DEF = cc
111PREFIX = /prefix=all
112.ENDIF
113
114LD_DEF = link
115C_INC = [.proto]
116
117.IFDEF OLD_VMS
118VMS_DEF = ,"OLD_VMS"
119.ENDIF
120
121.IFDEF DEBUG
122DEBUG_DEF = ,"DEBUG"
123TARGET = dvim.exe
124CFLAGS = /debug/noopt$(PREFIX)
125LDFLAGS = /debug
126.ELSE
127TARGET = vim.exe
128CFLAGS = /opt$(PREFIX)
129LDFLAGS =
130.ENDIF
131
132# Predefined VIM directories
133# Please, use $VIM and $VIMRUNTIME logicals instead
134VIMLOC = ""
135VIMRUN = ""
136
137CONFIG_H = os_vms_conf.h
138
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000139# GTK or XPM but not both
Bram Moolenaar071d4272004-06-13 20:20:40 +0000140.IFDEF GTK
141.IFDEF GUI
142.ELSE
143GUI = YES
144.ENDIF
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000145.IFDEF XPM
146XPM = ""
147.ENDIF
148.ENDIF
149
150.IFDEF XPM
151.IFDEF GUI
152.ELSE
153GUI = YES
154.ENDIF
155.IFDEF GTK
156GTK = ""
Bram Moolenaar071d4272004-06-13 20:20:40 +0000157.ENDIF
Bram Moolenaar8d343302005-07-12 22:46:17 +0000158.ENDIF
Bram Moolenaar071d4272004-06-13 20:20:40 +0000159
160.IFDEF GUI
161# X/Motif/GTK executable (also works in terminal mode )
162
163.IFDEF GTK
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000164# NOTE: you need to set up your GTK_DIR (GTK root directory), because it is
165# unique on every system - logicals are not accepted
Bram Moolenaar8d343302005-07-12 22:46:17 +0000166# please note: directory should end with . in order to /trans=conc work
Bram Moolenaar3d20ca12006-11-28 16:43:58 +0000167# This value for GTK_DIR is an example.
168GTK_DIR = $1$DGA104:[USERS.ZAY.WORK.GTK1210.]
Bram Moolenaar071d4272004-06-13 20:20:40 +0000169DEFS = "HAVE_CONFIG_H","FEAT_GUI_GTK"
170LIBS = ,OS_VMS_GTK.OPT/OPT
171GUI_FLAG = /name=(as_is,short)/float=ieee/ieee=denorm
Bram Moolenaar8d343302005-07-12 22:46:17 +0000172GUI_SRC = gui.c gui_gtk.c gui_gtk_f.c gui_gtk_x11.c gui_beval.c pty.c
173GUI_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 +0000174GUI_INC = ,"/gtk_root/gtk","/gtk_root/glib"
175# GUI_INC_VER is used just for :ver information
176# this string should escape from C and DCL in the same time
177GUI_INC_VER= ,\""/gtk_root/gtk\"",\""/gtk_root/glib\""
Bram Moolenaar8d343302005-07-12 22:46:17 +0000178.ELSE
Bram Moolenaar071d4272004-06-13 20:20:40 +0000179MOTIF = YES
Bram Moolenaar8d343302005-07-12 22:46:17 +0000180.IFDEF XPM
181DEFS = "HAVE_CONFIG_H","FEAT_GUI_MOTIF","HAVE_XPM"
182.ELSE
Bram Moolenaar071d4272004-06-13 20:20:40 +0000183DEFS = "HAVE_CONFIG_H","FEAT_GUI_MOTIF"
Bram Moolenaar8d343302005-07-12 22:46:17 +0000184.ENDIF
Bram Moolenaar071d4272004-06-13 20:20:40 +0000185LIBS = ,OS_VMS_MOTIF.OPT/OPT
186GUI_FLAG =
Bram Moolenaar8d343302005-07-12 22:46:17 +0000187GUI_SRC = gui.c gui_motif.c gui_x11.c gui_beval.c gui_xmdlg.c gui_xmebw.c
188GUI_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 +0000189GUI_INC =
190.ENDIF
191
192# You need to define these variables if you do not have DECW files
193# at standard location
194GUI_INC_DIR = ,decw$include:
195# GUI_LIB_DIR = ,sys$library:
196
197.ELSE
198# Character terminal only executable
199DEFS = "HAVE_CONFIG_H"
200LIBS =
201.ENDIF
202
203.IFDEF VIM_PERL
204# Perl related setup.
205PERL = perl
206PERL_DEF = ,"FEAT_PERL"
207PERL_SRC = if_perlsfio.c if_perl.xs
208PERL_OBJ = if_perlsfio.obj if_perl.obj
209PERL_LIB = ,OS_VMS_PERL.OPT/OPT
210PERL_INC = ,dka0:[perlbuild.perl.lib.vms_axp.5_6_1.core]
211.ENDIF
212
213.IFDEF VIM_PYTHON
214# Python related setup.
215PYTHON_DEF = ,"FEAT_PYTHON"
216PYTHON_SRC = if_python.c
217PYTHON_OBJ = if_python.obj
218PYTHON_LIB = ,OS_VMS_PYTHON.OPT/OPT
219PYTHON_INC = ,PYTHON_INCLUDE
220.ENDIF
221
222.IFDEF VIM_TCL
223# TCL related setup.
224TCL_DEF = ,"FEAT_TCL"
225TCL_SRC = if_tcl.c
226TCL_OBJ = if_tcl.obj
227TCL_LIB = ,OS_VMS_TCL.OPT/OPT
228TCL_INC = ,dka0:[tcl80.generic]
229.ENDIF
230
231.IFDEF VIM_SNIFF
232# SNIFF related setup.
233SNIFF_DEF = ,"FEAT_SNIFF"
234SNIFF_SRC = if_sniff.c
235SNIFF_OBJ = if_sniff.obj
236SNIFF_LIB =
237SNIFF_INC =
238.ENDIF
239
240.IFDEF VIM_RUBY
241# RUBY related setup.
242RUBY_DEF = ,"FEAT_RUBY"
243RUBY_SRC = if_ruby.c
244RUBY_OBJ = if_ruby.obj
245RUBY_LIB = ,OS_VMS_RUBY.OPT/OPT
246RUBY_INC =
247.ENDIF
248
249.IFDEF VIM_XIM
250# XIM related setup.
251.IFDEF GUI
252XIM_DEF = ,"FEAT_XIM"
253.ENDIF
254.ENDIF
255
256.IFDEF VIM_HANGULIN
257# HANGULIN related setup.
258.IFDEF GUI
259HANGULIN_DEF = ,"FEAT_HANGULIN"
260HANGULIN_SRC = hangulin.c
261HANGULIN_OBJ = hangulin.obj
262.ENDIF
263.ENDIF
264
265.IFDEF VIM_TAG_ANYWHITE
266# TAG_ANYWHITE related setup.
267TAG_DEF = ,"FEAT_TAG_ANYWHITE"
268.ENDIF
269
Bram Moolenaarf878bcf2010-07-30 22:29:41 +0200270.IFDEF VIM_MZSCHEME
271# MZSCHEME related setup
272MZSCH_DEF = ,"FEAT_MZSCHEME"
273MZSCH_SRC = if_mzsch.c
274MZSCH_OBJ = if_mzsch.obj
275.ENDIF
Bram Moolenaar071d4272004-06-13 20:20:40 +0000276
277######################################################################
278# End of configuration section.
279# Please, do not change anything below without programming experience.
280######################################################################
281
Bram Moolenaar071d4272004-06-13 20:20:40 +0000282MODEL_DEF = "FEAT_$(MODEL)",
283
284# These go into pathdef.c
285VIMUSER = "''F$EDIT(F$GETJPI(" ","USERNAME"),"TRIM")'"
286VIMHOST = "''F$TRNLNM("SYS$NODE")'''F$TRNLNM("UCX$INET_HOST")'.''F$TRNLNM("UCX$INET_DOMAIN")'"
287
288.SUFFIXES : .obj .c
289
290ALL_CFLAGS = /def=($(MODEL_DEF)$(DEFS)$(VMS_DEF)$(DEBUG_DEF)$(PERL_DEF)$(PYTHON_DEF) -
Bram Moolenaarf878bcf2010-07-30 22:29:41 +0200291 $(TCL_DEF)$(SNIFF_DEF)$(RUBY_DEF)$(XIM_DEF)$(HANGULIN_DEF)$(TAG_DEF)$(MZSCH_DEF)) -
Bram Moolenaar071d4272004-06-13 20:20:40 +0000292 $(CFLAGS)$(GUI_FLAG) -
293 /include=($(C_INC)$(GUI_INC_DIR)$(GUI_INC)$(PERL_INC)$(PYTHON_INC)$(TCL_INC))
294
295# CFLAGS displayed in :ver information
296# It is specially formated for correct display of unix like includes
297# as $(GUI_INC) - replaced with $(GUI_INC_VER)
298# Otherwise should not be any other difference.
299ALL_CFLAGS_VER = /def=($(MODEL_DEF)$(DEFS)$(VMS_DEF)$(DEBUG_DEF)$(PERL_DEF)$(PYTHON_DEF) -
Bram Moolenaarf878bcf2010-07-30 22:29:41 +0200300 $(TCL_DEF)$(SNIFF_DEF)$(RUBY_DEF)$(XIM_DEF)$(HANGULIN_DEF)$(TAG_DEF)$(MZSCH_DEF)) -
Bram Moolenaar071d4272004-06-13 20:20:40 +0000301 $(CFLAGS)$(GUI_FLAG) -
302 /include=($(C_INC)$(GUI_INC_DIR)$(GUI_INC_VER)$(PERL_INC)$(PYTHON_INC)$(TCL_INC))
303
304ALL_LIBS = $(LIBS) $(GUI_LIB_DIR) $(GUI_LIB) \
305 $(PERL_LIB) $(PYTHON_LIB) $(TCL_LIB) $(SNIFF_LIB) $(RUBY_LIB)
306
Bram Moolenaar8e469272010-07-28 19:38:16 +0200307SRC = blowfish.c buffer.c charset.c diff.c digraph.c edit.c eval.c ex_cmds.c ex_cmds2.c \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000308 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 +0000309 hardcopy.c hashtab.c main.c mark.c menu.c mbyte.c memfile.c memline.c message.c misc1.c \
Bram Moolenaar8e469272010-07-28 19:38:16 +0200310 misc2.c move.c normal.c ops.c option.c popupmnu.c quickfix.c regexp.c search.c sha256.c\
Bram Moolenaar217ad922005-03-20 22:37:15 +0000311 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 +0000312 window.c os_unix.c os_vms.c pathdef.c \
313 $(GUI_SRC) $(PERL_SRC) $(PYTHON_SRC) $(TCL_SRC) $(SNIFF_SRC) \
Bram Moolenaarf878bcf2010-07-30 22:29:41 +0200314 $(RUBY_SRC) $(HANGULIN_SRC) $(MZSCH_SRC)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000315
Bram Moolenaar8e469272010-07-28 19:38:16 +0200316OBJ = blowfish.obj buffer.obj charset.obj diff.obj digraph.obj edit.obj eval.obj \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000317 ex_cmds.obj ex_cmds2.obj ex_docmd.obj ex_eval.obj ex_getln.obj \
Bram Moolenaar76b92b22006-03-24 22:46:53 +0000318 if_xcmdsrv.obj fileio.obj fold.obj getchar.obj hardcopy.obj hashtab.obj main.obj mark.obj \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000319 menu.obj memfile.obj memline.obj message.obj misc1.obj misc2.obj \
Bram Moolenaar76b92b22006-03-24 22:46:53 +0000320 move.obj mbyte.obj normal.obj ops.obj option.obj popupmnu.obj quickfix.obj \
Bram Moolenaar8e469272010-07-28 19:38:16 +0200321 regexp.obj search.obj sha256.obj spell.obj syntax.obj tag.obj term.obj termlib.obj \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000322 ui.obj undo.obj screen.obj version.obj window.obj os_unix.obj \
Bram Moolenaarf878bcf2010-07-30 22:29:41 +0200323 os_vms.obj pathdef.obj if_mzsch.obj\
Bram Moolenaar071d4272004-06-13 20:20:40 +0000324 $(GUI_OBJ) $(PERL_OBJ) $(PYTHON_OBJ) $(TCL_OBJ) $(SNIFF_OBJ) \
Bram Moolenaarf878bcf2010-07-30 22:29:41 +0200325 $(RUBY_OBJ) $(HANGULIN_OBJ) $(MZSCH_OBJ)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000326
327# Default target is making the executable
328all : [.auto]config.h mmk_compat motif_env gtk_env perl_env python_env tcl_env ruby_env $(TARGET)
329 ! $@
330
331[.auto]config.h : $(CONFIG_H)
332 copy/nolog $(CONFIG_H) [.auto]config.h
333
334mmk_compat :
335 -@ open/write pd pathdef.c
336 -@ write pd "/* Empty file to satisfy MMK depend. */"
Bram Moolenaarcf0dfa22007-05-10 18:52:16 +0000337 -@ write pd "/* It will be overwritten later on... */"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000338 -@ close pd
339clean :
340 -@ if "''F$SEARCH("*.exe")'" .NES. "" then delete/noconfirm/nolog *.exe;*
341 -@ if "''F$SEARCH("*.obj")'" .NES. "" then delete/noconfirm/nolog *.obj;*
342 -@ if "''F$SEARCH("[.auto]config.h")'" .NES. "" then delete/noconfirm/nolog [.auto]config.h;*
343 -@ if "''F$SEARCH("pathdef.c")'" .NES. "" then delete/noconfirm/nolog pathdef.c;*
344 -@ if "''F$SEARCH("if_perl.c")'" .NES. "" then delete/noconfirm/nolog if_perl.c;*
345 -@ if "''F$SEARCH("*.opt")'" .NES. "" then delete/noconfirm/nolog *.opt;*
346
347# Link the target
348$(TARGET) : $(OBJ)
349 $(LD_DEF) $(LDFLAGS) /exe=$(TARGET) $+ $(ALL_LIBS)
350
351.c.obj :
352 $(CC_DEF) $(ALL_CFLAGS) $<
353
354pathdef.c : check_ccver $(CONFIG_H)
355 -@ write sys$output "creating PATHDEF.C file."
356 -@ open/write pd pathdef.c
357 -@ write pd "/* pathdef.c -- DO NOT EDIT! */"
358 -@ write pd "/* This file is automatically created by MAKE_VMS.MMS"
359 -@ write pd " * Change the file MAKE_VMS.MMS Only. */"
360 -@ write pd "typedef unsigned char char_u;"
361 -@ write pd "char_u *default_vim_dir = (char_u *)"$(VIMLOC)";"
362 -@ write pd "char_u *default_vimruntime_dir = (char_u *)"$(VIMRUN)";"
363 -@ write pd "char_u *all_cflags = (char_u *)""$(CC_DEF)$(ALL_CFLAGS_VER)"";"
364 -@ write pd "char_u *all_lflags = (char_u *)""$(LD_DEF)$(LDFLAGS) /exe=$(TARGET) *.OBJ $(ALL_LIBS)"";"
365 -@ write pd "char_u *compiler_version = (char_u *) ""''CC_VER'"";"
366 -@ write pd "char_u *compiled_user = (char_u *) "$(VIMUSER)";"
Bram Moolenaar3d20ca12006-11-28 16:43:58 +0000367 -@ write pd "char_u *compiled_sys = (char_u *) "$(VIMHOST)";"
368 -@ write pd "char_u *compiled_arch = (char_u *) ""$(MMSARCH_NAME)"";"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000369 -@ close pd
370
371if_perl.c : if_perl.xs
372 -@ $(PERL) PERL_ROOT:[LIB.ExtUtils]xsubpp -prototypes -typemap -
373 PERL_ROOT:[LIB.ExtUtils]typemap if_perl.xs >> $@
374
375make_vms.mms :
376 -@ write sys$output "The name of the makefile MUST be <MAKE_VMS.MMS> !!!"
377
378.IFDEF CCVER
379# This part can make some complications if you're using some predefined
380# symbols/flags for your compiler. If does, just comment out CCVER variable
381check_ccver :
382 -@ define sys$output cc_ver.tmp
383 -@ $(CC_DEF)/version
384 -@ deassign sys$output
385 -@ open/read file cc_ver.tmp
386 -@ read file CC_VER
387 -@ close file
388 -@ delete/noconfirm/nolog cc_ver.tmp.*
389.ELSE
390check_ccver :
391 -@ !
392.ENDIF
393
394.IFDEF MOTIF
395motif_env :
Bram Moolenaar8d343302005-07-12 22:46:17 +0000396.IFDEF XPM
397 -@ write sys$output "using DECW/Motif/XPM environment."
398.ELSE
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000399 -@ write sys$output "using DECW/Motif environment."
Bram Moolenaar8d343302005-07-12 22:46:17 +0000400.ENDIF
Bram Moolenaar071d4272004-06-13 20:20:40 +0000401 -@ write sys$output "creating OS_VMS_MOTIF.OPT file."
402 -@ open/write opt_file OS_VMS_MOTIF.OPT
403 -@ write opt_file "sys$share:decw$xmlibshr12.exe/share,-"
404 -@ write opt_file "sys$share:decw$xtlibshrr5.exe/share,-"
405 -@ write opt_file "sys$share:decw$xlibshr.exe/share"
406 -@ close opt_file
407.ELSE
408motif_env :
409 -@ !
410.ENDIF
411
412
413.IFDEF GTK
414gtk_env :
415 -@ write sys$output "using GTK environment:"
416 -@ define/nolog gtk_root /trans=conc $(GTK_DIR)
417 -@ show logical gtk_root
418 -@ write sys$output " include path: "$(GUI_INC)""
419 -@ write sys$output "creating OS_VMS_GTK.OPT file."
420 -@ open/write opt_file OS_VMS_GTK.OPT
421 -@ write opt_file "gtk_root:[glib]libglib.exe /share,-"
422 -@ write opt_file "gtk_root:[glib.gmodule]libgmodule.exe /share,-"
423 -@ write opt_file "gtk_root:[gtk.gdk]libgdk.exe /share,-"
424 -@ write opt_file "gtk_root:[gtk.gtk]libgtk.exe /share,-"
425 -@ write opt_file "sys$share:decw$xmlibshr12.exe/share,-"
426 -@ write opt_file "sys$share:decw$xtlibshrr5.exe/share,-"
427 -@ write opt_file "sys$share:decw$xlibshr.exe/share"
428 -@ close opt_file
429.ELSE
430gtk_env :
431 -@ !
432.ENDIF
433
434.IFDEF VIM_PERL
435perl_env :
436 -@ write sys$output "using PERL environment:"
437 -@ show logical PERLSHR
438 -@ write sys$output " include path: ""$(PERL_INC)"""
439 -@ show symbol perl
440 -@ open/write pd if_perl.c
441 -@ write pd "/* Empty file to satisfy MMK depend. */"
Bram Moolenaarcf0dfa22007-05-10 18:52:16 +0000442 -@ write pd "/* It will be overwritten later on... */"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000443 -@ close pd
444 -@ write sys$output "creating OS_VMS_PERL.OPT file."
445 -@ open/write opt_file OS_VMS_PERL.OPT
446 -@ write opt_file "PERLSHR /share"
447 -@ close opt_file
448.ELSE
449perl_env :
450 -@ !
451.ENDIF
452
453.IFDEF VIM_PYTHON
454python_env :
455 -@ write sys$output "using PYTHON environment:"
456 -@ show logical PYTHON_INCLUDE
457 -@ show logical PYTHON_OLB
458 -@ write sys$output "creating OS_VMS_PYTHON.OPT file."
459 -@ open/write opt_file OS_VMS_PYTHON.OPT
460 -@ write opt_file "PYTHON_OLB:PYTHON.OLB /share"
461 -@ close opt_file
462.ELSE
463python_env :
464 -@ !
465.ENDIF
466
467.IFDEF VIM_TCL
468tcl_env :
469 -@ write sys$output "using TCL environment:"
470 -@ show logical TCLSHR
471 -@ write sys$output " include path: ""$(TCL_INC)"""
472 -@ write sys$output "creating OS_VMS_TCL.OPT file."
473 -@ open/write opt_file OS_VMS_TCL.OPT
474 -@ write opt_file "TCLSHR /share"
475 -@ close opt_file
476.ELSE
477tcl_env :
478 -@ !
479.ENDIF
480
481.IFDEF VIM_RUBY
482ruby_env :
483 -@ write sys$output "using RUBY environment:"
484 -@ write sys$output " include path: ""$(RUBY_INC)"""
485 -@ write sys$output "creating OS_VMS_RUBY.OPT file."
486 -@ open/write opt_file OS_VMS_RUBY.OPT
487 -@ write opt_file "RUBYSHR /share"
488 -@ close opt_file
489.ELSE
490ruby_env :
491 -@ !
492.ENDIF
493
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000494buffer.obj : buffer.c vim.h [.auto]config.h feature.h os_unix.h \
495 ascii.h keymap.h term.h macros.h structs.h regexp.h \
496 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
497 globals.h farsi.h arabic.h version.h
498charset.obj : charset.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
502diff.obj : diff.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
506digraph.obj : digraph.c vim.h [.auto]config.h feature.h os_unix.h \
507 ascii.h keymap.h term.h macros.h structs.h regexp.h \
508 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
509 globals.h farsi.h arabic.h
510edit.obj : edit.c vim.h [.auto]config.h feature.h os_unix.h \
511 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \
512 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
513 arabic.h
514eval.obj : eval.c vim.h [.auto]config.h feature.h os_unix.h \
515 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \
516 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
517 arabic.h version.h
518ex_cmds.obj : ex_cmds.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 version.h
522ex_cmds2.obj : ex_cmds2.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 version.h
526ex_docmd.obj : ex_docmd.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
530ex_eval.obj : ex_eval.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
534ex_getln.obj : ex_getln.c vim.h [.auto]config.h feature.h os_unix.h \
535 ascii.h keymap.h term.h macros.h structs.h regexp.h \
536 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
537 globals.h farsi.h arabic.h
538fileio.obj : fileio.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
542fold.obj : fold.c vim.h [.auto]config.h feature.h os_unix.h \
543 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \
544 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
545 arabic.h
546getchar.obj : getchar.c vim.h [.auto]config.h feature.h os_unix.h \
547 ascii.h keymap.h term.h macros.h structs.h regexp.h \
548 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
549 globals.h farsi.h arabic.h
Bram Moolenaar58d98232005-07-23 22:25:46 +0000550hardcopy.obj : hardcopy.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
Bram Moolenaar76b92b22006-03-24 22:46:53 +0000554hashtab.obj : hashtab.c vim.h [.auto]config.h feature.h os_unix.h \
Bram Moolenaar383f9bc2005-01-19 22:18:32 +0000555 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
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000558if_cscope.obj : if_cscope.c vim.h [.auto]config.h feature.h os_unix.h \
559 ascii.h keymap.h term.h macros.h structs.h regexp.h \
560 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
561 globals.h farsi.h arabic.h if_cscope.h
562if_xcmdsrv.obj : if_xcmdsrv.c vim.h [.auto]config.h feature.h os_unix.h \
563 ascii.h keymap.h term.h macros.h structs.h regexp.h \
564 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
565 globals.h farsi.h arabic.h version.h
Bram Moolenaarf878bcf2010-07-30 22:29:41 +0200566if_mzsch.obj : if_mzsch.c vim.h [.auto]config.h feature.h os_unix.h \
567 ascii.h keymap.h term.h macros.h option.h structs.h \
568 regexp.h gui.h gui_beval.h [.proto]gui_beval.pro ex_cmds.h proto.h \
569 globals.h farsi.h arabic.h if_mzsch.h
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000570main.obj : main.c vim.h [.auto]config.h feature.h os_unix.h \
571 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \
572 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
573 arabic.h farsi.c arabic.c
574mark.obj : mark.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
578memfile.obj : memfile.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
582memline.obj : memline.c vim.h [.auto]config.h feature.h os_unix.h \
583 ascii.h keymap.h term.h macros.h structs.h regexp.h \
584 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
585 globals.h farsi.h arabic.h
586menu.obj : menu.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
590message.obj : message.c vim.h [.auto]config.h feature.h os_unix.h \
591 ascii.h keymap.h term.h macros.h structs.h regexp.h \
592 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
593 globals.h farsi.h arabic.h
594misc1.obj : misc1.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 version.h
598misc2.obj : misc2.c vim.h [.auto]config.h feature.h os_unix.h \
599 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \
600 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
601 arabic.h
602move.obj : move.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
606mbyte.obj : mbyte.c vim.h [.auto]config.h feature.h os_unix.h \
607 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \
608 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
609 arabic.h
610normal.obj : normal.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
614ops.obj : ops.c vim.h [.auto]config.h feature.h os_unix.h \
615 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \
616 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
617 arabic.h
618option.obj : option.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
622os_unix.obj : os_unix.c vim.h [.auto]config.h feature.h os_unix.h \
623 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 os_unixx.h
626os_vms.obj : os_vms.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 os_unixx.h
630pathdef.obj : pathdef.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
Bram Moolenaar76b92b22006-03-24 22:46:53 +0000634popupmnu.obj : popupmnu.c vim.h [.auto]config.h feature.h os_unix.h \
Bram Moolenaardf1bdc92006-02-23 21:32:16 +0000635 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
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000638quickfix.obj : quickfix.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
642regexp.obj : regexp.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
646screen.obj : screen.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
650search.obj : search.c vim.h [.auto]config.h feature.h os_unix.h \
651 ascii.h keymap.h term.h macros.h structs.h regexp.h \
652 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
653 globals.h farsi.h arabic.h
Bram Moolenaar217ad922005-03-20 22:37:15 +0000654spell.obj : spell.c vim.h [.auto]config.h feature.h os_unix.h \
655 ascii.h keymap.h term.h macros.h structs.h regexp.h \
656 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
657 globals.h farsi.h arabic.h
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000658syntax.obj : syntax.c vim.h [.auto]config.h feature.h os_unix.h \
659 ascii.h keymap.h term.h macros.h structs.h regexp.h \
660 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
661 globals.h farsi.h arabic.h
662tag.obj : tag.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
666term.obj : term.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
670termlib.obj : termlib.c vim.h [.auto]config.h feature.h os_unix.h \
671 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \
672 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
673 arabic.h
674ui.obj : ui.c vim.h [.auto]config.h feature.h os_unix.h \
675 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \
676 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
677 arabic.h
678undo.obj : undo.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
682version.obj : version.c vim.h [.auto]config.h feature.h os_unix.h \
683 ascii.h keymap.h term.h macros.h structs.h regexp.h \
684 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
685 globals.h farsi.h arabic.h version.h
686window.obj : window.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
690gui.obj : gui.c vim.h [.auto]config.h feature.h os_unix.h \
691 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \
692 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
693 arabic.h
694gui_gtk.obj : gui_gtk.c gui_gtk_f.h vim.h [.auto]config.h feature.h \
695 os_unix.h ascii.h keymap.h term.h macros.h structs.h \
696 regexp.h gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h \
697 proto.h globals.h farsi.h arabic.h [-.pixmaps]stock_icons.h
698gui_gtk_f.obj : gui_gtk_f.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
702gui_motif.obj : gui_motif.c vim.h [.auto]config.h feature.h os_unix.h \
703 ascii.h keymap.h term.h macros.h structs.h regexp.h \
704 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
705 globals.h farsi.h arabic.h [-.pixmaps]alert.xpm [-.pixmaps]error.xpm \
706 [-.pixmaps]generic.xpm [-.pixmaps]info.xpm [-.pixmaps]quest.xpm
707gui_athena.obj : gui_athena.c vim.h [.auto]config.h feature.h os_unix.h \
708 ascii.h keymap.h term.h macros.h structs.h regexp.h \
709 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
710 globals.h farsi.h arabic.h gui_at_sb.h
711gui_gtk_x11.obj : gui_gtk_x11.c vim.h [.auto]config.h feature.h os_unix.h \
712 ascii.h keymap.h term.h macros.h structs.h regexp.h \
713 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
714 globals.h farsi.h arabic.h gui_gtk_f.h [-.runtime]vim32x32.xpm \
715 [-.runtime]vim16x16.xpm [-.runtime]vim48x48.xpm
716gui_x11.obj : gui_x11.c vim.h [.auto]config.h feature.h os_unix.h \
717 ascii.h keymap.h term.h macros.h structs.h regexp.h \
718 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
719 globals.h farsi.h arabic.h [-.runtime]vim32x32.xpm \
720 [-.runtime]vim16x16.xpm [-.runtime]vim48x48.xpm [-.pixmaps]tb_new.xpm \
721 [-.pixmaps]tb_open.xpm [-.pixmaps]tb_close.xpm [-.pixmaps]tb_save.xpm \
722 [-.pixmaps]tb_print.xpm [-.pixmaps]tb_cut.xpm [-.pixmaps]tb_copy.xpm \
723 [-.pixmaps]tb_paste.xpm [-.pixmaps]tb_find.xpm \
724 [-.pixmaps]tb_find_next.xpm [-.pixmaps]tb_find_prev.xpm \
725 [-.pixmaps]tb_find_help.xpm [-.pixmaps]tb_exit.xpm \
726 [-.pixmaps]tb_undo.xpm [-.pixmaps]tb_redo.xpm [-.pixmaps]tb_help.xpm \
727 [-.pixmaps]tb_macro.xpm [-.pixmaps]tb_make.xpm \
728 [-.pixmaps]tb_save_all.xpm [-.pixmaps]tb_jump.xpm \
729 [-.pixmaps]tb_ctags.xpm [-.pixmaps]tb_load_session.xpm \
730 [-.pixmaps]tb_save_session.xpm [-.pixmaps]tb_new_session.xpm \
731 [-.pixmaps]tb_blank.xpm [-.pixmaps]tb_maximize.xpm \
732 [-.pixmaps]tb_split.xpm [-.pixmaps]tb_minimize.xpm \
733 [-.pixmaps]tb_shell.xpm [-.pixmaps]tb_replace.xpm \
734 [-.pixmaps]tb_vsplit.xpm [-.pixmaps]tb_maxwidth.xpm \
735 [-.pixmaps]tb_minwidth.xpm
736gui_at_sb.obj : gui_at_sb.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 gui_at_sb.h
740gui_at_fs.obj : gui_at_fs.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 gui_at_sb.h
744pty.obj : pty.c vim.h [.auto]config.h feature.h os_unix.h \
745 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \
746 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
747 arabic.h
748hangulin.obj : hangulin.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_perl.obj : [.auto]if_perl.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_perlsfio.obj : if_perlsfio.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
760if_python.obj : if_python.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
764if_tcl.obj : if_tcl.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
768if_ruby.obj : if_ruby.c vim.h [.auto]config.h feature.h os_unix.h \
769 ascii.h keymap.h term.h macros.h structs.h regexp.h \
770 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
771 globals.h farsi.h arabic.h version.h
772if_sniff.obj : if_sniff.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 os_unixx.h
776gui_beval.obj : gui_beval.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
780workshop.obj : workshop.c [.auto]config.h integration.h vim.h feature.h \
781 os_unix.h ascii.h keymap.h term.h macros.h structs.h \
782 regexp.h gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h \
783 proto.h globals.h farsi.h arabic.h version.h workshop.h
784wsdebug.obj : wsdebug.c
785integration.obj : integration.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 gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
788 globals.h farsi.h arabic.h integration.h
789netbeans.obj : netbeans.c vim.h [.auto]config.h feature.h os_unix.h \
790 ascii.h keymap.h term.h macros.h structs.h regexp.h \
791 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
792 globals.h farsi.h arabic.h version.h
Bram Moolenaar8d343302005-07-12 22:46:17 +0000793gui_xmdlg.obj : gui_xmdlg.c
794gui_xmebw.obj : gui_xmebw.c