blob: 3b45b7885a9e290b2d9c34b8072d00936a09c9f6 [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 Moolenaarb005cd82019-09-04 15:54:55 +02005# Last change: 2019 Sep 04
Bram Moolenaar071d4272004-06-13 20:20:40 +00006#
Bram Moolenaar8d343302005-07-12 22:46:17 +00007# This has script been tested on VMS 6.2 to 8.2 on DEC Alpha, VAX and IA64
Bram Moolenaar071d4272004-06-13 20:20:40 +00008# with MMS and MMK
9#
10# The following could be built:
11# vim.exe: standard (terminal, GUI/Motif, GUI/GTK)
12# dvim.exe: debug
13#
14# Edit the lines in the Configuration section below for fine tuning.
15#
Bram Moolenaar3d20ca12006-11-28 16:43:58 +000016# To build: mms/descrip=Make_vms.mms /ignore=warning
Bram Moolenaar071d4272004-06-13 20:20:40 +000017# To clean up: mms/descrip=Make_vms.mms clean
18#
19# Hints and detailed description could be found in INSTALLVMS.TXT file.
20#
21######################################################################
22# Configuration section.
23######################################################################
Bram Moolenaar071d4272004-06-13 20:20:40 +000024
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 Moolenaar88c86eb2019-01-17 17:13:30 +010046# NOTE: since Vim 7.3 GTK 2+ is used that is not ported to VMS,
47# therefore this option should not be used
Bram Moolenaar071d4272004-06-13 20:20:40 +000048# GTK = YES
49
Bram Moolenaar8d343302005-07-12 22:46:17 +000050# GUI/Motif with XPM
51# If you have XPM installed you might want to build Motif version with toolbar
52# XPM = YES
53
Bram Moolenaar071d4272004-06-13 20:20:40 +000054# Comment out if you want the compiler version with :ver command.
55# NOTE: This part can make some complications if you're using some
56# predefined symbols/flags for your compiler. If does, just leave behind
Bram Moolenaar84a05ac2013-05-06 04:24:17 +020057# the comment variable CCVER.
Bram Moolenaar071d4272004-06-13 20:20:40 +000058CCVER = YES
59
60# Uncomment if want a debug version. Resulting executable is DVIM.EXE
61# Development purpose only! Normally, it should not be defined. !!!
Bram Moolenaar206f0112014-03-12 16:51:55 +010062# DEBUG = YES
Bram Moolenaar071d4272004-06-13 20:20:40 +000063
64# Languages support for Perl, Python, TCL etc.
65# If you don't need it really, leave them behind the comment.
66# You will need related libraries, include files etc.
67# VIM_TCL = YES
68# VIM_PERL = YES
69# VIM_PYTHON = YES
70# VIM_RUBY = YES
Bram Moolenaar071d4272004-06-13 20:20:40 +000071
72# X Input Method. For entering special languages like chinese and
73# Japanese. Please define just one: VIM_XIM or VIM_HANGULIN
74# If you don't need it really, leave it behind the comment.
75# VIM_XIM = YES
76
77# Internal Hangul input method. GUI only.
78# If you don't need it really, leave it behind the comment.
79# VIM_HANGULIN = YES
80
81# Allow any white space to separate the fields in a tags file
82# When not defined, only a TAB is allowed.
83# VIM_TAG_ANYWHITE = YES
84
Bram Moolenaarf878bcf2010-07-30 22:29:41 +020085# Allow FEATURE_MZSCHEME
86# VIM_MZSCHEME = YES
87
Bram Moolenaar206f0112014-03-12 16:51:55 +010088# Use ICONV
89# VIM_ICONV = YES
90
Bram Moolenaar071d4272004-06-13 20:20:40 +000091######################################################################
92# Directory, library and include files configuration section.
93# Normally you need not to change anything below. !
94# These may need to be defined if things are not in standard locations
95#
96# You can find some explanation in INSTALLVMS.TXT
97######################################################################
98
99# Compiler setup
100
Bram Moolenaar3d20ca12006-11-28 16:43:58 +0000101.IFDEF MMSVAX
Bram Moolenaar071d4272004-06-13 20:20:40 +0000102.IFDEF DECC # VAX with DECC
Bram Moolenaar206f0112014-03-12 16:51:55 +0100103CC_DEF = cc # /decc # some versions require /decc switch but when it is not required /ver might fail
Bram Moolenaar071d4272004-06-13 20:20:40 +0000104PREFIX = /prefix=all
Bram Moolenaar206f0112014-03-12 16:51:55 +0100105OPTIMIZE= /noopt # do not optimize on VAX. The compiler has hard time with crypto functions
Bram Moolenaar071d4272004-06-13 20:20:40 +0000106.ELSE # VAX with VAXC
107CC_DEF = cc
108PREFIX =
Bram Moolenaar206f0112014-03-12 16:51:55 +0100109OPTIMIZE= /noopt
Bram Moolenaar071d4272004-06-13 20:20:40 +0000110CCVER =
111.ENDIF
Bram Moolenaar206f0112014-03-12 16:51:55 +0100112.ELSE # AXP and IA64 with DECC
Bram Moolenaar071d4272004-06-13 20:20:40 +0000113CC_DEF = cc
114PREFIX = /prefix=all
Bram Moolenaar206f0112014-03-12 16:51:55 +0100115OPTIMIZE= /opt
Bram Moolenaar071d4272004-06-13 20:20:40 +0000116.ENDIF
117
Bram Moolenaar206f0112014-03-12 16:51:55 +0100118
Bram Moolenaar071d4272004-06-13 20:20:40 +0000119LD_DEF = link
120C_INC = [.proto]
121
Bram Moolenaar071d4272004-06-13 20:20:40 +0000122.IFDEF DEBUG
123DEBUG_DEF = ,"DEBUG"
124TARGET = dvim.exe
125CFLAGS = /debug/noopt$(PREFIX)
126LDFLAGS = /debug
127.ELSE
128TARGET = vim.exe
Bram Moolenaar206f0112014-03-12 16:51:55 +0100129CFLAGS = $(OPTIMIZE)$(PREFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000130LDFLAGS =
131.ENDIF
132
133# Predefined VIM directories
134# Please, use $VIM and $VIMRUNTIME logicals instead
135VIMLOC = ""
136VIMRUN = ""
137
138CONFIG_H = os_vms_conf.h
139
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000140# GTK or XPM but not both
Bram Moolenaar071d4272004-06-13 20:20:40 +0000141.IFDEF GTK
142.IFDEF GUI
143.ELSE
144GUI = YES
145.ENDIF
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000146.IFDEF XPM
147XPM = ""
148.ENDIF
149.ENDIF
150
151.IFDEF XPM
152.IFDEF GUI
153.ELSE
154GUI = YES
155.ENDIF
156.IFDEF GTK
157GTK = ""
Bram Moolenaar071d4272004-06-13 20:20:40 +0000158.ENDIF
Bram Moolenaar8d343302005-07-12 22:46:17 +0000159.ENDIF
Bram Moolenaar071d4272004-06-13 20:20:40 +0000160
161.IFDEF GUI
162# X/Motif/GTK executable (also works in terminal mode )
163
164.IFDEF GTK
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000165# NOTE: you need to set up your GTK_DIR (GTK root directory), because it is
166# unique on every system - logicals are not accepted
Bram Moolenaar8d343302005-07-12 22:46:17 +0000167# please note: directory should end with . in order to /trans=conc work
Bram Moolenaar3d20ca12006-11-28 16:43:58 +0000168# This value for GTK_DIR is an example.
Bram Moolenaar88c86eb2019-01-17 17:13:30 +0100169GTK_DIR = DKA0:[WORK.GTK1210.]
Bram Moolenaar071d4272004-06-13 20:20:40 +0000170DEFS = "HAVE_CONFIG_H","FEAT_GUI_GTK"
171LIBS = ,OS_VMS_GTK.OPT/OPT
172GUI_FLAG = /name=(as_is,short)/float=ieee/ieee=denorm
Bram Moolenaar8d343302005-07-12 22:46:17 +0000173GUI_SRC = gui.c gui_gtk.c gui_gtk_f.c gui_gtk_x11.c gui_beval.c pty.c
174GUI_OBJ = gui.obj gui_gtk.obj gui_gtk_f.obj gui_gtk_x11.obj gui_beval.obj pty.obj
Bram Moolenaar071d4272004-06-13 20:20:40 +0000175GUI_INC = ,"/gtk_root/gtk","/gtk_root/glib"
176# GUI_INC_VER is used just for :ver information
177# this string should escape from C and DCL in the same time
178GUI_INC_VER= ,\""/gtk_root/gtk\"",\""/gtk_root/glib\""
Bram Moolenaar8d343302005-07-12 22:46:17 +0000179.ELSE
Bram Moolenaar071d4272004-06-13 20:20:40 +0000180MOTIF = YES
Bram Moolenaar8d343302005-07-12 22:46:17 +0000181.IFDEF XPM
182DEFS = "HAVE_CONFIG_H","FEAT_GUI_MOTIF","HAVE_XPM"
Bram Moolenaar88c86eb2019-01-17 17:13:30 +0100183XPM_INC = ,[.xpm.include]
Bram Moolenaar8d343302005-07-12 22:46:17 +0000184.ELSE
Bram Moolenaar071d4272004-06-13 20:20:40 +0000185DEFS = "HAVE_CONFIG_H","FEAT_GUI_MOTIF"
Bram Moolenaar88c86eb2019-01-17 17:13:30 +0100186XPM_INC =
Bram Moolenaar8d343302005-07-12 22:46:17 +0000187.ENDIF
Bram Moolenaar071d4272004-06-13 20:20:40 +0000188LIBS = ,OS_VMS_MOTIF.OPT/OPT
189GUI_FLAG =
Bram Moolenaar8d343302005-07-12 22:46:17 +0000190GUI_SRC = gui.c gui_motif.c gui_x11.c gui_beval.c gui_xmdlg.c gui_xmebw.c
191GUI_OBJ = gui.obj gui_motif.obj gui_x11.obj gui_beval.obj gui_xmdlg.obj gui_xmebw.obj
Bram Moolenaar071d4272004-06-13 20:20:40 +0000192GUI_INC =
193.ENDIF
194
195# You need to define these variables if you do not have DECW files
196# at standard location
197GUI_INC_DIR = ,decw$include:
198# GUI_LIB_DIR = ,sys$library:
199
200.ELSE
201# Character terminal only executable
202DEFS = "HAVE_CONFIG_H"
203LIBS =
204.ENDIF
205
206.IFDEF VIM_PERL
207# Perl related setup.
208PERL = perl
209PERL_DEF = ,"FEAT_PERL"
210PERL_SRC = if_perlsfio.c if_perl.xs
211PERL_OBJ = if_perlsfio.obj if_perl.obj
212PERL_LIB = ,OS_VMS_PERL.OPT/OPT
213PERL_INC = ,dka0:[perlbuild.perl.lib.vms_axp.5_6_1.core]
214.ENDIF
215
216.IFDEF VIM_PYTHON
217# Python related setup.
218PYTHON_DEF = ,"FEAT_PYTHON"
219PYTHON_SRC = if_python.c
220PYTHON_OBJ = if_python.obj
221PYTHON_LIB = ,OS_VMS_PYTHON.OPT/OPT
222PYTHON_INC = ,PYTHON_INCLUDE
223.ENDIF
224
225.IFDEF VIM_TCL
226# TCL related setup.
227TCL_DEF = ,"FEAT_TCL"
228TCL_SRC = if_tcl.c
229TCL_OBJ = if_tcl.obj
230TCL_LIB = ,OS_VMS_TCL.OPT/OPT
231TCL_INC = ,dka0:[tcl80.generic]
232.ENDIF
233
Bram Moolenaar071d4272004-06-13 20:20:40 +0000234.IFDEF VIM_RUBY
235# RUBY related setup.
236RUBY_DEF = ,"FEAT_RUBY"
237RUBY_SRC = if_ruby.c
238RUBY_OBJ = if_ruby.obj
239RUBY_LIB = ,OS_VMS_RUBY.OPT/OPT
240RUBY_INC =
241.ENDIF
242
243.IFDEF VIM_XIM
244# XIM related setup.
245.IFDEF GUI
246XIM_DEF = ,"FEAT_XIM"
247.ENDIF
248.ENDIF
249
250.IFDEF VIM_HANGULIN
251# HANGULIN related setup.
252.IFDEF GUI
253HANGULIN_DEF = ,"FEAT_HANGULIN"
254HANGULIN_SRC = hangulin.c
255HANGULIN_OBJ = hangulin.obj
256.ENDIF
257.ENDIF
258
Bram Moolenaarf878bcf2010-07-30 22:29:41 +0200259.IFDEF VIM_MZSCHEME
260# MZSCHEME related setup
261MZSCH_DEF = ,"FEAT_MZSCHEME"
262MZSCH_SRC = if_mzsch.c
263MZSCH_OBJ = if_mzsch.obj
264.ENDIF
Bram Moolenaar071d4272004-06-13 20:20:40 +0000265
Bram Moolenaar206f0112014-03-12 16:51:55 +0100266.IFDEF VIM_ICONV
267# ICONV related setup
268ICONV_DEF = ,"USE_ICONV"
269.ENDIF
270
Bram Moolenaar88c86eb2019-01-17 17:13:30 +0100271# XDIFF related setup.
272XDIFF_SRC = xdiffi.c,xemit.c,xprepare.c,xutils.c,xhistogram.c,xpatience.c
273XDIFF_OBJ = xdiffi.obj,xemit.obj,xprepare.obj,xutils.obj,xhistogram.obj,xpatience.obj
274XDIFF_INC = ,[.xdiff]
275
Bram Moolenaar071d4272004-06-13 20:20:40 +0000276######################################################################
277# End of configuration section.
278# Please, do not change anything below without programming experience.
279######################################################################
280
Bram Moolenaar071d4272004-06-13 20:20:40 +0000281MODEL_DEF = "FEAT_$(MODEL)",
282
283# These go into pathdef.c
284VIMUSER = "''F$EDIT(F$GETJPI(" ","USERNAME"),"TRIM")'"
285VIMHOST = "''F$TRNLNM("SYS$NODE")'''F$TRNLNM("UCX$INET_HOST")'.''F$TRNLNM("UCX$INET_DOMAIN")'"
286
287.SUFFIXES : .obj .c
288
Bram Moolenaar206f0112014-03-12 16:51:55 +0100289ALL_CFLAGS = /def=($(MODEL_DEF)$(DEFS)$(DEBUG_DEF)$(PERL_DEF)$(PYTHON_DEF) -
Bram Moolenaar88c86eb2019-01-17 17:13:30 +0100290 $(TCL_DEF)$(RUBY_DEF)$(XIM_DEF)$(HANGULIN_DEF)$(TAG_DEF)$(MZSCH_DEF) -
291 $(ICONV_DEF)) -
Bram Moolenaar071d4272004-06-13 20:20:40 +0000292 $(CFLAGS)$(GUI_FLAG) -
Bram Moolenaar88c86eb2019-01-17 17:13:30 +0100293 /include=($(C_INC)$(GUI_INC_DIR)$(GUI_INC)$(PERL_INC)$(PYTHON_INC) -
294 $(TCL_INC)$(XDIFF_INC)$(XPM_INC))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000295
296# CFLAGS displayed in :ver information
297# It is specially formated for correct display of unix like includes
298# as $(GUI_INC) - replaced with $(GUI_INC_VER)
299# Otherwise should not be any other difference.
Bram Moolenaar206f0112014-03-12 16:51:55 +0100300ALL_CFLAGS_VER = /def=($(MODEL_DEF)$(DEFS)$(DEBUG_DEF)$(PERL_DEF)$(PYTHON_DEF) -
Bram Moolenaar88c86eb2019-01-17 17:13:30 +0100301 $(TCL_DEF)$(RUBY_DEF)$(XIM_DEF)$(HANGULIN_DEF)$(TAG_DEF)$(MZSCH_DEF) -
302 $(ICONV_DEF)) -
Bram Moolenaar071d4272004-06-13 20:20:40 +0000303 $(CFLAGS)$(GUI_FLAG) -
Bram Moolenaar88c86eb2019-01-17 17:13:30 +0100304 /include=($(C_INC)$(GUI_INC_DIR)$(GUI_INC_VER)$(PERL_INC)$(PYTHON_INC) -
305 $(TCL_INC)$(XDIFF_INC)$(XPM_INC))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000306
307ALL_LIBS = $(LIBS) $(GUI_LIB_DIR) $(GUI_LIB) \
Bram Moolenaar85b11762016-02-27 18:13:23 +0100308 $(PERL_LIB) $(PYTHON_LIB) $(TCL_LIB) $(RUBY_LIB)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000309
Bram Moolenaar4ad62152019-08-17 14:38:55 +0200310SRC = arabic.c arglist.c autocmd.c beval.c blob.c blowfish.c buffer.c \
Bram Moolenaar66b51422019-08-18 21:44:12 +0200311 change.c charset.c cmdexpand.c cmdhist.c crypt.c crypt_zip.c \
Bram Moolenaar7528d1f2019-09-19 23:06:20 +0200312 debugger.c dict.c diff.c digraph.c drawline.c drawscreen.c edit.c \
313 eval.c evalbuffer.c evalfunc.c \
Bram Moolenaar261f3462019-09-07 15:45:32 +0200314 evalvars.c evalwindow.c ex_cmds.c ex_cmds2.c ex_docmd.c ex_eval.c \
315 ex_getln.c \
Bram Moolenaarb005cd82019-09-04 15:54:55 +0200316 if_cscope.c if_xcmdsrv.c fileio.c filepath.c, findfile.c fold.c \
317 getchar.c hardcopy.c hashtab.c highlight.c \
Bram Moolenaar66b51422019-08-18 21:44:12 +0200318 indent.c insexpand.c json.c list.c main.c map.c mark.c menu.c mbyte.c \
Bram Moolenaarb20b9e12019-09-21 20:48:04 +0200319 memfile.c memline.c message.c misc1.c misc2.c mouse.c move.c normal.c \
320 ops.c \
Bram Moolenaardac13472019-09-16 21:06:21 +0200321 option.c optionstr.c popupmnu.c popupwin.c profiler.c quickfix.c \
Bram Moolenaar4aea03e2019-09-25 22:37:17 +0200322 regexp.c register.c scriptfile.c \
Bram Moolenaar46a426c2019-09-27 12:41:56 +0200323 search.c session.c sha256.c sign.c spell.c spellfile.c spellsuggest.c \
324 syntax.c tag.c \
Bram Moolenaar4ad62152019-08-17 14:38:55 +0200325 term.c termlib.c testing.c textprop.c ui.c undo.c usercmd.c \
326 userfunc.c version.c viminfo.c screen.c window.c os_unix.c os_vms.c \
327 pathdef.c \
Bram Moolenaar85b11762016-02-27 18:13:23 +0100328 $(GUI_SRC) $(PERL_SRC) $(PYTHON_SRC) $(TCL_SRC) \
Bram Moolenaar88c86eb2019-01-17 17:13:30 +0100329 $(RUBY_SRC) $(HANGULIN_SRC) $(MZSCH_SRC) $(XDIFF_SRC)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000330
Bram Moolenaar4ad62152019-08-17 14:38:55 +0200331OBJ = arabic.obj arglist.obj autocmd.obj beval.obj blob.obj blowfish.obj \
Bram Moolenaar66b51422019-08-18 21:44:12 +0200332 buffer.obj change.obj charset.obj cmdexpand.obj cmdhist.obj \
333 crypt.obj crypt_zip.obj debugger.obj dict.obj diff.obj digraph.obj \
Bram Moolenaar7528d1f2019-09-19 23:06:20 +0200334 drawline.obj drawscreen.obj edit.obj eval.obj evalbuffer.obj \
335 evalfunc.obj evalvars.obj evalwindow.obj ex_cmds.obj ex_cmds2.obj \
Bram Moolenaarb005cd82019-09-04 15:54:55 +0200336 ex_docmd.obj ex_eval.obj ex_getln.obj if_cscope.obj if_xcmdsrv.obj \
337 fileio.obj filepath.obj \
Bram Moolenaar66b51422019-08-18 21:44:12 +0200338 findfile.obj fold.obj getchar.obj hardcopy.obj hashtab.obj \
339 highlight.obj indent.obj insexpand.obj json.obj list.obj main.obj \
340 map.obj mark.obj menu.obj memfile.obj memline.obj message.obj \
Bram Moolenaarb20b9e12019-09-21 20:48:04 +0200341 misc1.obj misc2.obj mouse.obj move.obj mbyte.obj normal.obj ops.obj \
342 option.obj \
Bram Moolenaardac13472019-09-16 21:06:21 +0200343 optionstr.obj popupmnu.obj popupwin.obj profiler.obj quickfix.obj \
Bram Moolenaar4aea03e2019-09-25 22:37:17 +0200344 regexp.obj register.obj scriptfile.obj \
Bram Moolenaar66b51422019-08-18 21:44:12 +0200345 search.obj session.obj sha256.obj sign.obj spell.obj spellfile.obj \
Bram Moolenaar46a426c2019-09-27 12:41:56 +0200346 spellsuggest.obj syntax.obj tag.obj term.obj termlib.obj testing.obj \
347 textprop.obj \
Bram Moolenaar66b51422019-08-18 21:44:12 +0200348 ui.obj undo.obj usercmd.obj userfunc.obj screen.obj version.obj \
Bram Moolenaar84538072019-07-28 14:15:42 +0200349 viminfo.obj window.obj os_unix.obj os_vms.obj pathdef.obj if_mzsch.obj \
Bram Moolenaar85b11762016-02-27 18:13:23 +0100350 $(GUI_OBJ) $(PERL_OBJ) $(PYTHON_OBJ) $(TCL_OBJ) \
Bram Moolenaar88c86eb2019-01-17 17:13:30 +0100351 $(RUBY_OBJ) $(HANGULIN_OBJ) $(MZSCH_OBJ) $(XDIFF_OBJ)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000352
353# Default target is making the executable
354all : [.auto]config.h mmk_compat motif_env gtk_env perl_env python_env tcl_env ruby_env $(TARGET)
355 ! $@
356
357[.auto]config.h : $(CONFIG_H)
358 copy/nolog $(CONFIG_H) [.auto]config.h
359
360mmk_compat :
361 -@ open/write pd pathdef.c
362 -@ write pd "/* Empty file to satisfy MMK depend. */"
Bram Moolenaarcf0dfa22007-05-10 18:52:16 +0000363 -@ write pd "/* It will be overwritten later on... */"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000364 -@ close pd
365clean :
366 -@ if "''F$SEARCH("*.exe")'" .NES. "" then delete/noconfirm/nolog *.exe;*
367 -@ if "''F$SEARCH("*.obj")'" .NES. "" then delete/noconfirm/nolog *.obj;*
368 -@ if "''F$SEARCH("[.auto]config.h")'" .NES. "" then delete/noconfirm/nolog [.auto]config.h;*
369 -@ if "''F$SEARCH("pathdef.c")'" .NES. "" then delete/noconfirm/nolog pathdef.c;*
370 -@ if "''F$SEARCH("if_perl.c")'" .NES. "" then delete/noconfirm/nolog if_perl.c;*
371 -@ if "''F$SEARCH("*.opt")'" .NES. "" then delete/noconfirm/nolog *.opt;*
372
373# Link the target
374$(TARGET) : $(OBJ)
375 $(LD_DEF) $(LDFLAGS) /exe=$(TARGET) $+ $(ALL_LIBS)
376
377.c.obj :
378 $(CC_DEF) $(ALL_CFLAGS) $<
379
380pathdef.c : check_ccver $(CONFIG_H)
381 -@ write sys$output "creating PATHDEF.C file."
382 -@ open/write pd pathdef.c
383 -@ write pd "/* pathdef.c -- DO NOT EDIT! */"
384 -@ write pd "/* This file is automatically created by MAKE_VMS.MMS"
385 -@ write pd " * Change the file MAKE_VMS.MMS Only. */"
386 -@ write pd "typedef unsigned char char_u;"
387 -@ write pd "char_u *default_vim_dir = (char_u *)"$(VIMLOC)";"
388 -@ write pd "char_u *default_vimruntime_dir = (char_u *)"$(VIMRUN)";"
389 -@ write pd "char_u *all_cflags = (char_u *)""$(CC_DEF)$(ALL_CFLAGS_VER)"";"
390 -@ write pd "char_u *all_lflags = (char_u *)""$(LD_DEF)$(LDFLAGS) /exe=$(TARGET) *.OBJ $(ALL_LIBS)"";"
391 -@ write pd "char_u *compiler_version = (char_u *) ""''CC_VER'"";"
392 -@ write pd "char_u *compiled_user = (char_u *) "$(VIMUSER)";"
Bram Moolenaar3d20ca12006-11-28 16:43:58 +0000393 -@ write pd "char_u *compiled_sys = (char_u *) "$(VIMHOST)";"
394 -@ write pd "char_u *compiled_arch = (char_u *) ""$(MMSARCH_NAME)"";"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000395 -@ close pd
396
397if_perl.c : if_perl.xs
398 -@ $(PERL) PERL_ROOT:[LIB.ExtUtils]xsubpp -prototypes -typemap -
399 PERL_ROOT:[LIB.ExtUtils]typemap if_perl.xs >> $@
400
401make_vms.mms :
402 -@ write sys$output "The name of the makefile MUST be <MAKE_VMS.MMS> !!!"
403
404.IFDEF CCVER
405# This part can make some complications if you're using some predefined
406# symbols/flags for your compiler. If does, just comment out CCVER variable
407check_ccver :
408 -@ define sys$output cc_ver.tmp
409 -@ $(CC_DEF)/version
410 -@ deassign sys$output
411 -@ open/read file cc_ver.tmp
412 -@ read file CC_VER
413 -@ close file
414 -@ delete/noconfirm/nolog cc_ver.tmp.*
415.ELSE
416check_ccver :
417 -@ !
418.ENDIF
419
420.IFDEF MOTIF
421motif_env :
Bram Moolenaar8d343302005-07-12 22:46:17 +0000422.IFDEF XPM
423 -@ write sys$output "using DECW/Motif/XPM environment."
424.ELSE
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000425 -@ write sys$output "using DECW/Motif environment."
Bram Moolenaar8d343302005-07-12 22:46:17 +0000426.ENDIF
Bram Moolenaar071d4272004-06-13 20:20:40 +0000427 -@ write sys$output "creating OS_VMS_MOTIF.OPT file."
428 -@ open/write opt_file OS_VMS_MOTIF.OPT
429 -@ write opt_file "sys$share:decw$xmlibshr12.exe/share,-"
430 -@ write opt_file "sys$share:decw$xtlibshrr5.exe/share,-"
431 -@ write opt_file "sys$share:decw$xlibshr.exe/share"
432 -@ close opt_file
433.ELSE
434motif_env :
435 -@ !
436.ENDIF
437
438
439.IFDEF GTK
440gtk_env :
441 -@ write sys$output "using GTK environment:"
442 -@ define/nolog gtk_root /trans=conc $(GTK_DIR)
443 -@ show logical gtk_root
444 -@ write sys$output " include path: "$(GUI_INC)""
445 -@ write sys$output "creating OS_VMS_GTK.OPT file."
446 -@ open/write opt_file OS_VMS_GTK.OPT
447 -@ write opt_file "gtk_root:[glib]libglib.exe /share,-"
448 -@ write opt_file "gtk_root:[glib.gmodule]libgmodule.exe /share,-"
449 -@ write opt_file "gtk_root:[gtk.gdk]libgdk.exe /share,-"
450 -@ write opt_file "gtk_root:[gtk.gtk]libgtk.exe /share,-"
451 -@ write opt_file "sys$share:decw$xmlibshr12.exe/share,-"
452 -@ write opt_file "sys$share:decw$xtlibshrr5.exe/share,-"
453 -@ write opt_file "sys$share:decw$xlibshr.exe/share"
454 -@ close opt_file
455.ELSE
456gtk_env :
457 -@ !
458.ENDIF
459
460.IFDEF VIM_PERL
461perl_env :
462 -@ write sys$output "using PERL environment:"
463 -@ show logical PERLSHR
464 -@ write sys$output " include path: ""$(PERL_INC)"""
465 -@ show symbol perl
466 -@ open/write pd if_perl.c
467 -@ write pd "/* Empty file to satisfy MMK depend. */"
Bram Moolenaarcf0dfa22007-05-10 18:52:16 +0000468 -@ write pd "/* It will be overwritten later on... */"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000469 -@ close pd
470 -@ write sys$output "creating OS_VMS_PERL.OPT file."
471 -@ open/write opt_file OS_VMS_PERL.OPT
472 -@ write opt_file "PERLSHR /share"
473 -@ close opt_file
474.ELSE
475perl_env :
476 -@ !
477.ENDIF
478
479.IFDEF VIM_PYTHON
480python_env :
481 -@ write sys$output "using PYTHON environment:"
482 -@ show logical PYTHON_INCLUDE
483 -@ show logical PYTHON_OLB
484 -@ write sys$output "creating OS_VMS_PYTHON.OPT file."
485 -@ open/write opt_file OS_VMS_PYTHON.OPT
486 -@ write opt_file "PYTHON_OLB:PYTHON.OLB /share"
487 -@ close opt_file
488.ELSE
489python_env :
490 -@ !
491.ENDIF
492
493.IFDEF VIM_TCL
494tcl_env :
495 -@ write sys$output "using TCL environment:"
496 -@ show logical TCLSHR
497 -@ write sys$output " include path: ""$(TCL_INC)"""
498 -@ write sys$output "creating OS_VMS_TCL.OPT file."
499 -@ open/write opt_file OS_VMS_TCL.OPT
500 -@ write opt_file "TCLSHR /share"
501 -@ close opt_file
502.ELSE
503tcl_env :
504 -@ !
505.ENDIF
506
507.IFDEF VIM_RUBY
508ruby_env :
509 -@ write sys$output "using RUBY environment:"
510 -@ write sys$output " include path: ""$(RUBY_INC)"""
511 -@ write sys$output "creating OS_VMS_RUBY.OPT file."
512 -@ open/write opt_file OS_VMS_RUBY.OPT
513 -@ write opt_file "RUBYSHR /share"
514 -@ close opt_file
515.ELSE
516ruby_env :
517 -@ !
518.ENDIF
519
Bram Moolenaar3b98b832016-07-02 21:45:17 +0200520arabic.obj : arabic.c vim.h
Bram Moolenaar4ad62152019-08-17 14:38:55 +0200521arglist.obj : arglist.c vim.h [.auto]config.h feature.h os_unix.h
Bram Moolenaar3e460fd2019-01-26 16:21:07 +0100522autocmd.obj : autocmd.c vim.h [.auto]config.h feature.h os_unix.h
Bram Moolenaar05a29072019-01-18 22:59:53 +0100523blowfish.obj : blowfish.c vim.h [.auto]config.h feature.h os_unix.h
524blob.obj : blob.c vim.h [.auto]config.h feature.h os_unix.h
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000525buffer.obj : buffer.c vim.h [.auto]config.h feature.h os_unix.h \
526 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100527 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaare37368c2019-03-22 16:57:45 +0100528 globals.h version.h
Bram Moolenaarec28d152019-05-11 18:36:34 +0200529change.obj : change.c vim.h [.auto]config.h feature.h os_unix.h \
530 ascii.h keymap.h term.h macros.h structs.h regexp.h \
531 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
532 globals.h version.h
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000533charset.obj : charset.c vim.h [.auto]config.h feature.h os_unix.h \
534 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100535 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaare37368c2019-03-22 16:57:45 +0100536 globals.h
Bram Moolenaar66b51422019-08-18 21:44:12 +0200537cmdexpand.obj : cmdexpand.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 beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
540 globals.h
Bram Moolenaard7663c22019-08-06 21:59:57 +0200541cmdhist.obj : cmdhist.c vim.h [.auto]config.h feature.h os_unix.h \
542 ascii.h keymap.h term.h macros.h structs.h regexp.h \
543 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
544 globals.h
Bram Moolenaarde5e2c22016-11-04 20:35:31 +0100545crypt.obj : crypt.c vim.h [.auto]config.h feature.h os_unix.h \
546 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100547 beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \
Bram Moolenaare37368c2019-03-22 16:57:45 +0100548 globals.h
Bram Moolenaarde5e2c22016-11-04 20:35:31 +0100549crypt_zip.obj : crypt_zip.c vim.h [.auto]config.h feature.h os_unix.h \
550 ascii.h keymap.h term.h macros.h option.h structs.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100551 regexp.h gui.h beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h \
Bram Moolenaare37368c2019-03-22 16:57:45 +0100552 proto.h globals.h
Bram Moolenaareead75c2019-04-21 11:35:00 +0200553debugger.obj : debugger.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 beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
556 globals.h
Bram Moolenaarde5e2c22016-11-04 20:35:31 +0100557dict.obj : dict.c vim.h [.auto]config.h feature.h os_unix.h \
558 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100559 beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \
Bram Moolenaare37368c2019-03-22 16:57:45 +0100560 globals.h
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000561diff.obj : diff.c vim.h [.auto]config.h feature.h os_unix.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100562 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
Bram Moolenaar7528d1f2019-09-19 23:06:20 +0200563 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000564digraph.obj : digraph.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 Moolenaare37368c2019-03-22 16:57:45 +0100567 globals.h
Bram Moolenaar7528d1f2019-09-19 23:06:20 +0200568drawline.obj : drawline.c vim.h [.auto]config.h feature.h os_unix.h \
569 ascii.h keymap.h term.h macros.h structs.h regexp.h \
570 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
571 globals.h
572drawscreen.obj : drawscreen.c vim.h [.auto]config.h feature.h os_unix.h \
573 ascii.h keymap.h term.h macros.h structs.h regexp.h \
574 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
575 globals.h
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000576edit.obj : edit.c vim.h [.auto]config.h feature.h os_unix.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100577 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
Bram Moolenaar7528d1f2019-09-19 23:06:20 +0200578 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000579eval.obj : eval.c vim.h [.auto]config.h feature.h os_unix.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100580 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
Bram Moolenaar14184a32019-02-16 15:10:30 +0100581 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h \
Bram Moolenaare37368c2019-03-22 16:57:45 +0100582 version.h
Bram Moolenaar261f3462019-09-07 15:45:32 +0200583evalbuffer.obj : evalbuffer.c vim.h [.auto]config.h feature.h os_unix.h \
584 ascii.h keymap.h term.h macros.h option.h structs.h \
585 regexp.h gui.h beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h \
586 proto.h globals.h version.h
Bram Moolenaarde5e2c22016-11-04 20:35:31 +0100587evalfunc.obj : evalfunc.c vim.h [.auto]config.h feature.h os_unix.h \
588 ascii.h keymap.h term.h macros.h option.h structs.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100589 regexp.h gui.h beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h \
Bram Moolenaare37368c2019-03-22 16:57:45 +0100590 proto.h globals.h version.h
Bram Moolenaar0522ba02019-08-27 22:48:30 +0200591evalvars.obj : evalvars.c vim.h [.auto]config.h feature.h os_unix.h \
592 ascii.h keymap.h term.h macros.h option.h structs.h \
593 regexp.h gui.h beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h \
594 proto.h globals.h version.h
Bram Moolenaar261f3462019-09-07 15:45:32 +0200595evalwindow.obj : evalwindow.c vim.h [.auto]config.h feature.h os_unix.h \
596 ascii.h keymap.h term.h macros.h option.h structs.h \
597 regexp.h gui.h beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h \
598 proto.h globals.h version.h
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000599ex_cmds.obj : ex_cmds.c vim.h [.auto]config.h feature.h os_unix.h \
600 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100601 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaare37368c2019-03-22 16:57:45 +0100602 globals.h version.h
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000603ex_cmds2.obj : ex_cmds2.c vim.h [.auto]config.h feature.h os_unix.h \
604 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100605 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaare37368c2019-03-22 16:57:45 +0100606 globals.h version.h
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000607ex_docmd.obj : ex_docmd.c vim.h [.auto]config.h feature.h os_unix.h \
608 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100609 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaare37368c2019-03-22 16:57:45 +0100610 globals.h
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000611ex_eval.obj : ex_eval.c vim.h [.auto]config.h feature.h os_unix.h \
612 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100613 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaare37368c2019-03-22 16:57:45 +0100614 globals.h
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000615ex_getln.obj : ex_getln.c vim.h [.auto]config.h feature.h os_unix.h \
616 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100617 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaare37368c2019-03-22 16:57:45 +0100618 globals.h
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000619fileio.obj : fileio.c vim.h [.auto]config.h feature.h os_unix.h \
620 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100621 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaare37368c2019-03-22 16:57:45 +0100622 globals.h
Bram Moolenaarb005cd82019-09-04 15:54:55 +0200623filepath.obj : filepath.c vim.h [.auto]config.h feature.h os_unix.h \
624 ascii.h keymap.h term.h macros.h structs.h regexp.h \
625 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
626 globals.h
Bram Moolenaar5fd0f502019-02-13 23:13:28 +0100627findfile.obj : findfile.c vim.h [.auto]config.h feature.h os_unix.h \
628 ascii.h keymap.h term.h macros.h structs.h regexp.h \
629 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaare37368c2019-03-22 16:57:45 +0100630 globals.h
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000631fold.obj : fold.c vim.h [.auto]config.h feature.h os_unix.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100632 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
Bram Moolenaar7528d1f2019-09-19 23:06:20 +0200633 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000634getchar.obj : getchar.c vim.h [.auto]config.h feature.h os_unix.h \
635 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100636 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaare37368c2019-03-22 16:57:45 +0100637 globals.h
Bram Moolenaar58d98232005-07-23 22:25:46 +0000638hardcopy.obj : hardcopy.c vim.h [.auto]config.h feature.h os_unix.h \
639 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100640 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaare37368c2019-03-22 16:57:45 +0100641 globals.h
Bram Moolenaar76b92b22006-03-24 22:46:53 +0000642hashtab.obj : hashtab.c vim.h [.auto]config.h feature.h os_unix.h \
Bram Moolenaar383f9bc2005-01-19 22:18:32 +0000643 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100644 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaare37368c2019-03-22 16:57:45 +0100645 globals.h
Bram Moolenaarf9cc9f22019-07-14 21:29:22 +0200646highlight.obj : highlight.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 beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
649 globals.h
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000650if_cscope.obj : if_cscope.c vim.h [.auto]config.h feature.h os_unix.h \
651 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100652 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaare37368c2019-03-22 16:57:45 +0100653 globals.h if_cscope.h
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000654if_xcmdsrv.obj : if_xcmdsrv.c vim.h [.auto]config.h feature.h os_unix.h \
655 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100656 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaare37368c2019-03-22 16:57:45 +0100657 globals.h version.h
Bram Moolenaarf878bcf2010-07-30 22:29:41 +0200658if_mzsch.obj : if_mzsch.c vim.h [.auto]config.h feature.h os_unix.h \
659 ascii.h keymap.h term.h macros.h option.h structs.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100660 regexp.h gui.h beval.h [.proto]gui_beval.pro ex_cmds.h proto.h \
Bram Moolenaare37368c2019-03-22 16:57:45 +0100661 globals.h if_mzsch.h
Bram Moolenaar4b471622019-01-31 13:48:09 +0100662indent.obj : indent.c vim.h [.auto]config.h feature.h os_unix.h
Bram Moolenaar7591bb32019-03-30 13:53:47 +0100663insexpand.obj : insexpand.c vim.h [.auto]config.h feature.h os_unix.h
Bram Moolenaar520e1e42016-01-23 19:46:28 +0100664json.obj : json.c vim.h [.auto]config.h feature.h os_unix.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100665 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
Bram Moolenaar14184a32019-02-16 15:10:30 +0100666 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h \
Bram Moolenaare37368c2019-03-22 16:57:45 +0100667 version.h
Bram Moolenaarde5e2c22016-11-04 20:35:31 +0100668list.obj : list.c vim.h [.auto]config.h feature.h os_unix.h \
669 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100670 beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \
Bram Moolenaare37368c2019-03-22 16:57:45 +0100671 globals.h
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000672main.obj : main.c vim.h [.auto]config.h feature.h os_unix.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100673 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
Bram Moolenaar14184a32019-02-16 15:10:30 +0100674 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h \
Bram Moolenaare37368c2019-03-22 16:57:45 +0100675 arabic.c
Bram Moolenaarb66bab32019-08-01 14:28:24 +0200676map.obj : map.c vim.h [.auto]config.h feature.h os_unix.h \
677 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
678 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000679mark.obj : mark.c vim.h [.auto]config.h feature.h os_unix.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100680 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
Bram Moolenaar7528d1f2019-09-19 23:06:20 +0200681 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000682memfile.obj : memfile.c vim.h [.auto]config.h feature.h os_unix.h \
683 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100684 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaare37368c2019-03-22 16:57:45 +0100685 globals.h
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000686memline.obj : memline.c vim.h [.auto]config.h feature.h os_unix.h \
687 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100688 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaare37368c2019-03-22 16:57:45 +0100689 globals.h
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000690menu.obj : menu.c vim.h [.auto]config.h feature.h os_unix.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100691 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
Bram Moolenaar7528d1f2019-09-19 23:06:20 +0200692 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000693message.obj : message.c vim.h [.auto]config.h feature.h os_unix.h \
694 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100695 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaare37368c2019-03-22 16:57:45 +0100696 globals.h
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000697misc1.obj : misc1.c vim.h [.auto]config.h feature.h os_unix.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100698 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
Bram Moolenaar14184a32019-02-16 15:10:30 +0100699 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h \
Bram Moolenaare37368c2019-03-22 16:57:45 +0100700 version.h
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000701misc2.obj : misc2.c vim.h [.auto]config.h feature.h os_unix.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100702 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
Bram Moolenaar7528d1f2019-09-19 23:06:20 +0200703 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h
Bram Moolenaarb20b9e12019-09-21 20:48:04 +0200704mouse.obj : mouse.c vim.h [.auto]config.h feature.h os_unix.h \
705 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
706 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000707move.obj : move.c vim.h [.auto]config.h feature.h os_unix.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100708 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
Bram Moolenaar7528d1f2019-09-19 23:06:20 +0200709 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000710mbyte.obj : mbyte.c vim.h [.auto]config.h feature.h os_unix.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100711 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
Bram Moolenaar7528d1f2019-09-19 23:06:20 +0200712 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000713normal.obj : normal.c vim.h [.auto]config.h feature.h os_unix.h \
714 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100715 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaare37368c2019-03-22 16:57:45 +0100716 globals.h
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000717ops.obj : ops.c vim.h [.auto]config.h feature.h os_unix.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100718 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
Bram Moolenaar7528d1f2019-09-19 23:06:20 +0200719 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000720option.obj : option.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 Moolenaar0eddca42019-09-12 22:26:43 +0200723 globals.h optiondefs.h
Bram Moolenaardac13472019-09-16 21:06:21 +0200724optionstr.obj : optionstr.c vim.h [.auto]config.h feature.h os_unix.h \
725 ascii.h keymap.h term.h macros.h structs.h regexp.h \
726 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
727 globals.h
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000728os_unix.obj : os_unix.c vim.h [.auto]config.h feature.h os_unix.h \
729 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100730 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaare37368c2019-03-22 16:57:45 +0100731 globals.h os_unixx.h
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000732os_vms.obj : os_vms.c vim.h [.auto]config.h feature.h os_unix.h \
733 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100734 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaare37368c2019-03-22 16:57:45 +0100735 globals.h os_unixx.h
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000736pathdef.obj : pathdef.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 Moolenaare37368c2019-03-22 16:57:45 +0100739 globals.h
Bram Moolenaar76b92b22006-03-24 22:46:53 +0000740popupmnu.obj : popupmnu.c vim.h [.auto]config.h feature.h os_unix.h \
Bram Moolenaardf1bdc92006-02-23 21:32:16 +0000741 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 Moolenaare37368c2019-03-22 16:57:45 +0100743 globals.h
Bram Moolenaar4d784b22019-05-25 19:51:39 +0200744popupwin.obj : popupwin.c vim.h [.auto]config.h feature.h os_unix.h \
745 ascii.h keymap.h term.h macros.h structs.h regexp.h \
746 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
747 globals.h
Bram Moolenaarfa55cfc2019-07-13 22:59:32 +0200748profiler.obj : profiler.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 beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
751 globals.h
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000752quickfix.obj : quickfix.c vim.h [.auto]config.h feature.h os_unix.h \
753 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100754 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaare37368c2019-03-22 16:57:45 +0100755 globals.h
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000756regexp.obj : regexp.c vim.h [.auto]config.h feature.h os_unix.h \
757 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100758 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaare37368c2019-03-22 16:57:45 +0100759 globals.h
Bram Moolenaar4aea03e2019-09-25 22:37:17 +0200760register.obj : register.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 beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
763 globals.h
Bram Moolenaar307c5a52019-08-25 15:41:00 +0200764scriptfile.obj : scriptfile.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 beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
767 globals.h
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000768screen.obj : screen.c vim.h [.auto]config.h feature.h os_unix.h \
769 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100770 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaare37368c2019-03-22 16:57:45 +0100771 globals.h
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000772search.obj : search.c vim.h [.auto]config.h feature.h os_unix.h \
773 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100774 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaare37368c2019-03-22 16:57:45 +0100775 globals.h
Bram Moolenaar84538072019-07-28 14:15:42 +0200776session.obj : session.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 beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
779 globals.h
Bram Moolenaarde5e2c22016-11-04 20:35:31 +0100780sha256.obj : sha256.c vim.h [.auto]config.h feature.h os_unix.h \
781 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100782 beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \
Bram Moolenaare37368c2019-03-22 16:57:45 +0100783 globals.h
Bram Moolenaarbbea4702019-01-01 13:20:31 +0100784sign.obj : sign.c vim.h [.auto]config.h feature.h os_unix.h \
785 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \
786 beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \
Bram Moolenaare37368c2019-03-22 16:57:45 +0100787 globals.h
Bram Moolenaar217ad922005-03-20 22:37:15 +0000788spell.obj : spell.c vim.h [.auto]config.h feature.h os_unix.h \
789 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100790 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaare37368c2019-03-22 16:57:45 +0100791 globals.h
Bram Moolenaarde5e2c22016-11-04 20:35:31 +0100792spellfile.obj : spellfile.c vim.h [.auto]config.h feature.h os_unix.h \
793 ascii.h keymap.h term.h macros.h option.h structs.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100794 regexp.h gui.h beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h \
Bram Moolenaare37368c2019-03-22 16:57:45 +0100795 proto.h globals.h
Bram Moolenaar46a426c2019-09-27 12:41:56 +0200796spellsuggest.obj : spellsuggest.c vim.h [.auto]config.h feature.h os_unix.h \
797 ascii.h keymap.h term.h macros.h option.h structs.h \
798 regexp.h gui.h beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h \
799 proto.h globals.h
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000800syntax.obj : syntax.c vim.h [.auto]config.h feature.h os_unix.h \
801 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100802 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaare37368c2019-03-22 16:57:45 +0100803 globals.h
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000804tag.obj : tag.c vim.h [.auto]config.h feature.h os_unix.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100805 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
Bram Moolenaar7528d1f2019-09-19 23:06:20 +0200806 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000807term.obj : term.c vim.h [.auto]config.h feature.h os_unix.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100808 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
Bram Moolenaar7528d1f2019-09-19 23:06:20 +0200809 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000810termlib.obj : termlib.c vim.h [.auto]config.h feature.h os_unix.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100811 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
Bram Moolenaar7528d1f2019-09-19 23:06:20 +0200812 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h
Bram Moolenaarecaa70e2019-07-14 14:55:39 +0200813testing.obj : testing.c vim.h [.auto]config.h feature.h os_unix.h \
814 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
Bram Moolenaar7528d1f2019-09-19 23:06:20 +0200815 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h
Bram Moolenaar88c86eb2019-01-17 17:13:30 +0100816textprop.obj : textprop.c vim.h [.auto]config.h feature.h os_unix.h \
817 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
Bram Moolenaar7528d1f2019-09-19 23:06:20 +0200818 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000819ui.obj : ui.c vim.h [.auto]config.h feature.h os_unix.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100820 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
Bram Moolenaar7528d1f2019-09-19 23:06:20 +0200821 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000822undo.obj : undo.c vim.h [.auto]config.h feature.h os_unix.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100823 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
Bram Moolenaar7528d1f2019-09-19 23:06:20 +0200824 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h
Bram Moolenaarac9fb182019-04-27 13:04:13 +0200825usercmd.obj : usercmd.c vim.h [.auto]config.h feature.h os_unix.h \
826 ascii.h keymap.h term.h macros.h option.h structs.h \
827 regexp.h gui.h beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h \
828 proto.h globals.h
Bram Moolenaarde5e2c22016-11-04 20:35:31 +0100829userfunc.obj : userfunc.c vim.h [.auto]config.h feature.h os_unix.h \
830 ascii.h keymap.h term.h macros.h option.h structs.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100831 regexp.h gui.h beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h \
Bram Moolenaare37368c2019-03-22 16:57:45 +0100832 proto.h globals.h
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000833version.obj : version.c vim.h [.auto]config.h feature.h os_unix.h \
834 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100835 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaare37368c2019-03-22 16:57:45 +0100836 globals.h version.h
Bram Moolenaardefa0672019-07-21 19:25:37 +0200837viminfo.obj : viminfo.c vim.h [.auto]config.h feature.h os_unix.h \
838 ascii.h keymap.h term.h macros.h structs.h regexp.h \
839 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
840 globals.h version.h
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000841window.obj : window.c vim.h [.auto]config.h feature.h os_unix.h \
842 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100843 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaare37368c2019-03-22 16:57:45 +0100844 globals.h
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000845gui.obj : gui.c vim.h [.auto]config.h feature.h os_unix.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100846 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
Bram Moolenaar7528d1f2019-09-19 23:06:20 +0200847 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000848gui_gtk.obj : gui_gtk.c gui_gtk_f.h vim.h [.auto]config.h feature.h \
849 os_unix.h ascii.h keymap.h term.h macros.h structs.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100850 regexp.h gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h \
Bram Moolenaare37368c2019-03-22 16:57:45 +0100851 proto.h globals.h [-.pixmaps]stock_icons.h
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000852gui_gtk_f.obj : gui_gtk_f.c vim.h [.auto]config.h feature.h os_unix.h \
853 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100854 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaare37368c2019-03-22 16:57:45 +0100855 globals.h gui_gtk_f.h
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000856gui_motif.obj : gui_motif.c vim.h [.auto]config.h feature.h os_unix.h \
857 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100858 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaare37368c2019-03-22 16:57:45 +0100859 globals.h [-.pixmaps]alert.xpm [-.pixmaps]error.xpm \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000860 [-.pixmaps]generic.xpm [-.pixmaps]info.xpm [-.pixmaps]quest.xpm
861gui_athena.obj : gui_athena.c vim.h [.auto]config.h feature.h os_unix.h \
862 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100863 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaare37368c2019-03-22 16:57:45 +0100864 globals.h gui_at_sb.h
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000865gui_gtk_x11.obj : gui_gtk_x11.c vim.h [.auto]config.h feature.h os_unix.h \
866 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100867 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaare37368c2019-03-22 16:57:45 +0100868 globals.h gui_gtk_f.h [-.runtime]vim32x32.xpm \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000869 [-.runtime]vim16x16.xpm [-.runtime]vim48x48.xpm
870gui_x11.obj : gui_x11.c vim.h [.auto]config.h feature.h os_unix.h \
871 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100872 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaare37368c2019-03-22 16:57:45 +0100873 globals.h [-.runtime]vim32x32.xpm \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000874 [-.runtime]vim16x16.xpm [-.runtime]vim48x48.xpm [-.pixmaps]tb_new.xpm \
875 [-.pixmaps]tb_open.xpm [-.pixmaps]tb_close.xpm [-.pixmaps]tb_save.xpm \
876 [-.pixmaps]tb_print.xpm [-.pixmaps]tb_cut.xpm [-.pixmaps]tb_copy.xpm \
877 [-.pixmaps]tb_paste.xpm [-.pixmaps]tb_find.xpm \
878 [-.pixmaps]tb_find_next.xpm [-.pixmaps]tb_find_prev.xpm \
879 [-.pixmaps]tb_find_help.xpm [-.pixmaps]tb_exit.xpm \
880 [-.pixmaps]tb_undo.xpm [-.pixmaps]tb_redo.xpm [-.pixmaps]tb_help.xpm \
881 [-.pixmaps]tb_macro.xpm [-.pixmaps]tb_make.xpm \
882 [-.pixmaps]tb_save_all.xpm [-.pixmaps]tb_jump.xpm \
883 [-.pixmaps]tb_ctags.xpm [-.pixmaps]tb_load_session.xpm \
884 [-.pixmaps]tb_save_session.xpm [-.pixmaps]tb_new_session.xpm \
885 [-.pixmaps]tb_blank.xpm [-.pixmaps]tb_maximize.xpm \
886 [-.pixmaps]tb_split.xpm [-.pixmaps]tb_minimize.xpm \
887 [-.pixmaps]tb_shell.xpm [-.pixmaps]tb_replace.xpm \
888 [-.pixmaps]tb_vsplit.xpm [-.pixmaps]tb_maxwidth.xpm \
889 [-.pixmaps]tb_minwidth.xpm
890gui_at_sb.obj : gui_at_sb.c vim.h [.auto]config.h feature.h os_unix.h \
891 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100892 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaare37368c2019-03-22 16:57:45 +0100893 globals.h gui_at_sb.h
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000894gui_at_fs.obj : gui_at_fs.c vim.h [.auto]config.h feature.h os_unix.h \
895 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100896 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaare37368c2019-03-22 16:57:45 +0100897 globals.h gui_at_sb.h
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000898pty.obj : pty.c vim.h [.auto]config.h feature.h os_unix.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100899 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
Bram Moolenaar7528d1f2019-09-19 23:06:20 +0200900 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000901hangulin.obj : hangulin.c vim.h [.auto]config.h feature.h os_unix.h \
902 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100903 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaare37368c2019-03-22 16:57:45 +0100904 globals.h
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000905if_perl.obj : [.auto]if_perl.c vim.h [.auto]config.h feature.h os_unix.h \
906 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100907 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaare37368c2019-03-22 16:57:45 +0100908 globals.h
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000909if_perlsfio.obj : if_perlsfio.c vim.h [.auto]config.h feature.h os_unix.h \
910 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100911 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaare37368c2019-03-22 16:57:45 +0100912 globals.h
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000913if_python.obj : if_python.c vim.h [.auto]config.h feature.h os_unix.h \
914 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100915 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaare37368c2019-03-22 16:57:45 +0100916 globals.h
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000917if_tcl.obj : if_tcl.c vim.h [.auto]config.h feature.h os_unix.h \
918 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100919 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaare37368c2019-03-22 16:57:45 +0100920 globals.h
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000921if_ruby.obj : if_ruby.c vim.h [.auto]config.h feature.h os_unix.h \
922 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100923 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaare37368c2019-03-22 16:57:45 +0100924 globals.h version.h
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100925beval.obj : beval.c vim.h [.auto]config.h feature.h os_unix.h \
926 ascii.h keymap.h term.h macros.h structs.h regexp.h \
927 gui.h beval.h option.h ex_cmds.h proto.h \
Bram Moolenaare37368c2019-03-22 16:57:45 +0100928 globals.h
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000929gui_beval.obj : gui_beval.c vim.h [.auto]config.h feature.h os_unix.h \
930 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100931 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaare37368c2019-03-22 16:57:45 +0100932 globals.h
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000933workshop.obj : workshop.c [.auto]config.h integration.h vim.h feature.h \
934 os_unix.h ascii.h keymap.h term.h macros.h structs.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100935 regexp.h gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h \
Bram Moolenaare37368c2019-03-22 16:57:45 +0100936 proto.h globals.h version.h workshop.h
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000937wsdebug.obj : wsdebug.c
938integration.obj : integration.c vim.h [.auto]config.h feature.h os_unix.h \
939 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100940 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaare37368c2019-03-22 16:57:45 +0100941 globals.h integration.h
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000942netbeans.obj : netbeans.c vim.h [.auto]config.h feature.h os_unix.h \
943 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100944 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaare37368c2019-03-22 16:57:45 +0100945 globals.h version.h
Bram Moolenaar88c86eb2019-01-17 17:13:30 +0100946gui_xmdlg.obj : gui_xmdlg.c [.auto]config.h vim.h feature.h os_unix.h
947gui_xmebw.obj : gui_xmebw.c [.auto]config.h vim.h feature.h os_unix.h
948xdiffi.obj : [.xdiff]xdiffi.c [.xdiff]xinclude.h [.auto]config.h vim.h feature.h os_unix.h
949xemit.obj : [.xdiff]xemit.c [.xdiff]xinclude.h [.auto]config.h vim.h feature.h os_unix.h
950xprepare.obj : [.xdiff]xprepare.c [.xdiff]xinclude.h [.auto]config.h vim.h feature.h os_unix.h
951xutils.obj : [.xdiff]xutils.c [.xdiff]xinclude.h [.auto]config.h vim.h feature.h os_unix.h
952xhistogram.obj : [.xdiff]xhistogram.c [.xdiff]xinclude.h [.auto]config.h vim.h feature.h os_unix.h
953xpatience.obj : [.xdiff]xpatience.c [.xdiff]xinclude.h [.auto]config.h vim.h feature.h os_unix.h