blob: 18c68142d8cf609e36f2c815e5ad615333c144af [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 Moolenaar05a29072019-01-18 22:59:53 +01005# Last change: 2019 Jan 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 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
259.IFDEF VIM_TAG_ANYWHITE
260# TAG_ANYWHITE related setup.
261TAG_DEF = ,"FEAT_TAG_ANYWHITE"
262.ENDIF
263
Bram Moolenaarf878bcf2010-07-30 22:29:41 +0200264.IFDEF VIM_MZSCHEME
265# MZSCHEME related setup
266MZSCH_DEF = ,"FEAT_MZSCHEME"
267MZSCH_SRC = if_mzsch.c
268MZSCH_OBJ = if_mzsch.obj
269.ENDIF
Bram Moolenaar071d4272004-06-13 20:20:40 +0000270
Bram Moolenaar206f0112014-03-12 16:51:55 +0100271.IFDEF VIM_ICONV
272# ICONV related setup
273ICONV_DEF = ,"USE_ICONV"
274.ENDIF
275
Bram Moolenaar88c86eb2019-01-17 17:13:30 +0100276# XDIFF related setup.
277XDIFF_SRC = xdiffi.c,xemit.c,xprepare.c,xutils.c,xhistogram.c,xpatience.c
278XDIFF_OBJ = xdiffi.obj,xemit.obj,xprepare.obj,xutils.obj,xhistogram.obj,xpatience.obj
279XDIFF_INC = ,[.xdiff]
280
Bram Moolenaar071d4272004-06-13 20:20:40 +0000281######################################################################
282# End of configuration section.
283# Please, do not change anything below without programming experience.
284######################################################################
285
Bram Moolenaar071d4272004-06-13 20:20:40 +0000286MODEL_DEF = "FEAT_$(MODEL)",
287
288# These go into pathdef.c
289VIMUSER = "''F$EDIT(F$GETJPI(" ","USERNAME"),"TRIM")'"
290VIMHOST = "''F$TRNLNM("SYS$NODE")'''F$TRNLNM("UCX$INET_HOST")'.''F$TRNLNM("UCX$INET_DOMAIN")'"
291
292.SUFFIXES : .obj .c
293
Bram Moolenaar206f0112014-03-12 16:51:55 +0100294ALL_CFLAGS = /def=($(MODEL_DEF)$(DEFS)$(DEBUG_DEF)$(PERL_DEF)$(PYTHON_DEF) -
Bram Moolenaar88c86eb2019-01-17 17:13:30 +0100295 $(TCL_DEF)$(RUBY_DEF)$(XIM_DEF)$(HANGULIN_DEF)$(TAG_DEF)$(MZSCH_DEF) -
296 $(ICONV_DEF)) -
Bram Moolenaar071d4272004-06-13 20:20:40 +0000297 $(CFLAGS)$(GUI_FLAG) -
Bram Moolenaar88c86eb2019-01-17 17:13:30 +0100298 /include=($(C_INC)$(GUI_INC_DIR)$(GUI_INC)$(PERL_INC)$(PYTHON_INC) -
299 $(TCL_INC)$(XDIFF_INC)$(XPM_INC))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000300
301# CFLAGS displayed in :ver information
302# It is specially formated for correct display of unix like includes
303# as $(GUI_INC) - replaced with $(GUI_INC_VER)
304# Otherwise should not be any other difference.
Bram Moolenaar206f0112014-03-12 16:51:55 +0100305ALL_CFLAGS_VER = /def=($(MODEL_DEF)$(DEFS)$(DEBUG_DEF)$(PERL_DEF)$(PYTHON_DEF) -
Bram Moolenaar88c86eb2019-01-17 17:13:30 +0100306 $(TCL_DEF)$(RUBY_DEF)$(XIM_DEF)$(HANGULIN_DEF)$(TAG_DEF)$(MZSCH_DEF) -
307 $(ICONV_DEF)) -
Bram Moolenaar071d4272004-06-13 20:20:40 +0000308 $(CFLAGS)$(GUI_FLAG) -
Bram Moolenaar88c86eb2019-01-17 17:13:30 +0100309 /include=($(C_INC)$(GUI_INC_DIR)$(GUI_INC_VER)$(PERL_INC)$(PYTHON_INC) -
310 $(TCL_INC)$(XDIFF_INC)$(XPM_INC))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000311
312ALL_LIBS = $(LIBS) $(GUI_LIB_DIR) $(GUI_LIB) \
Bram Moolenaar85b11762016-02-27 18:13:23 +0100313 $(PERL_LIB) $(PYTHON_LIB) $(TCL_LIB) $(RUBY_LIB)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000314
Bram Moolenaar05a29072019-01-18 22:59:53 +0100315SRC = arabic.c beval.obj blob.c blowfish.c buffer.c charset.c crypt.c crypt_zip.c dict.c diff.c digraph.c edit.c eval.c \
316 evalfunc.c 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 \
317 getchar.c 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 +0100318 misc2.c move.c normal.c ops.c option.c popupmnu.c quickfix.c regexp.c search.c sha256.c sign.c \
Bram Moolenaar88c86eb2019-01-17 17:13:30 +0100319 spell.c spellfile.c syntax.c tag.c term.c termlib.c textprop.c ui.c undo.c userfunc.c version.c screen.c \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000320 window.c os_unix.c os_vms.c pathdef.c \
Bram Moolenaar85b11762016-02-27 18:13:23 +0100321 $(GUI_SRC) $(PERL_SRC) $(PYTHON_SRC) $(TCL_SRC) \
Bram Moolenaar88c86eb2019-01-17 17:13:30 +0100322 $(RUBY_SRC) $(HANGULIN_SRC) $(MZSCH_SRC) $(XDIFF_SRC)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000323
Bram Moolenaar05a29072019-01-18 22:59:53 +0100324OBJ = arabic.obj beval.obj blob.obj blowfish.obj buffer.obj charset.obj crypt.obj crypt_zip.obj dict.obj diff.obj digraph.obj \
325 edit.obj eval.obj evalfunc.obj ex_cmds.obj ex_cmds2.obj ex_docmd.obj ex_eval.obj ex_getln.obj if_cscope.obj \
Bram Moolenaarde5e2c22016-11-04 20:35:31 +0100326 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 +0000327 menu.obj memfile.obj memline.obj message.obj misc1.obj misc2.obj \
Bram Moolenaar76b92b22006-03-24 22:46:53 +0000328 move.obj mbyte.obj normal.obj ops.obj option.obj popupmnu.obj quickfix.obj \
Bram Moolenaar88c86eb2019-01-17 17:13:30 +0100329 regexp.obj search.obj sha256.obj sign.obj spell.obj spellfile.obj syntax.obj tag.obj term.obj termlib.obj textprop.obj \
Bram Moolenaarde5e2c22016-11-04 20:35:31 +0100330 ui.obj undo.obj userfunc.obj screen.obj version.obj window.obj os_unix.obj \
Bram Moolenaarf878bcf2010-07-30 22:29:41 +0200331 os_vms.obj pathdef.obj if_mzsch.obj\
Bram Moolenaar85b11762016-02-27 18:13:23 +0100332 $(GUI_OBJ) $(PERL_OBJ) $(PYTHON_OBJ) $(TCL_OBJ) \
Bram Moolenaar88c86eb2019-01-17 17:13:30 +0100333 $(RUBY_OBJ) $(HANGULIN_OBJ) $(MZSCH_OBJ) $(XDIFF_OBJ)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000334
335# Default target is making the executable
336all : [.auto]config.h mmk_compat motif_env gtk_env perl_env python_env tcl_env ruby_env $(TARGET)
337 ! $@
338
339[.auto]config.h : $(CONFIG_H)
340 copy/nolog $(CONFIG_H) [.auto]config.h
341
342mmk_compat :
343 -@ open/write pd pathdef.c
344 -@ write pd "/* Empty file to satisfy MMK depend. */"
Bram Moolenaarcf0dfa22007-05-10 18:52:16 +0000345 -@ write pd "/* It will be overwritten later on... */"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000346 -@ close pd
347clean :
348 -@ if "''F$SEARCH("*.exe")'" .NES. "" then delete/noconfirm/nolog *.exe;*
349 -@ if "''F$SEARCH("*.obj")'" .NES. "" then delete/noconfirm/nolog *.obj;*
350 -@ if "''F$SEARCH("[.auto]config.h")'" .NES. "" then delete/noconfirm/nolog [.auto]config.h;*
351 -@ if "''F$SEARCH("pathdef.c")'" .NES. "" then delete/noconfirm/nolog pathdef.c;*
352 -@ if "''F$SEARCH("if_perl.c")'" .NES. "" then delete/noconfirm/nolog if_perl.c;*
353 -@ if "''F$SEARCH("*.opt")'" .NES. "" then delete/noconfirm/nolog *.opt;*
354
355# Link the target
356$(TARGET) : $(OBJ)
357 $(LD_DEF) $(LDFLAGS) /exe=$(TARGET) $+ $(ALL_LIBS)
358
359.c.obj :
360 $(CC_DEF) $(ALL_CFLAGS) $<
361
362pathdef.c : check_ccver $(CONFIG_H)
363 -@ write sys$output "creating PATHDEF.C file."
364 -@ open/write pd pathdef.c
365 -@ write pd "/* pathdef.c -- DO NOT EDIT! */"
366 -@ write pd "/* This file is automatically created by MAKE_VMS.MMS"
367 -@ write pd " * Change the file MAKE_VMS.MMS Only. */"
368 -@ write pd "typedef unsigned char char_u;"
369 -@ write pd "char_u *default_vim_dir = (char_u *)"$(VIMLOC)";"
370 -@ write pd "char_u *default_vimruntime_dir = (char_u *)"$(VIMRUN)";"
371 -@ write pd "char_u *all_cflags = (char_u *)""$(CC_DEF)$(ALL_CFLAGS_VER)"";"
372 -@ write pd "char_u *all_lflags = (char_u *)""$(LD_DEF)$(LDFLAGS) /exe=$(TARGET) *.OBJ $(ALL_LIBS)"";"
373 -@ write pd "char_u *compiler_version = (char_u *) ""''CC_VER'"";"
374 -@ write pd "char_u *compiled_user = (char_u *) "$(VIMUSER)";"
Bram Moolenaar3d20ca12006-11-28 16:43:58 +0000375 -@ write pd "char_u *compiled_sys = (char_u *) "$(VIMHOST)";"
376 -@ write pd "char_u *compiled_arch = (char_u *) ""$(MMSARCH_NAME)"";"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000377 -@ close pd
378
379if_perl.c : if_perl.xs
380 -@ $(PERL) PERL_ROOT:[LIB.ExtUtils]xsubpp -prototypes -typemap -
381 PERL_ROOT:[LIB.ExtUtils]typemap if_perl.xs >> $@
382
383make_vms.mms :
384 -@ write sys$output "The name of the makefile MUST be <MAKE_VMS.MMS> !!!"
385
386.IFDEF CCVER
387# This part can make some complications if you're using some predefined
388# symbols/flags for your compiler. If does, just comment out CCVER variable
389check_ccver :
390 -@ define sys$output cc_ver.tmp
391 -@ $(CC_DEF)/version
392 -@ deassign sys$output
393 -@ open/read file cc_ver.tmp
394 -@ read file CC_VER
395 -@ close file
396 -@ delete/noconfirm/nolog cc_ver.tmp.*
397.ELSE
398check_ccver :
399 -@ !
400.ENDIF
401
402.IFDEF MOTIF
403motif_env :
Bram Moolenaar8d343302005-07-12 22:46:17 +0000404.IFDEF XPM
405 -@ write sys$output "using DECW/Motif/XPM environment."
406.ELSE
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000407 -@ write sys$output "using DECW/Motif environment."
Bram Moolenaar8d343302005-07-12 22:46:17 +0000408.ENDIF
Bram Moolenaar071d4272004-06-13 20:20:40 +0000409 -@ write sys$output "creating OS_VMS_MOTIF.OPT file."
410 -@ open/write opt_file OS_VMS_MOTIF.OPT
411 -@ write opt_file "sys$share:decw$xmlibshr12.exe/share,-"
412 -@ write opt_file "sys$share:decw$xtlibshrr5.exe/share,-"
413 -@ write opt_file "sys$share:decw$xlibshr.exe/share"
414 -@ close opt_file
415.ELSE
416motif_env :
417 -@ !
418.ENDIF
419
420
421.IFDEF GTK
422gtk_env :
423 -@ write sys$output "using GTK environment:"
424 -@ define/nolog gtk_root /trans=conc $(GTK_DIR)
425 -@ show logical gtk_root
426 -@ write sys$output " include path: "$(GUI_INC)""
427 -@ write sys$output "creating OS_VMS_GTK.OPT file."
428 -@ open/write opt_file OS_VMS_GTK.OPT
429 -@ write opt_file "gtk_root:[glib]libglib.exe /share,-"
430 -@ write opt_file "gtk_root:[glib.gmodule]libgmodule.exe /share,-"
431 -@ write opt_file "gtk_root:[gtk.gdk]libgdk.exe /share,-"
432 -@ write opt_file "gtk_root:[gtk.gtk]libgtk.exe /share,-"
433 -@ write opt_file "sys$share:decw$xmlibshr12.exe/share,-"
434 -@ write opt_file "sys$share:decw$xtlibshrr5.exe/share,-"
435 -@ write opt_file "sys$share:decw$xlibshr.exe/share"
436 -@ close opt_file
437.ELSE
438gtk_env :
439 -@ !
440.ENDIF
441
442.IFDEF VIM_PERL
443perl_env :
444 -@ write sys$output "using PERL environment:"
445 -@ show logical PERLSHR
446 -@ write sys$output " include path: ""$(PERL_INC)"""
447 -@ show symbol perl
448 -@ open/write pd if_perl.c
449 -@ write pd "/* Empty file to satisfy MMK depend. */"
Bram Moolenaarcf0dfa22007-05-10 18:52:16 +0000450 -@ write pd "/* It will be overwritten later on... */"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000451 -@ close pd
452 -@ write sys$output "creating OS_VMS_PERL.OPT file."
453 -@ open/write opt_file OS_VMS_PERL.OPT
454 -@ write opt_file "PERLSHR /share"
455 -@ close opt_file
456.ELSE
457perl_env :
458 -@ !
459.ENDIF
460
461.IFDEF VIM_PYTHON
462python_env :
463 -@ write sys$output "using PYTHON environment:"
464 -@ show logical PYTHON_INCLUDE
465 -@ show logical PYTHON_OLB
466 -@ write sys$output "creating OS_VMS_PYTHON.OPT file."
467 -@ open/write opt_file OS_VMS_PYTHON.OPT
468 -@ write opt_file "PYTHON_OLB:PYTHON.OLB /share"
469 -@ close opt_file
470.ELSE
471python_env :
472 -@ !
473.ENDIF
474
475.IFDEF VIM_TCL
476tcl_env :
477 -@ write sys$output "using TCL environment:"
478 -@ show logical TCLSHR
479 -@ write sys$output " include path: ""$(TCL_INC)"""
480 -@ write sys$output "creating OS_VMS_TCL.OPT file."
481 -@ open/write opt_file OS_VMS_TCL.OPT
482 -@ write opt_file "TCLSHR /share"
483 -@ close opt_file
484.ELSE
485tcl_env :
486 -@ !
487.ENDIF
488
489.IFDEF VIM_RUBY
490ruby_env :
491 -@ write sys$output "using RUBY environment:"
492 -@ write sys$output " include path: ""$(RUBY_INC)"""
493 -@ write sys$output "creating OS_VMS_RUBY.OPT file."
494 -@ open/write opt_file OS_VMS_RUBY.OPT
495 -@ write opt_file "RUBYSHR /share"
496 -@ close opt_file
497.ELSE
498ruby_env :
499 -@ !
500.ENDIF
501
Bram Moolenaar3b98b832016-07-02 21:45:17 +0200502arabic.obj : arabic.c vim.h
Bram Moolenaar05a29072019-01-18 22:59:53 +0100503blowfish.obj : blowfish.c vim.h [.auto]config.h feature.h os_unix.h
504blob.obj : blob.c vim.h [.auto]config.h feature.h os_unix.h
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000505buffer.obj : buffer.c vim.h [.auto]config.h feature.h os_unix.h \
506 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100507 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000508 globals.h farsi.h arabic.h version.h
509charset.obj : charset.c vim.h [.auto]config.h feature.h os_unix.h \
510 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100511 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000512 globals.h farsi.h arabic.h
Bram Moolenaarde5e2c22016-11-04 20:35:31 +0100513crypt.obj : crypt.c vim.h [.auto]config.h feature.h os_unix.h \
514 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100515 beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \
Bram Moolenaarde5e2c22016-11-04 20:35:31 +0100516 globals.h farsi.h arabic.h
517crypt_zip.obj : crypt_zip.c vim.h [.auto]config.h feature.h os_unix.h \
518 ascii.h keymap.h term.h macros.h option.h structs.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100519 regexp.h gui.h beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h \
Bram Moolenaarde5e2c22016-11-04 20:35:31 +0100520 proto.h globals.h farsi.h arabic.h
521dict.obj : dict.c vim.h [.auto]config.h feature.h os_unix.h \
522 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100523 beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \
Bram Moolenaarde5e2c22016-11-04 20:35:31 +0100524 globals.h farsi.h arabic.h
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000525diff.obj : diff.c vim.h [.auto]config.h feature.h os_unix.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100526 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000527 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
528 arabic.h
529digraph.obj : digraph.c vim.h [.auto]config.h feature.h os_unix.h \
530 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100531 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000532 globals.h farsi.h arabic.h
533edit.obj : edit.c vim.h [.auto]config.h feature.h os_unix.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100534 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000535 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
536 arabic.h
537eval.obj : eval.c vim.h [.auto]config.h feature.h os_unix.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100538 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000539 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
540 arabic.h version.h
Bram Moolenaarde5e2c22016-11-04 20:35:31 +0100541evalfunc.obj : evalfunc.c vim.h [.auto]config.h feature.h os_unix.h \
542 ascii.h keymap.h term.h macros.h option.h structs.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100543 regexp.h gui.h beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h \
Bram Moolenaarde5e2c22016-11-04 20:35:31 +0100544 proto.h globals.h farsi.h arabic.h version.h
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000545ex_cmds.obj : ex_cmds.c vim.h [.auto]config.h feature.h os_unix.h \
546 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100547 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000548 globals.h farsi.h arabic.h version.h
549ex_cmds2.obj : ex_cmds2.c vim.h [.auto]config.h feature.h os_unix.h \
550 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100551 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000552 globals.h farsi.h arabic.h version.h
553ex_docmd.obj : ex_docmd.c vim.h [.auto]config.h feature.h os_unix.h \
554 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100555 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000556 globals.h farsi.h arabic.h
557ex_eval.obj : ex_eval.c vim.h [.auto]config.h feature.h os_unix.h \
558 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100559 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000560 globals.h farsi.h arabic.h
561ex_getln.obj : ex_getln.c vim.h [.auto]config.h feature.h os_unix.h \
562 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100563 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000564 globals.h farsi.h arabic.h
Bram Moolenaar3b98b832016-07-02 21:45:17 +0200565farsi.obj : farsi.c vim.h
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000566fileio.obj : fileio.c vim.h [.auto]config.h feature.h os_unix.h \
567 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100568 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000569 globals.h farsi.h arabic.h
570fold.obj : fold.c vim.h [.auto]config.h feature.h os_unix.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100571 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000572 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
573 arabic.h
574getchar.obj : getchar.c vim.h [.auto]config.h feature.h os_unix.h \
575 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100576 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000577 globals.h farsi.h arabic.h
Bram Moolenaar58d98232005-07-23 22:25:46 +0000578hardcopy.obj : hardcopy.c vim.h [.auto]config.h feature.h os_unix.h \
579 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100580 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaar58d98232005-07-23 22:25:46 +0000581 globals.h farsi.h arabic.h
Bram Moolenaar76b92b22006-03-24 22:46:53 +0000582hashtab.obj : hashtab.c vim.h [.auto]config.h feature.h os_unix.h \
Bram Moolenaar383f9bc2005-01-19 22:18:32 +0000583 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100584 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaar383f9bc2005-01-19 22:18:32 +0000585 globals.h farsi.h arabic.h
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000586if_cscope.obj : if_cscope.c vim.h [.auto]config.h feature.h os_unix.h \
587 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100588 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000589 globals.h farsi.h arabic.h if_cscope.h
590if_xcmdsrv.obj : if_xcmdsrv.c vim.h [.auto]config.h feature.h os_unix.h \
591 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100592 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000593 globals.h farsi.h arabic.h version.h
Bram Moolenaarf878bcf2010-07-30 22:29:41 +0200594if_mzsch.obj : if_mzsch.c vim.h [.auto]config.h feature.h os_unix.h \
595 ascii.h keymap.h term.h macros.h option.h structs.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100596 regexp.h gui.h beval.h [.proto]gui_beval.pro ex_cmds.h proto.h \
Bram Moolenaarf878bcf2010-07-30 22:29:41 +0200597 globals.h farsi.h arabic.h if_mzsch.h
Bram Moolenaar520e1e42016-01-23 19:46:28 +0100598json.obj : json.c vim.h [.auto]config.h feature.h os_unix.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100599 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
Bram Moolenaar520e1e42016-01-23 19:46:28 +0100600 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
601 arabic.h version.h
Bram Moolenaarde5e2c22016-11-04 20:35:31 +0100602list.obj : list.c vim.h [.auto]config.h feature.h os_unix.h \
603 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100604 beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \
Bram Moolenaarde5e2c22016-11-04 20:35:31 +0100605 globals.h farsi.h arabic.h
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000606main.obj : main.c vim.h [.auto]config.h feature.h os_unix.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100607 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000608 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
609 arabic.h farsi.c arabic.c
610mark.obj : mark.c vim.h [.auto]config.h feature.h os_unix.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100611 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000612 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
613 arabic.h
614memfile.obj : memfile.c vim.h [.auto]config.h feature.h os_unix.h \
615 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100616 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000617 globals.h farsi.h arabic.h
618memline.obj : memline.c vim.h [.auto]config.h feature.h os_unix.h \
619 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100620 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000621 globals.h farsi.h arabic.h
622menu.obj : menu.c vim.h [.auto]config.h feature.h os_unix.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100623 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000624 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
625 arabic.h
626message.obj : message.c vim.h [.auto]config.h feature.h os_unix.h \
627 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100628 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000629 globals.h farsi.h arabic.h
630misc1.obj : misc1.c vim.h [.auto]config.h feature.h os_unix.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100631 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000632 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
633 arabic.h version.h
634misc2.obj : misc2.c vim.h [.auto]config.h feature.h os_unix.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100635 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000636 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
637 arabic.h
638move.obj : move.c vim.h [.auto]config.h feature.h os_unix.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100639 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000640 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
641 arabic.h
642mbyte.obj : mbyte.c vim.h [.auto]config.h feature.h os_unix.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100643 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000644 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
645 arabic.h
646normal.obj : normal.c vim.h [.auto]config.h feature.h os_unix.h \
647 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100648 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000649 globals.h farsi.h arabic.h
650ops.obj : ops.c vim.h [.auto]config.h feature.h os_unix.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100651 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000652 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
653 arabic.h
654option.obj : option.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 Moolenaar1cd871b2004-12-19 22:46:22 +0000657 globals.h farsi.h arabic.h
658os_unix.obj : os_unix.c vim.h [.auto]config.h feature.h os_unix.h \
659 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100660 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000661 globals.h farsi.h arabic.h os_unixx.h
662os_vms.obj : os_vms.c vim.h [.auto]config.h feature.h os_unix.h \
663 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100664 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000665 globals.h farsi.h arabic.h os_unixx.h
666pathdef.obj : pathdef.c vim.h [.auto]config.h feature.h os_unix.h \
667 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100668 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000669 globals.h farsi.h arabic.h
Bram Moolenaar76b92b22006-03-24 22:46:53 +0000670popupmnu.obj : popupmnu.c vim.h [.auto]config.h feature.h os_unix.h \
Bram Moolenaardf1bdc92006-02-23 21:32:16 +0000671 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100672 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaardf1bdc92006-02-23 21:32:16 +0000673 globals.h farsi.h arabic.h
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000674quickfix.obj : quickfix.c vim.h [.auto]config.h feature.h os_unix.h \
675 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100676 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000677 globals.h farsi.h arabic.h
678regexp.obj : regexp.c vim.h [.auto]config.h feature.h os_unix.h \
679 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100680 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000681 globals.h farsi.h arabic.h
682screen.obj : screen.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 Moolenaar1cd871b2004-12-19 22:46:22 +0000685 globals.h farsi.h arabic.h
686search.obj : search.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 Moolenaar1cd871b2004-12-19 22:46:22 +0000689 globals.h farsi.h arabic.h
Bram Moolenaarde5e2c22016-11-04 20:35:31 +0100690sha256.obj : sha256.c vim.h [.auto]config.h feature.h os_unix.h \
691 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100692 beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \
Bram Moolenaarde5e2c22016-11-04 20:35:31 +0100693 globals.h farsi.h arabic.h
Bram Moolenaarbbea4702019-01-01 13:20:31 +0100694sign.obj : sign.c vim.h [.auto]config.h feature.h os_unix.h \
695 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \
696 beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \
697 globals.h farsi.h arabic.h
Bram Moolenaar217ad922005-03-20 22:37:15 +0000698spell.obj : spell.c vim.h [.auto]config.h feature.h os_unix.h \
699 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100700 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaar217ad922005-03-20 22:37:15 +0000701 globals.h farsi.h arabic.h
Bram Moolenaarde5e2c22016-11-04 20:35:31 +0100702spellfile.obj : spellfile.c vim.h [.auto]config.h feature.h os_unix.h \
703 ascii.h keymap.h term.h macros.h option.h structs.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100704 regexp.h gui.h beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h \
Bram Moolenaarde5e2c22016-11-04 20:35:31 +0100705 proto.h globals.h farsi.h arabic.h
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000706syntax.obj : syntax.c vim.h [.auto]config.h feature.h os_unix.h \
707 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100708 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000709 globals.h farsi.h arabic.h
710tag.obj : tag.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 Moolenaar1cd871b2004-12-19 22:46:22 +0000712 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
713 arabic.h
714term.obj : term.c vim.h [.auto]config.h feature.h os_unix.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100715 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000716 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
717 arabic.h
718termlib.obj : termlib.c vim.h [.auto]config.h feature.h os_unix.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100719 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000720 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
721 arabic.h
Bram Moolenaar88c86eb2019-01-17 17:13:30 +0100722textprop.obj : textprop.c vim.h [.auto]config.h feature.h os_unix.h \
723 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
724 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
725 arabic.h
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000726ui.obj : ui.c vim.h [.auto]config.h feature.h os_unix.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100727 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000728 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
729 arabic.h
730undo.obj : undo.c vim.h [.auto]config.h feature.h os_unix.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100731 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000732 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
733 arabic.h
Bram Moolenaarde5e2c22016-11-04 20:35:31 +0100734userfunc.obj : userfunc.c vim.h [.auto]config.h feature.h os_unix.h \
735 ascii.h keymap.h term.h macros.h option.h structs.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100736 regexp.h gui.h beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h \
Bram Moolenaarde5e2c22016-11-04 20:35:31 +0100737 proto.h globals.h farsi.h arabic.h
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000738version.obj : version.c vim.h [.auto]config.h feature.h os_unix.h \
739 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100740 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000741 globals.h farsi.h arabic.h version.h
742window.obj : window.c vim.h [.auto]config.h feature.h os_unix.h \
743 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100744 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000745 globals.h farsi.h arabic.h
746gui.obj : gui.c vim.h [.auto]config.h feature.h os_unix.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100747 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000748 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
749 arabic.h
750gui_gtk.obj : gui_gtk.c gui_gtk_f.h vim.h [.auto]config.h feature.h \
751 os_unix.h ascii.h keymap.h term.h macros.h structs.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100752 regexp.h gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000753 proto.h globals.h farsi.h arabic.h [-.pixmaps]stock_icons.h
754gui_gtk_f.obj : gui_gtk_f.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 gui_gtk_f.h
758gui_motif.obj : gui_motif.c vim.h [.auto]config.h feature.h os_unix.h \
759 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100760 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000761 globals.h farsi.h arabic.h [-.pixmaps]alert.xpm [-.pixmaps]error.xpm \
762 [-.pixmaps]generic.xpm [-.pixmaps]info.xpm [-.pixmaps]quest.xpm
763gui_athena.obj : gui_athena.c vim.h [.auto]config.h feature.h os_unix.h \
764 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100765 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000766 globals.h farsi.h arabic.h gui_at_sb.h
767gui_gtk_x11.obj : gui_gtk_x11.c vim.h [.auto]config.h feature.h os_unix.h \
768 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100769 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000770 globals.h farsi.h arabic.h gui_gtk_f.h [-.runtime]vim32x32.xpm \
771 [-.runtime]vim16x16.xpm [-.runtime]vim48x48.xpm
772gui_x11.obj : gui_x11.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 Moolenaar1cd871b2004-12-19 22:46:22 +0000775 globals.h farsi.h arabic.h [-.runtime]vim32x32.xpm \
776 [-.runtime]vim16x16.xpm [-.runtime]vim48x48.xpm [-.pixmaps]tb_new.xpm \
777 [-.pixmaps]tb_open.xpm [-.pixmaps]tb_close.xpm [-.pixmaps]tb_save.xpm \
778 [-.pixmaps]tb_print.xpm [-.pixmaps]tb_cut.xpm [-.pixmaps]tb_copy.xpm \
779 [-.pixmaps]tb_paste.xpm [-.pixmaps]tb_find.xpm \
780 [-.pixmaps]tb_find_next.xpm [-.pixmaps]tb_find_prev.xpm \
781 [-.pixmaps]tb_find_help.xpm [-.pixmaps]tb_exit.xpm \
782 [-.pixmaps]tb_undo.xpm [-.pixmaps]tb_redo.xpm [-.pixmaps]tb_help.xpm \
783 [-.pixmaps]tb_macro.xpm [-.pixmaps]tb_make.xpm \
784 [-.pixmaps]tb_save_all.xpm [-.pixmaps]tb_jump.xpm \
785 [-.pixmaps]tb_ctags.xpm [-.pixmaps]tb_load_session.xpm \
786 [-.pixmaps]tb_save_session.xpm [-.pixmaps]tb_new_session.xpm \
787 [-.pixmaps]tb_blank.xpm [-.pixmaps]tb_maximize.xpm \
788 [-.pixmaps]tb_split.xpm [-.pixmaps]tb_minimize.xpm \
789 [-.pixmaps]tb_shell.xpm [-.pixmaps]tb_replace.xpm \
790 [-.pixmaps]tb_vsplit.xpm [-.pixmaps]tb_maxwidth.xpm \
791 [-.pixmaps]tb_minwidth.xpm
792gui_at_sb.obj : gui_at_sb.c vim.h [.auto]config.h feature.h os_unix.h \
793 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100794 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000795 globals.h farsi.h arabic.h gui_at_sb.h
796gui_at_fs.obj : gui_at_fs.c vim.h [.auto]config.h feature.h os_unix.h \
797 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100798 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000799 globals.h farsi.h arabic.h gui_at_sb.h
800pty.obj : pty.c vim.h [.auto]config.h feature.h os_unix.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100801 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000802 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
803 arabic.h
804hangulin.obj : hangulin.c vim.h [.auto]config.h feature.h os_unix.h \
805 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100806 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000807 globals.h farsi.h arabic.h
808if_perl.obj : [.auto]if_perl.c vim.h [.auto]config.h feature.h os_unix.h \
809 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100810 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000811 globals.h farsi.h arabic.h
812if_perlsfio.obj : if_perlsfio.c vim.h [.auto]config.h feature.h os_unix.h \
813 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100814 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000815 globals.h farsi.h arabic.h
816if_python.obj : if_python.c vim.h [.auto]config.h feature.h os_unix.h \
817 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100818 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000819 globals.h farsi.h arabic.h
820if_tcl.obj : if_tcl.c vim.h [.auto]config.h feature.h os_unix.h \
821 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100822 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000823 globals.h farsi.h arabic.h
824if_ruby.obj : if_ruby.c vim.h [.auto]config.h feature.h os_unix.h \
825 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100826 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000827 globals.h farsi.h arabic.h version.h
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100828beval.obj : beval.c vim.h [.auto]config.h feature.h os_unix.h \
829 ascii.h keymap.h term.h macros.h structs.h regexp.h \
830 gui.h beval.h option.h ex_cmds.h proto.h \
831 globals.h farsi.h arabic.h
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000832gui_beval.obj : gui_beval.c vim.h [.auto]config.h feature.h os_unix.h \
833 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100834 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000835 globals.h farsi.h arabic.h
836workshop.obj : workshop.c [.auto]config.h integration.h vim.h feature.h \
837 os_unix.h ascii.h keymap.h term.h macros.h structs.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100838 regexp.h gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000839 proto.h globals.h farsi.h arabic.h version.h workshop.h
840wsdebug.obj : wsdebug.c
841integration.obj : integration.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 Moolenaar1cd871b2004-12-19 22:46:22 +0000844 globals.h farsi.h arabic.h integration.h
845netbeans.obj : netbeans.c vim.h [.auto]config.h feature.h os_unix.h \
846 ascii.h keymap.h term.h macros.h structs.h regexp.h \
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100847 gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000848 globals.h farsi.h arabic.h version.h
Bram Moolenaar88c86eb2019-01-17 17:13:30 +0100849gui_xmdlg.obj : gui_xmdlg.c [.auto]config.h vim.h feature.h os_unix.h
850gui_xmebw.obj : gui_xmebw.c [.auto]config.h vim.h feature.h os_unix.h
851xdiffi.obj : [.xdiff]xdiffi.c [.xdiff]xinclude.h [.auto]config.h vim.h feature.h os_unix.h
852xemit.obj : [.xdiff]xemit.c [.xdiff]xinclude.h [.auto]config.h vim.h feature.h os_unix.h
853xprepare.obj : [.xdiff]xprepare.c [.xdiff]xinclude.h [.auto]config.h vim.h feature.h os_unix.h
854xutils.obj : [.xdiff]xutils.c [.xdiff]xinclude.h [.auto]config.h vim.h feature.h os_unix.h
855xhistogram.obj : [.xdiff]xhistogram.c [.xdiff]xinclude.h [.auto]config.h vim.h feature.h os_unix.h
856xpatience.obj : [.xdiff]xpatience.c [.xdiff]xinclude.h [.auto]config.h vim.h feature.h os_unix.h