blob: 80872ad48b57e34024721c17903b9e4555b12218 [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 Moolenaarc3719bd2017-11-18 22:13:31 +01005# Last change: 2017 Nov 18
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
25# Compiler selection.
26# Comment out if you use the VAXC compiler
27DECC = YES
28
29# Build model selection
30# TINY - Almost no features enabled, not even multiple windows
31# SMALL - Few features enabled, as basic as possible
32# NORMAL - A default selection of features enabled
33# BIG - Many features enabled, as rich as possible. (default)
Bram Moolenaar84a05ac2013-05-06 04:24:17 +020034# HUGE - All possible features enabled.
Bram Moolenaar071d4272004-06-13 20:20:40 +000035# Please select one of these alternatives above.
Bram Moolenaarac98e5d2008-09-01 14:51:37 +000036MODEL = HUGE
Bram Moolenaar071d4272004-06-13 20:20:40 +000037
38# GUI or terminal mode executable.
39# Comment out if you want just the character terminal mode only.
Bram Moolenaar4c3f5362006-04-11 21:38:50 +000040# GUI with Motif
Bram Moolenaarde5e2c22016-11-04 20:35:31 +010041GUI = YES
Bram Moolenaar071d4272004-06-13 20:20:40 +000042
43# GUI with GTK
44# If you have GTK installed you might want to enable this option.
Bram Moolenaar3d20ca12006-11-28 16:43:58 +000045# NOTE: you will need to properly define GTK_DIR below
Bram Moolenaar071d4272004-06-13 20:20:40 +000046# GTK = YES
47
Bram Moolenaar8d343302005-07-12 22:46:17 +000048# GUI/Motif with XPM
49# If you have XPM installed you might want to build Motif version with toolbar
50# XPM = YES
51
Bram Moolenaar071d4272004-06-13 20:20:40 +000052# Comment out if you want the compiler version with :ver command.
53# NOTE: This part can make some complications if you're using some
54# predefined symbols/flags for your compiler. If does, just leave behind
Bram Moolenaar84a05ac2013-05-06 04:24:17 +020055# the comment variable CCVER.
Bram Moolenaar071d4272004-06-13 20:20:40 +000056CCVER = YES
57
58# Uncomment if want a debug version. Resulting executable is DVIM.EXE
59# Development purpose only! Normally, it should not be defined. !!!
Bram Moolenaar206f0112014-03-12 16:51:55 +010060# DEBUG = YES
Bram Moolenaar071d4272004-06-13 20:20:40 +000061
62# Languages support for Perl, Python, TCL etc.
63# If you don't need it really, leave them behind the comment.
64# You will need related libraries, include files etc.
65# VIM_TCL = YES
66# VIM_PERL = YES
67# VIM_PYTHON = YES
68# VIM_RUBY = YES
Bram Moolenaar071d4272004-06-13 20:20:40 +000069
70# X Input Method. For entering special languages like chinese and
71# Japanese. Please define just one: VIM_XIM or VIM_HANGULIN
72# If you don't need it really, leave it behind the comment.
73# VIM_XIM = YES
74
75# Internal Hangul input method. GUI only.
76# If you don't need it really, leave it behind the comment.
77# VIM_HANGULIN = YES
78
79# Allow any white space to separate the fields in a tags file
80# When not defined, only a TAB is allowed.
81# VIM_TAG_ANYWHITE = YES
82
Bram Moolenaarf878bcf2010-07-30 22:29:41 +020083# Allow FEATURE_MZSCHEME
84# VIM_MZSCHEME = YES
85
Bram Moolenaar206f0112014-03-12 16:51:55 +010086# Use ICONV
87# VIM_ICONV = YES
88
Bram Moolenaar071d4272004-06-13 20:20:40 +000089######################################################################
90# Directory, library and include files configuration section.
91# Normally you need not to change anything below. !
92# These may need to be defined if things are not in standard locations
93#
94# You can find some explanation in INSTALLVMS.TXT
95######################################################################
96
97# Compiler setup
98
Bram Moolenaar3d20ca12006-11-28 16:43:58 +000099.IFDEF MMSVAX
Bram Moolenaar071d4272004-06-13 20:20:40 +0000100.IFDEF DECC # VAX with DECC
Bram Moolenaar206f0112014-03-12 16:51:55 +0100101CC_DEF = cc # /decc # some versions require /decc switch but when it is not required /ver might fail
Bram Moolenaar071d4272004-06-13 20:20:40 +0000102PREFIX = /prefix=all
Bram Moolenaar206f0112014-03-12 16:51:55 +0100103OPTIMIZE= /noopt # do not optimize on VAX. The compiler has hard time with crypto functions
Bram Moolenaar071d4272004-06-13 20:20:40 +0000104.ELSE # VAX with VAXC
105CC_DEF = cc
106PREFIX =
Bram Moolenaar206f0112014-03-12 16:51:55 +0100107OPTIMIZE= /noopt
Bram Moolenaar071d4272004-06-13 20:20:40 +0000108CCVER =
109.ENDIF
Bram Moolenaar206f0112014-03-12 16:51:55 +0100110.ELSE # AXP and IA64 with DECC
Bram Moolenaar071d4272004-06-13 20:20:40 +0000111CC_DEF = cc
112PREFIX = /prefix=all
Bram Moolenaar206f0112014-03-12 16:51:55 +0100113OPTIMIZE= /opt
Bram Moolenaar071d4272004-06-13 20:20:40 +0000114.ENDIF
115
Bram Moolenaar206f0112014-03-12 16:51:55 +0100116
Bram Moolenaar071d4272004-06-13 20:20:40 +0000117LD_DEF = link
118C_INC = [.proto]
119
Bram Moolenaar071d4272004-06-13 20:20:40 +0000120.IFDEF DEBUG
121DEBUG_DEF = ,"DEBUG"
122TARGET = dvim.exe
123CFLAGS = /debug/noopt$(PREFIX)
124LDFLAGS = /debug
125.ELSE
126TARGET = vim.exe
Bram Moolenaar206f0112014-03-12 16:51:55 +0100127CFLAGS = $(OPTIMIZE)$(PREFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000128LDFLAGS =
129.ENDIF
130
131# Predefined VIM directories
132# Please, use $VIM and $VIMRUNTIME logicals instead
133VIMLOC = ""
134VIMRUN = ""
135
136CONFIG_H = os_vms_conf.h
137
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000138# GTK or XPM but not both
Bram Moolenaar071d4272004-06-13 20:20:40 +0000139.IFDEF GTK
140.IFDEF GUI
141.ELSE
142GUI = YES
143.ENDIF
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000144.IFDEF XPM
145XPM = ""
146.ENDIF
147.ENDIF
148
149.IFDEF XPM
150.IFDEF GUI
151.ELSE
152GUI = YES
153.ENDIF
154.IFDEF GTK
155GTK = ""
Bram Moolenaar071d4272004-06-13 20:20:40 +0000156.ENDIF
Bram Moolenaar8d343302005-07-12 22:46:17 +0000157.ENDIF
Bram Moolenaar071d4272004-06-13 20:20:40 +0000158
159.IFDEF GUI
160# X/Motif/GTK executable (also works in terminal mode )
161
162.IFDEF GTK
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000163# NOTE: you need to set up your GTK_DIR (GTK root directory), because it is
164# unique on every system - logicals are not accepted
Bram Moolenaar8d343302005-07-12 22:46:17 +0000165# please note: directory should end with . in order to /trans=conc work
Bram Moolenaar3d20ca12006-11-28 16:43:58 +0000166# This value for GTK_DIR is an example.
167GTK_DIR = $1$DGA104:[USERS.ZAY.WORK.GTK1210.]
Bram Moolenaar071d4272004-06-13 20:20:40 +0000168DEFS = "HAVE_CONFIG_H","FEAT_GUI_GTK"
169LIBS = ,OS_VMS_GTK.OPT/OPT
170GUI_FLAG = /name=(as_is,short)/float=ieee/ieee=denorm
Bram Moolenaar8d343302005-07-12 22:46:17 +0000171GUI_SRC = gui.c gui_gtk.c gui_gtk_f.c gui_gtk_x11.c gui_beval.c pty.c
172GUI_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 +0000173GUI_INC = ,"/gtk_root/gtk","/gtk_root/glib"
174# GUI_INC_VER is used just for :ver information
175# this string should escape from C and DCL in the same time
176GUI_INC_VER= ,\""/gtk_root/gtk\"",\""/gtk_root/glib\""
Bram Moolenaar8d343302005-07-12 22:46:17 +0000177.ELSE
Bram Moolenaar071d4272004-06-13 20:20:40 +0000178MOTIF = YES
Bram Moolenaar8d343302005-07-12 22:46:17 +0000179.IFDEF XPM
180DEFS = "HAVE_CONFIG_H","FEAT_GUI_MOTIF","HAVE_XPM"
181.ELSE
Bram Moolenaar071d4272004-06-13 20:20:40 +0000182DEFS = "HAVE_CONFIG_H","FEAT_GUI_MOTIF"
Bram Moolenaar8d343302005-07-12 22:46:17 +0000183.ENDIF
Bram Moolenaar071d4272004-06-13 20:20:40 +0000184LIBS = ,OS_VMS_MOTIF.OPT/OPT
185GUI_FLAG =
Bram Moolenaar8d343302005-07-12 22:46:17 +0000186GUI_SRC = gui.c gui_motif.c gui_x11.c gui_beval.c gui_xmdlg.c gui_xmebw.c
187GUI_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 +0000188GUI_INC =
189.ENDIF
190
191# You need to define these variables if you do not have DECW files
192# at standard location
193GUI_INC_DIR = ,decw$include:
194# GUI_LIB_DIR = ,sys$library:
195
196.ELSE
197# Character terminal only executable
198DEFS = "HAVE_CONFIG_H"
199LIBS =
200.ENDIF
201
202.IFDEF VIM_PERL
203# Perl related setup.
204PERL = perl
205PERL_DEF = ,"FEAT_PERL"
206PERL_SRC = if_perlsfio.c if_perl.xs
207PERL_OBJ = if_perlsfio.obj if_perl.obj
208PERL_LIB = ,OS_VMS_PERL.OPT/OPT
209PERL_INC = ,dka0:[perlbuild.perl.lib.vms_axp.5_6_1.core]
210.ENDIF
211
212.IFDEF VIM_PYTHON
213# Python related setup.
214PYTHON_DEF = ,"FEAT_PYTHON"
215PYTHON_SRC = if_python.c
216PYTHON_OBJ = if_python.obj
217PYTHON_LIB = ,OS_VMS_PYTHON.OPT/OPT
218PYTHON_INC = ,PYTHON_INCLUDE
219.ENDIF
220
221.IFDEF VIM_TCL
222# TCL related setup.
223TCL_DEF = ,"FEAT_TCL"
224TCL_SRC = if_tcl.c
225TCL_OBJ = if_tcl.obj
226TCL_LIB = ,OS_VMS_TCL.OPT/OPT
227TCL_INC = ,dka0:[tcl80.generic]
228.ENDIF
229
Bram Moolenaar071d4272004-06-13 20:20:40 +0000230.IFDEF VIM_RUBY
231# RUBY related setup.
232RUBY_DEF = ,"FEAT_RUBY"
233RUBY_SRC = if_ruby.c
234RUBY_OBJ = if_ruby.obj
235RUBY_LIB = ,OS_VMS_RUBY.OPT/OPT
236RUBY_INC =
237.ENDIF
238
239.IFDEF VIM_XIM
240# XIM related setup.
241.IFDEF GUI
242XIM_DEF = ,"FEAT_XIM"
243.ENDIF
244.ENDIF
245
246.IFDEF VIM_HANGULIN
247# HANGULIN related setup.
248.IFDEF GUI
249HANGULIN_DEF = ,"FEAT_HANGULIN"
250HANGULIN_SRC = hangulin.c
251HANGULIN_OBJ = hangulin.obj
252.ENDIF
253.ENDIF
254
255.IFDEF VIM_TAG_ANYWHITE
256# TAG_ANYWHITE related setup.
257TAG_DEF = ,"FEAT_TAG_ANYWHITE"
258.ENDIF
259
Bram Moolenaarf878bcf2010-07-30 22:29:41 +0200260.IFDEF VIM_MZSCHEME
261# MZSCHEME related setup
262MZSCH_DEF = ,"FEAT_MZSCHEME"
263MZSCH_SRC = if_mzsch.c
264MZSCH_OBJ = if_mzsch.obj
265.ENDIF
Bram Moolenaar071d4272004-06-13 20:20:40 +0000266
Bram Moolenaar206f0112014-03-12 16:51:55 +0100267.IFDEF VIM_ICONV
268# ICONV related setup
269ICONV_DEF = ,"USE_ICONV"
270.ENDIF
271
Bram Moolenaar071d4272004-06-13 20:20:40 +0000272######################################################################
273# End of configuration section.
274# Please, do not change anything below without programming experience.
275######################################################################
276
Bram Moolenaar071d4272004-06-13 20:20:40 +0000277MODEL_DEF = "FEAT_$(MODEL)",
278
279# These go into pathdef.c
280VIMUSER = "''F$EDIT(F$GETJPI(" ","USERNAME"),"TRIM")'"
281VIMHOST = "''F$TRNLNM("SYS$NODE")'''F$TRNLNM("UCX$INET_HOST")'.''F$TRNLNM("UCX$INET_DOMAIN")'"
282
283.SUFFIXES : .obj .c
284
Bram Moolenaar206f0112014-03-12 16:51:55 +0100285ALL_CFLAGS = /def=($(MODEL_DEF)$(DEFS)$(DEBUG_DEF)$(PERL_DEF)$(PYTHON_DEF) -
Bram Moolenaar85b11762016-02-27 18:13:23 +0100286 $(TCL_DEF)$(RUBY_DEF)$(XIM_DEF)$(HANGULIN_DEF)$(TAG_DEF)$(MZSCH_DEF)$(ICONV_DEF)) -
Bram Moolenaar071d4272004-06-13 20:20:40 +0000287 $(CFLAGS)$(GUI_FLAG) -
288 /include=($(C_INC)$(GUI_INC_DIR)$(GUI_INC)$(PERL_INC)$(PYTHON_INC)$(TCL_INC))
289
290# CFLAGS displayed in :ver information
291# It is specially formated for correct display of unix like includes
292# as $(GUI_INC) - replaced with $(GUI_INC_VER)
293# Otherwise should not be any other difference.
Bram Moolenaar206f0112014-03-12 16:51:55 +0100294ALL_CFLAGS_VER = /def=($(MODEL_DEF)$(DEFS)$(DEBUG_DEF)$(PERL_DEF)$(PYTHON_DEF) -
Bram Moolenaar85b11762016-02-27 18:13:23 +0100295 $(TCL_DEF)$(RUBY_DEF)$(XIM_DEF)$(HANGULIN_DEF)$(TAG_DEF)$(MZSCH_DEF)$(ICONV_DEF)) -
Bram Moolenaar071d4272004-06-13 20:20:40 +0000296 $(CFLAGS)$(GUI_FLAG) -
297 /include=($(C_INC)$(GUI_INC_DIR)$(GUI_INC_VER)$(PERL_INC)$(PYTHON_INC)$(TCL_INC))
298
299ALL_LIBS = $(LIBS) $(GUI_LIB_DIR) $(GUI_LIB) \
Bram Moolenaar85b11762016-02-27 18:13:23 +0100300 $(PERL_LIB) $(PYTHON_LIB) $(TCL_LIB) $(RUBY_LIB)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000301
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100302SRC = arabic.c beval.obj blowfish.c buffer.c charset.c crypt.c crypt_zip.c dict.c diff.c digraph.c edit.c eval.c evalfunc.c \
Bram Moolenaarde5e2c22016-11-04 20:35:31 +0100303 ex_cmds.c ex_cmds2.c ex_docmd.c ex_eval.c ex_getln.c if_cscope.c if_xcmdsrv.c farsi.c fileio.c fold.c getchar.c \
304 hardcopy.c hashtab.c json.c list.c main.c mark.c menu.c mbyte.c memfile.c memline.c message.c misc1.c \
Bram Moolenaarbbea4702019-01-01 13:20:31 +0100305 misc2.c move.c normal.c ops.c option.c popupmnu.c quickfix.c regexp.c search.c sha256.c sign.c \
Bram Moolenaarde5e2c22016-11-04 20:35:31 +0100306 spell.c spellfile.c syntax.c tag.c term.c termlib.c ui.c undo.c userfunc.c version.c screen.c \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000307 window.c os_unix.c os_vms.c pathdef.c \
Bram Moolenaar85b11762016-02-27 18:13:23 +0100308 $(GUI_SRC) $(PERL_SRC) $(PYTHON_SRC) $(TCL_SRC) \
Bram Moolenaarf878bcf2010-07-30 22:29:41 +0200309 $(RUBY_SRC) $(HANGULIN_SRC) $(MZSCH_SRC)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000310
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100311OBJ = arabic.obj beval.obj blowfish.obj buffer.obj charset.obj crypt.obj crypt_zip.obj dict.obj diff.obj digraph.obj edit.obj eval.obj \
Bram Moolenaarde5e2c22016-11-04 20:35:31 +0100312 evalfunc.obj ex_cmds.obj ex_cmds2.obj ex_docmd.obj ex_eval.obj ex_getln.obj if_cscope.obj \
313 if_xcmdsrv.obj farsi.obj fileio.obj fold.obj getchar.obj hardcopy.obj hashtab.obj json.obj list.obj main.obj mark.obj \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000314 menu.obj memfile.obj memline.obj message.obj misc1.obj misc2.obj \
Bram Moolenaar76b92b22006-03-24 22:46:53 +0000315 move.obj mbyte.obj normal.obj ops.obj option.obj popupmnu.obj quickfix.obj \
Bram Moolenaarbbea4702019-01-01 13:20:31 +0100316 regexp.obj search.obj sha256.obj sign.obj spell.obj spellfile.obj syntax.obj tag.obj term.obj termlib.obj \
Bram Moolenaarde5e2c22016-11-04 20:35:31 +0100317 ui.obj undo.obj userfunc.obj screen.obj version.obj window.obj os_unix.obj \
Bram Moolenaarf878bcf2010-07-30 22:29:41 +0200318 os_vms.obj pathdef.obj if_mzsch.obj\
Bram Moolenaar85b11762016-02-27 18:13:23 +0100319 $(GUI_OBJ) $(PERL_OBJ) $(PYTHON_OBJ) $(TCL_OBJ) \
Bram Moolenaarf878bcf2010-07-30 22:29:41 +0200320 $(RUBY_OBJ) $(HANGULIN_OBJ) $(MZSCH_OBJ)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000321
322# Default target is making the executable
323all : [.auto]config.h mmk_compat motif_env gtk_env perl_env python_env tcl_env ruby_env $(TARGET)
324 ! $@
325
326[.auto]config.h : $(CONFIG_H)
327 copy/nolog $(CONFIG_H) [.auto]config.h
328
329mmk_compat :
330 -@ open/write pd pathdef.c
331 -@ write pd "/* Empty file to satisfy MMK depend. */"
Bram Moolenaarcf0dfa22007-05-10 18:52:16 +0000332 -@ write pd "/* It will be overwritten later on... */"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000333 -@ close pd
334clean :
335 -@ if "''F$SEARCH("*.exe")'" .NES. "" then delete/noconfirm/nolog *.exe;*
336 -@ if "''F$SEARCH("*.obj")'" .NES. "" then delete/noconfirm/nolog *.obj;*
337 -@ if "''F$SEARCH("[.auto]config.h")'" .NES. "" then delete/noconfirm/nolog [.auto]config.h;*
338 -@ if "''F$SEARCH("pathdef.c")'" .NES. "" then delete/noconfirm/nolog pathdef.c;*
339 -@ if "''F$SEARCH("if_perl.c")'" .NES. "" then delete/noconfirm/nolog if_perl.c;*
340 -@ if "''F$SEARCH("*.opt")'" .NES. "" then delete/noconfirm/nolog *.opt;*
341
342# Link the target
343$(TARGET) : $(OBJ)
344 $(LD_DEF) $(LDFLAGS) /exe=$(TARGET) $+ $(ALL_LIBS)
345
346.c.obj :
347 $(CC_DEF) $(ALL_CFLAGS) $<
348
349pathdef.c : check_ccver $(CONFIG_H)
350 -@ write sys$output "creating PATHDEF.C file."
351 -@ open/write pd pathdef.c
352 -@ write pd "/* pathdef.c -- DO NOT EDIT! */"
353 -@ write pd "/* This file is automatically created by MAKE_VMS.MMS"
354 -@ write pd " * Change the file MAKE_VMS.MMS Only. */"
355 -@ write pd "typedef unsigned char char_u;"
356 -@ write pd "char_u *default_vim_dir = (char_u *)"$(VIMLOC)";"
357 -@ write pd "char_u *default_vimruntime_dir = (char_u *)"$(VIMRUN)";"
358 -@ write pd "char_u *all_cflags = (char_u *)""$(CC_DEF)$(ALL_CFLAGS_VER)"";"
359 -@ write pd "char_u *all_lflags = (char_u *)""$(LD_DEF)$(LDFLAGS) /exe=$(TARGET) *.OBJ $(ALL_LIBS)"";"
360 -@ write pd "char_u *compiler_version = (char_u *) ""''CC_VER'"";"
361 -@ write pd "char_u *compiled_user = (char_u *) "$(VIMUSER)";"
Bram Moolenaar3d20ca12006-11-28 16:43:58 +0000362 -@ write pd "char_u *compiled_sys = (char_u *) "$(VIMHOST)";"
363 -@ write pd "char_u *compiled_arch = (char_u *) ""$(MMSARCH_NAME)"";"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000364 -@ close pd
365
366if_perl.c : if_perl.xs
367 -@ $(PERL) PERL_ROOT:[LIB.ExtUtils]xsubpp -prototypes -typemap -
368 PERL_ROOT:[LIB.ExtUtils]typemap if_perl.xs >> $@
369
370make_vms.mms :
371 -@ write sys$output "The name of the makefile MUST be <MAKE_VMS.MMS> !!!"
372
373.IFDEF CCVER
374# This part can make some complications if you're using some predefined
375# symbols/flags for your compiler. If does, just comment out CCVER variable
376check_ccver :
377 -@ define sys$output cc_ver.tmp
378 -@ $(CC_DEF)/version
379 -@ deassign sys$output
380 -@ open/read file cc_ver.tmp
381 -@ read file CC_VER
382 -@ close file
383 -@ delete/noconfirm/nolog cc_ver.tmp.*
384.ELSE
385check_ccver :
386 -@ !
387.ENDIF
388
389.IFDEF MOTIF
390motif_env :
Bram Moolenaar8d343302005-07-12 22:46:17 +0000391.IFDEF XPM
392 -@ write sys$output "using DECW/Motif/XPM environment."
393.ELSE
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000394 -@ write sys$output "using DECW/Motif environment."
Bram Moolenaar8d343302005-07-12 22:46:17 +0000395.ENDIF
Bram Moolenaar071d4272004-06-13 20:20:40 +0000396 -@ write sys$output "creating OS_VMS_MOTIF.OPT file."
397 -@ open/write opt_file OS_VMS_MOTIF.OPT
398 -@ write opt_file "sys$share:decw$xmlibshr12.exe/share,-"
399 -@ write opt_file "sys$share:decw$xtlibshrr5.exe/share,-"
400 -@ write opt_file "sys$share:decw$xlibshr.exe/share"
401 -@ close opt_file
402.ELSE
403motif_env :
404 -@ !
405.ENDIF
406
407
408.IFDEF GTK
409gtk_env :
410 -@ write sys$output "using GTK environment:"
411 -@ define/nolog gtk_root /trans=conc $(GTK_DIR)
412 -@ show logical gtk_root
413 -@ write sys$output " include path: "$(GUI_INC)""
414 -@ write sys$output "creating OS_VMS_GTK.OPT file."
415 -@ open/write opt_file OS_VMS_GTK.OPT
416 -@ write opt_file "gtk_root:[glib]libglib.exe /share,-"
417 -@ write opt_file "gtk_root:[glib.gmodule]libgmodule.exe /share,-"
418 -@ write opt_file "gtk_root:[gtk.gdk]libgdk.exe /share,-"
419 -@ write opt_file "gtk_root:[gtk.gtk]libgtk.exe /share,-"
420 -@ write opt_file "sys$share:decw$xmlibshr12.exe/share,-"
421 -@ write opt_file "sys$share:decw$xtlibshrr5.exe/share,-"
422 -@ write opt_file "sys$share:decw$xlibshr.exe/share"
423 -@ close opt_file
424.ELSE
425gtk_env :
426 -@ !
427.ENDIF
428
429.IFDEF VIM_PERL
430perl_env :
431 -@ write sys$output "using PERL environment:"
432 -@ show logical PERLSHR
433 -@ write sys$output " include path: ""$(PERL_INC)"""
434 -@ show symbol perl
435 -@ open/write pd if_perl.c
436 -@ write pd "/* Empty file to satisfy MMK depend. */"
Bram Moolenaarcf0dfa22007-05-10 18:52:16 +0000437 -@ write pd "/* It will be overwritten later on... */"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000438 -@ close pd
439 -@ write sys$output "creating OS_VMS_PERL.OPT file."
440 -@ open/write opt_file OS_VMS_PERL.OPT
441 -@ write opt_file "PERLSHR /share"
442 -@ close opt_file
443.ELSE
444perl_env :
445 -@ !
446.ENDIF
447
448.IFDEF VIM_PYTHON
449python_env :
450 -@ write sys$output "using PYTHON environment:"
451 -@ show logical PYTHON_INCLUDE
452 -@ show logical PYTHON_OLB
453 -@ write sys$output "creating OS_VMS_PYTHON.OPT file."
454 -@ open/write opt_file OS_VMS_PYTHON.OPT
455 -@ write opt_file "PYTHON_OLB:PYTHON.OLB /share"
456 -@ close opt_file
457.ELSE
458python_env :
459 -@ !
460.ENDIF
461
462.IFDEF VIM_TCL
463tcl_env :
464 -@ write sys$output "using TCL environment:"
465 -@ show logical TCLSHR
466 -@ write sys$output " include path: ""$(TCL_INC)"""
467 -@ write sys$output "creating OS_VMS_TCL.OPT file."
468 -@ open/write opt_file OS_VMS_TCL.OPT
469 -@ write opt_file "TCLSHR /share"
470 -@ close opt_file
471.ELSE
472tcl_env :
473 -@ !
474.ENDIF
475
476.IFDEF VIM_RUBY
477ruby_env :
478 -@ write sys$output "using RUBY environment:"
479 -@ write sys$output " include path: ""$(RUBY_INC)"""
480 -@ write sys$output "creating OS_VMS_RUBY.OPT file."
481 -@ open/write opt_file OS_VMS_RUBY.OPT
482 -@ write opt_file "RUBYSHR /share"
483 -@ close opt_file
484.ELSE
485ruby_env :
486 -@ !
487.ENDIF
488
Bram Moolenaar3b98b832016-07-02 21:45:17 +0200489arabic.obj : arabic.c vim.h
490blowfish.obj : blowfish.c vim.h
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000491buffer.obj : buffer.c vim.h [.auto]config.h feature.h os_unix.h \
492 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100493 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000494 globals.h farsi.h arabic.h version.h
495charset.obj : charset.c vim.h [.auto]config.h feature.h os_unix.h \
496 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100497 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000498 globals.h farsi.h arabic.h
Bram Moolenaarde5e2c22016-11-04 20:35:31 +0100499crypt.obj : crypt.c vim.h [.auto]config.h feature.h os_unix.h \
500 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100501 beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \
Bram Moolenaarde5e2c22016-11-04 20:35:31 +0100502 globals.h farsi.h arabic.h
503crypt_zip.obj : crypt_zip.c vim.h [.auto]config.h feature.h os_unix.h \
504 ascii.h keymap.h term.h macros.h option.h structs.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100505 regexp.h gui.h beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h \
Bram Moolenaarde5e2c22016-11-04 20:35:31 +0100506 proto.h globals.h farsi.h arabic.h
507dict.obj : dict.c vim.h [.auto]config.h feature.h os_unix.h \
508 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100509 beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \
Bram Moolenaarde5e2c22016-11-04 20:35:31 +0100510 globals.h farsi.h arabic.h
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000511diff.obj : diff.c vim.h [.auto]config.h feature.h os_unix.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100512 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000513 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
514 arabic.h
515digraph.obj : digraph.c vim.h [.auto]config.h feature.h os_unix.h \
516 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100517 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000518 globals.h farsi.h arabic.h
519edit.obj : edit.c vim.h [.auto]config.h feature.h os_unix.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100520 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000521 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
522 arabic.h
523eval.obj : eval.c vim.h [.auto]config.h feature.h os_unix.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100524 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000525 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
526 arabic.h version.h
Bram Moolenaarde5e2c22016-11-04 20:35:31 +0100527evalfunc.obj : evalfunc.c vim.h [.auto]config.h feature.h os_unix.h \
528 ascii.h keymap.h term.h macros.h option.h structs.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100529 regexp.h gui.h beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h \
Bram Moolenaarde5e2c22016-11-04 20:35:31 +0100530 proto.h globals.h farsi.h arabic.h version.h
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000531ex_cmds.obj : ex_cmds.c vim.h [.auto]config.h feature.h os_unix.h \
532 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100533 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000534 globals.h farsi.h arabic.h version.h
535ex_cmds2.obj : ex_cmds2.c vim.h [.auto]config.h feature.h os_unix.h \
536 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100537 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000538 globals.h farsi.h arabic.h version.h
539ex_docmd.obj : ex_docmd.c vim.h [.auto]config.h feature.h os_unix.h \
540 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100541 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000542 globals.h farsi.h arabic.h
543ex_eval.obj : ex_eval.c vim.h [.auto]config.h feature.h os_unix.h \
544 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100545 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000546 globals.h farsi.h arabic.h
547ex_getln.obj : ex_getln.c vim.h [.auto]config.h feature.h os_unix.h \
548 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100549 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000550 globals.h farsi.h arabic.h
Bram Moolenaar3b98b832016-07-02 21:45:17 +0200551farsi.obj : farsi.c vim.h
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000552fileio.obj : fileio.c vim.h [.auto]config.h feature.h os_unix.h \
553 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100554 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000555 globals.h farsi.h arabic.h
556fold.obj : fold.c vim.h [.auto]config.h feature.h os_unix.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100557 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000558 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
559 arabic.h
560getchar.obj : getchar.c vim.h [.auto]config.h feature.h os_unix.h \
561 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100562 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000563 globals.h farsi.h arabic.h
Bram Moolenaar58d98232005-07-23 22:25:46 +0000564hardcopy.obj : hardcopy.c vim.h [.auto]config.h feature.h os_unix.h \
565 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100566 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaar58d98232005-07-23 22:25:46 +0000567 globals.h farsi.h arabic.h
Bram Moolenaar76b92b22006-03-24 22:46:53 +0000568hashtab.obj : hashtab.c vim.h [.auto]config.h feature.h os_unix.h \
Bram Moolenaar383f9bc2005-01-19 22:18:32 +0000569 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100570 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaar383f9bc2005-01-19 22:18:32 +0000571 globals.h farsi.h arabic.h
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000572if_cscope.obj : if_cscope.c vim.h [.auto]config.h feature.h os_unix.h \
573 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100574 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000575 globals.h farsi.h arabic.h if_cscope.h
576if_xcmdsrv.obj : if_xcmdsrv.c vim.h [.auto]config.h feature.h os_unix.h \
577 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100578 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000579 globals.h farsi.h arabic.h version.h
Bram Moolenaarf878bcf2010-07-30 22:29:41 +0200580if_mzsch.obj : if_mzsch.c vim.h [.auto]config.h feature.h os_unix.h \
581 ascii.h keymap.h term.h macros.h option.h structs.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100582 regexp.h gui.h beval.h [.proto]gui_beval.pro ex_cmds.h proto.h \
Bram Moolenaarf878bcf2010-07-30 22:29:41 +0200583 globals.h farsi.h arabic.h if_mzsch.h
Bram Moolenaar520e1e42016-01-23 19:46:28 +0100584json.obj : json.c vim.h [.auto]config.h feature.h os_unix.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100585 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
Bram Moolenaar520e1e42016-01-23 19:46:28 +0100586 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
587 arabic.h version.h
Bram Moolenaarde5e2c22016-11-04 20:35:31 +0100588list.obj : list.c vim.h [.auto]config.h feature.h os_unix.h \
589 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100590 beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \
Bram Moolenaarde5e2c22016-11-04 20:35:31 +0100591 globals.h farsi.h arabic.h
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000592main.obj : main.c vim.h [.auto]config.h feature.h os_unix.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100593 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000594 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
595 arabic.h farsi.c arabic.c
596mark.obj : mark.c vim.h [.auto]config.h feature.h os_unix.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100597 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000598 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
599 arabic.h
600memfile.obj : memfile.c vim.h [.auto]config.h feature.h os_unix.h \
601 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100602 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000603 globals.h farsi.h arabic.h
604memline.obj : memline.c vim.h [.auto]config.h feature.h os_unix.h \
605 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100606 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000607 globals.h farsi.h arabic.h
608menu.obj : menu.c vim.h [.auto]config.h feature.h os_unix.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100609 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000610 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
611 arabic.h
612message.obj : message.c vim.h [.auto]config.h feature.h os_unix.h \
613 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100614 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000615 globals.h farsi.h arabic.h
616misc1.obj : misc1.c vim.h [.auto]config.h feature.h os_unix.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100617 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000618 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
619 arabic.h version.h
620misc2.obj : misc2.c vim.h [.auto]config.h feature.h os_unix.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100621 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000622 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
623 arabic.h
624move.obj : move.c vim.h [.auto]config.h feature.h os_unix.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100625 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000626 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
627 arabic.h
628mbyte.obj : mbyte.c vim.h [.auto]config.h feature.h os_unix.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100629 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000630 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
631 arabic.h
632normal.obj : normal.c vim.h [.auto]config.h feature.h os_unix.h \
633 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100634 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000635 globals.h farsi.h arabic.h
636ops.obj : ops.c vim.h [.auto]config.h feature.h os_unix.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100637 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000638 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
639 arabic.h
640option.obj : option.c vim.h [.auto]config.h feature.h os_unix.h \
641 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100642 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000643 globals.h farsi.h arabic.h
644os_unix.obj : os_unix.c vim.h [.auto]config.h feature.h os_unix.h \
645 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100646 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000647 globals.h farsi.h arabic.h os_unixx.h
648os_vms.obj : os_vms.c vim.h [.auto]config.h feature.h os_unix.h \
649 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100650 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000651 globals.h farsi.h arabic.h os_unixx.h
652pathdef.obj : pathdef.c vim.h [.auto]config.h feature.h os_unix.h \
653 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100654 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000655 globals.h farsi.h arabic.h
Bram Moolenaar76b92b22006-03-24 22:46:53 +0000656popupmnu.obj : popupmnu.c vim.h [.auto]config.h feature.h os_unix.h \
Bram Moolenaardf1bdc92006-02-23 21:32:16 +0000657 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100658 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaardf1bdc92006-02-23 21:32:16 +0000659 globals.h farsi.h arabic.h
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000660quickfix.obj : quickfix.c vim.h [.auto]config.h feature.h os_unix.h \
661 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100662 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000663 globals.h farsi.h arabic.h
664regexp.obj : regexp.c vim.h [.auto]config.h feature.h os_unix.h \
665 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100666 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000667 globals.h farsi.h arabic.h
668screen.obj : screen.c vim.h [.auto]config.h feature.h os_unix.h \
669 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100670 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000671 globals.h farsi.h arabic.h
672search.obj : search.c vim.h [.auto]config.h feature.h os_unix.h \
673 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100674 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000675 globals.h farsi.h arabic.h
Bram Moolenaarde5e2c22016-11-04 20:35:31 +0100676sha256.obj : sha256.c vim.h [.auto]config.h feature.h os_unix.h \
677 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100678 beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \
Bram Moolenaarde5e2c22016-11-04 20:35:31 +0100679 globals.h farsi.h arabic.h
Bram Moolenaarbbea4702019-01-01 13:20:31 +0100680sign.obj : sign.c vim.h [.auto]config.h feature.h os_unix.h \
681 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \
682 beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \
683 globals.h farsi.h arabic.h
Bram Moolenaar217ad922005-03-20 22:37:15 +0000684spell.obj : spell.c vim.h [.auto]config.h feature.h os_unix.h \
685 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100686 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaar217ad922005-03-20 22:37:15 +0000687 globals.h farsi.h arabic.h
Bram Moolenaarde5e2c22016-11-04 20:35:31 +0100688spellfile.obj : spellfile.c vim.h [.auto]config.h feature.h os_unix.h \
689 ascii.h keymap.h term.h macros.h option.h structs.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100690 regexp.h gui.h beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h \
Bram Moolenaarde5e2c22016-11-04 20:35:31 +0100691 proto.h globals.h farsi.h arabic.h
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000692syntax.obj : syntax.c vim.h [.auto]config.h feature.h os_unix.h \
693 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100694 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000695 globals.h farsi.h arabic.h
696tag.obj : tag.c vim.h [.auto]config.h feature.h os_unix.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100697 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000698 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
699 arabic.h
700term.obj : term.c vim.h [.auto]config.h feature.h os_unix.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100701 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000702 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
703 arabic.h
704termlib.obj : termlib.c vim.h [.auto]config.h feature.h os_unix.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100705 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000706 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
707 arabic.h
708ui.obj : ui.c vim.h [.auto]config.h feature.h os_unix.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100709 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000710 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
711 arabic.h
712undo.obj : undo.c vim.h [.auto]config.h feature.h os_unix.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100713 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000714 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
715 arabic.h
Bram Moolenaarde5e2c22016-11-04 20:35:31 +0100716userfunc.obj : userfunc.c vim.h [.auto]config.h feature.h os_unix.h \
717 ascii.h keymap.h term.h macros.h option.h structs.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100718 regexp.h gui.h beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h \
Bram Moolenaarde5e2c22016-11-04 20:35:31 +0100719 proto.h globals.h farsi.h arabic.h
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000720version.obj : version.c vim.h [.auto]config.h feature.h os_unix.h \
721 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100722 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000723 globals.h farsi.h arabic.h version.h
724window.obj : window.c vim.h [.auto]config.h feature.h os_unix.h \
725 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100726 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000727 globals.h farsi.h arabic.h
728gui.obj : gui.c vim.h [.auto]config.h feature.h os_unix.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100729 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000730 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
731 arabic.h
732gui_gtk.obj : gui_gtk.c gui_gtk_f.h vim.h [.auto]config.h feature.h \
733 os_unix.h ascii.h keymap.h term.h macros.h structs.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100734 regexp.h gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000735 proto.h globals.h farsi.h arabic.h [-.pixmaps]stock_icons.h
736gui_gtk_f.obj : gui_gtk_f.c vim.h [.auto]config.h feature.h os_unix.h \
737 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100738 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000739 globals.h farsi.h arabic.h gui_gtk_f.h
740gui_motif.obj : gui_motif.c vim.h [.auto]config.h feature.h os_unix.h \
741 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100742 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000743 globals.h farsi.h arabic.h [-.pixmaps]alert.xpm [-.pixmaps]error.xpm \
744 [-.pixmaps]generic.xpm [-.pixmaps]info.xpm [-.pixmaps]quest.xpm
745gui_athena.obj : gui_athena.c vim.h [.auto]config.h feature.h os_unix.h \
746 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100747 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000748 globals.h farsi.h arabic.h gui_at_sb.h
749gui_gtk_x11.obj : gui_gtk_x11.c vim.h [.auto]config.h feature.h os_unix.h \
750 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100751 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000752 globals.h farsi.h arabic.h gui_gtk_f.h [-.runtime]vim32x32.xpm \
753 [-.runtime]vim16x16.xpm [-.runtime]vim48x48.xpm
754gui_x11.obj : gui_x11.c vim.h [.auto]config.h feature.h os_unix.h \
755 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100756 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000757 globals.h farsi.h arabic.h [-.runtime]vim32x32.xpm \
758 [-.runtime]vim16x16.xpm [-.runtime]vim48x48.xpm [-.pixmaps]tb_new.xpm \
759 [-.pixmaps]tb_open.xpm [-.pixmaps]tb_close.xpm [-.pixmaps]tb_save.xpm \
760 [-.pixmaps]tb_print.xpm [-.pixmaps]tb_cut.xpm [-.pixmaps]tb_copy.xpm \
761 [-.pixmaps]tb_paste.xpm [-.pixmaps]tb_find.xpm \
762 [-.pixmaps]tb_find_next.xpm [-.pixmaps]tb_find_prev.xpm \
763 [-.pixmaps]tb_find_help.xpm [-.pixmaps]tb_exit.xpm \
764 [-.pixmaps]tb_undo.xpm [-.pixmaps]tb_redo.xpm [-.pixmaps]tb_help.xpm \
765 [-.pixmaps]tb_macro.xpm [-.pixmaps]tb_make.xpm \
766 [-.pixmaps]tb_save_all.xpm [-.pixmaps]tb_jump.xpm \
767 [-.pixmaps]tb_ctags.xpm [-.pixmaps]tb_load_session.xpm \
768 [-.pixmaps]tb_save_session.xpm [-.pixmaps]tb_new_session.xpm \
769 [-.pixmaps]tb_blank.xpm [-.pixmaps]tb_maximize.xpm \
770 [-.pixmaps]tb_split.xpm [-.pixmaps]tb_minimize.xpm \
771 [-.pixmaps]tb_shell.xpm [-.pixmaps]tb_replace.xpm \
772 [-.pixmaps]tb_vsplit.xpm [-.pixmaps]tb_maxwidth.xpm \
773 [-.pixmaps]tb_minwidth.xpm
774gui_at_sb.obj : gui_at_sb.c vim.h [.auto]config.h feature.h os_unix.h \
775 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100776 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000777 globals.h farsi.h arabic.h gui_at_sb.h
778gui_at_fs.obj : gui_at_fs.c vim.h [.auto]config.h feature.h os_unix.h \
779 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100780 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000781 globals.h farsi.h arabic.h gui_at_sb.h
782pty.obj : pty.c vim.h [.auto]config.h feature.h os_unix.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100783 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000784 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
785 arabic.h
786hangulin.obj : hangulin.c vim.h [.auto]config.h feature.h os_unix.h \
787 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100788 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000789 globals.h farsi.h arabic.h
790if_perl.obj : [.auto]if_perl.c vim.h [.auto]config.h feature.h os_unix.h \
791 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100792 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000793 globals.h farsi.h arabic.h
794if_perlsfio.obj : if_perlsfio.c vim.h [.auto]config.h feature.h os_unix.h \
795 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100796 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000797 globals.h farsi.h arabic.h
798if_python.obj : if_python.c vim.h [.auto]config.h feature.h os_unix.h \
799 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100800 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000801 globals.h farsi.h arabic.h
802if_tcl.obj : if_tcl.c vim.h [.auto]config.h feature.h os_unix.h \
803 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100804 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000805 globals.h farsi.h arabic.h
806if_ruby.obj : if_ruby.c vim.h [.auto]config.h feature.h os_unix.h \
807 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100808 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000809 globals.h farsi.h arabic.h version.h
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100810beval.obj : beval.c vim.h [.auto]config.h feature.h os_unix.h \
811 ascii.h keymap.h term.h macros.h structs.h regexp.h \
812 gui.h beval.h option.h ex_cmds.h proto.h \
813 globals.h farsi.h arabic.h
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000814gui_beval.obj : gui_beval.c vim.h [.auto]config.h feature.h os_unix.h \
815 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100816 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000817 globals.h farsi.h arabic.h
818workshop.obj : workshop.c [.auto]config.h integration.h vim.h feature.h \
819 os_unix.h ascii.h keymap.h term.h macros.h structs.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100820 regexp.h gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000821 proto.h globals.h farsi.h arabic.h version.h workshop.h
822wsdebug.obj : wsdebug.c
823integration.obj : integration.c vim.h [.auto]config.h feature.h os_unix.h \
824 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100825 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000826 globals.h farsi.h arabic.h integration.h
827netbeans.obj : netbeans.c vim.h [.auto]config.h feature.h os_unix.h \
828 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100829 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000830 globals.h farsi.h arabic.h version.h
Bram Moolenaar8d343302005-07-12 22:46:17 +0000831gui_xmdlg.obj : gui_xmdlg.c
832gui_xmebw.obj : gui_xmebw.c