blob: 557cb6da46e7c55af7cac4172f62b6c814c86393 [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 Moolenaar910f66f2006-04-05 20:41:53 +00005# Last change: 2006 Mar 31
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#
16# To build: mms/descrip=Make_vms.mms
17# 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######################################################################
24# Platform selection
25# Define this if you will use the VAX platform to build.
26# VAX = YES
27
28# VMS version
29# Uncomment if you use VMS version 6.2 or older
30# OLD_VMS = YES
31
32# Compiler selection.
33# Comment out if you use the VAXC compiler
34DECC = YES
35
36# Build model selection
37# TINY - Almost no features enabled, not even multiple windows
38# SMALL - Few features enabled, as basic as possible
39# NORMAL - A default selection of features enabled
40# BIG - Many features enabled, as rich as possible. (default)
41# HUGE - All possible featues enabled.
42# Please select one of these alternatives above.
43MODEL = BIG
44
45# GUI or terminal mode executable.
46# Comment out if you want just the character terminal mode only.
47GUI = YES
48
49# GUI with GTK
50# If you have GTK installed you might want to enable this option.
51# GTK = YES
52
Bram Moolenaar8d343302005-07-12 22:46:17 +000053# GUI/Motif with XPM
54# If you have XPM installed you might want to build Motif version with toolbar
55# XPM = YES
56
Bram Moolenaar071d4272004-06-13 20:20:40 +000057# Comment out if you want the compiler version with :ver command.
58# NOTE: This part can make some complications if you're using some
59# predefined symbols/flags for your compiler. If does, just leave behind
60# the comment varialbe CCVER.
61CCVER = YES
62
63# Uncomment if want a debug version. Resulting executable is DVIM.EXE
64# Development purpose only! Normally, it should not be defined. !!!
65# DEBUG = YES
66
67# Languages support for Perl, Python, TCL etc.
68# If you don't need it really, leave them behind the comment.
69# You will need related libraries, include files etc.
70# VIM_TCL = YES
71# VIM_PERL = YES
72# VIM_PYTHON = YES
73# VIM_RUBY = YES
74# VIM_SNIFF = YES
75
76# X Input Method. For entering special languages like chinese and
77# Japanese. Please define just one: VIM_XIM or VIM_HANGULIN
78# If you don't need it really, leave it behind the comment.
79# VIM_XIM = YES
80
81# Internal Hangul input method. GUI only.
82# If you don't need it really, leave it behind the comment.
83# VIM_HANGULIN = YES
84
85# Allow any white space to separate the fields in a tags file
86# When not defined, only a TAB is allowed.
87# VIM_TAG_ANYWHITE = YES
88
89######################################################################
90# Directory, library and include files configuration section.
91# Normally you need not to change anything below. !
92# These may need to be defined if things are not in standard locations
93#
94# You can find some explanation in INSTALLVMS.TXT
95######################################################################
96
97# Compiler setup
98
99.IFDEF VAX
100.IFDEF DECC # VAX with DECC
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000101CC_DEF = cc # /decc # some system requires this switch
102 # but when it is not required /ver might fail
Bram Moolenaar071d4272004-06-13 20:20:40 +0000103PREFIX = /prefix=all
104.ELSE # VAX with VAXC
105CC_DEF = cc
106PREFIX =
107CCVER =
108.ENDIF
109.ELSE # AXP wixh DECC
110CC_DEF = cc
111PREFIX = /prefix=all
112.ENDIF
113
114LD_DEF = link
115C_INC = [.proto]
116
117.IFDEF OLD_VMS
118VMS_DEF = ,"OLD_VMS"
119.ENDIF
120
121.IFDEF DEBUG
122DEBUG_DEF = ,"DEBUG"
123TARGET = dvim.exe
124CFLAGS = /debug/noopt$(PREFIX)
125LDFLAGS = /debug
126.ELSE
127TARGET = vim.exe
128CFLAGS = /opt$(PREFIX)
129LDFLAGS =
130.ENDIF
131
132# Predefined VIM directories
133# Please, use $VIM and $VIMRUNTIME logicals instead
134VIMLOC = ""
135VIMRUN = ""
136
137CONFIG_H = os_vms_conf.h
138
139.IFDEF GTK
140.IFDEF GUI
Bram Moolenaar8d343302005-07-12 22:46:17 +0000141.IFDEF XPM
Bram Moolenaar071d4272004-06-13 20:20:40 +0000142.ELSE
143GUI = YES
144.ENDIF
145.ENDIF
Bram Moolenaar8d343302005-07-12 22:46:17 +0000146.ENDIF
Bram Moolenaar071d4272004-06-13 20:20:40 +0000147
148.IFDEF GUI
149# X/Motif/GTK executable (also works in terminal mode )
150
151.IFDEF GTK
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000152# NOTE: you need to set up your GTK_DIR (GTK root directory), because it is
153# unique on every system - logicals are not accepted
Bram Moolenaar8d343302005-07-12 22:46:17 +0000154# please note: directory should end with . in order to /trans=conc work
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000155# Example: GTK_DIR = $1$DGA104:[USERS.ZAY.WORK.GTK1210.]
156GTK_DIR = DKA0:[GTK1210.]
Bram Moolenaar071d4272004-06-13 20:20:40 +0000157DEFS = "HAVE_CONFIG_H","FEAT_GUI_GTK"
158LIBS = ,OS_VMS_GTK.OPT/OPT
159GUI_FLAG = /name=(as_is,short)/float=ieee/ieee=denorm
Bram Moolenaar8d343302005-07-12 22:46:17 +0000160GUI_SRC = gui.c gui_gtk.c gui_gtk_f.c gui_gtk_x11.c gui_beval.c pty.c
161GUI_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 +0000162GUI_INC = ,"/gtk_root/gtk","/gtk_root/glib"
163# GUI_INC_VER is used just for :ver information
164# this string should escape from C and DCL in the same time
165GUI_INC_VER= ,\""/gtk_root/gtk\"",\""/gtk_root/glib\""
Bram Moolenaar8d343302005-07-12 22:46:17 +0000166.ELSE
Bram Moolenaar071d4272004-06-13 20:20:40 +0000167MOTIF = YES
Bram Moolenaar8d343302005-07-12 22:46:17 +0000168.IFDEF XPM
169DEFS = "HAVE_CONFIG_H","FEAT_GUI_MOTIF","HAVE_XPM"
170.ELSE
Bram Moolenaar071d4272004-06-13 20:20:40 +0000171DEFS = "HAVE_CONFIG_H","FEAT_GUI_MOTIF"
Bram Moolenaar8d343302005-07-12 22:46:17 +0000172.ENDIF
Bram Moolenaar071d4272004-06-13 20:20:40 +0000173LIBS = ,OS_VMS_MOTIF.OPT/OPT
174GUI_FLAG =
Bram Moolenaar8d343302005-07-12 22:46:17 +0000175GUI_SRC = gui.c gui_motif.c gui_x11.c gui_beval.c gui_xmdlg.c gui_xmebw.c
176GUI_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 +0000177GUI_INC =
178.ENDIF
179
180# You need to define these variables if you do not have DECW files
181# at standard location
182GUI_INC_DIR = ,decw$include:
183# GUI_LIB_DIR = ,sys$library:
184
185.ELSE
186# Character terminal only executable
187DEFS = "HAVE_CONFIG_H"
188LIBS =
189.ENDIF
190
191.IFDEF VIM_PERL
192# Perl related setup.
193PERL = perl
194PERL_DEF = ,"FEAT_PERL"
195PERL_SRC = if_perlsfio.c if_perl.xs
196PERL_OBJ = if_perlsfio.obj if_perl.obj
197PERL_LIB = ,OS_VMS_PERL.OPT/OPT
198PERL_INC = ,dka0:[perlbuild.perl.lib.vms_axp.5_6_1.core]
199.ENDIF
200
201.IFDEF VIM_PYTHON
202# Python related setup.
203PYTHON_DEF = ,"FEAT_PYTHON"
204PYTHON_SRC = if_python.c
205PYTHON_OBJ = if_python.obj
206PYTHON_LIB = ,OS_VMS_PYTHON.OPT/OPT
207PYTHON_INC = ,PYTHON_INCLUDE
208.ENDIF
209
210.IFDEF VIM_TCL
211# TCL related setup.
212TCL_DEF = ,"FEAT_TCL"
213TCL_SRC = if_tcl.c
214TCL_OBJ = if_tcl.obj
215TCL_LIB = ,OS_VMS_TCL.OPT/OPT
216TCL_INC = ,dka0:[tcl80.generic]
217.ENDIF
218
219.IFDEF VIM_SNIFF
220# SNIFF related setup.
221SNIFF_DEF = ,"FEAT_SNIFF"
222SNIFF_SRC = if_sniff.c
223SNIFF_OBJ = if_sniff.obj
224SNIFF_LIB =
225SNIFF_INC =
226.ENDIF
227
228.IFDEF VIM_RUBY
229# RUBY related setup.
230RUBY_DEF = ,"FEAT_RUBY"
231RUBY_SRC = if_ruby.c
232RUBY_OBJ = if_ruby.obj
233RUBY_LIB = ,OS_VMS_RUBY.OPT/OPT
234RUBY_INC =
235.ENDIF
236
237.IFDEF VIM_XIM
238# XIM related setup.
239.IFDEF GUI
240XIM_DEF = ,"FEAT_XIM"
241.ENDIF
242.ENDIF
243
244.IFDEF VIM_HANGULIN
245# HANGULIN related setup.
246.IFDEF GUI
247HANGULIN_DEF = ,"FEAT_HANGULIN"
248HANGULIN_SRC = hangulin.c
249HANGULIN_OBJ = hangulin.obj
250.ENDIF
251.ENDIF
252
253.IFDEF VIM_TAG_ANYWHITE
254# TAG_ANYWHITE related setup.
255TAG_DEF = ,"FEAT_TAG_ANYWHITE"
256.ENDIF
257
258
259######################################################################
260# End of configuration section.
261# Please, do not change anything below without programming experience.
262######################################################################
263
264
265MODEL_DEF = "FEAT_$(MODEL)",
266
267# These go into pathdef.c
268VIMUSER = "''F$EDIT(F$GETJPI(" ","USERNAME"),"TRIM")'"
269VIMHOST = "''F$TRNLNM("SYS$NODE")'''F$TRNLNM("UCX$INET_HOST")'.''F$TRNLNM("UCX$INET_DOMAIN")'"
270
271.SUFFIXES : .obj .c
272
273ALL_CFLAGS = /def=($(MODEL_DEF)$(DEFS)$(VMS_DEF)$(DEBUG_DEF)$(PERL_DEF)$(PYTHON_DEF) -
274 $(TCL_DEF)$(SNIFF_DEF)$(RUBY_DEF)$(XIM_DEF)$(HANGULIN_DEF)$(TAG_DEF)) -
275 $(CFLAGS)$(GUI_FLAG) -
276 /include=($(C_INC)$(GUI_INC_DIR)$(GUI_INC)$(PERL_INC)$(PYTHON_INC)$(TCL_INC))
277
278# CFLAGS displayed in :ver information
279# It is specially formated for correct display of unix like includes
280# as $(GUI_INC) - replaced with $(GUI_INC_VER)
281# Otherwise should not be any other difference.
282ALL_CFLAGS_VER = /def=($(MODEL_DEF)$(DEFS)$(VMS_DEF)$(DEBUG_DEF)$(PERL_DEF)$(PYTHON_DEF) -
283 $(TCL_DEF)$(SNIFF_DEF)$(RUBY_DEF)$(XIM_DEF)$(HANGULIN_DEF)$(TAG_DEF)) -
284 $(CFLAGS)$(GUI_FLAG) -
285 /include=($(C_INC)$(GUI_INC_DIR)$(GUI_INC_VER)$(PERL_INC)$(PYTHON_INC)$(TCL_INC))
286
287ALL_LIBS = $(LIBS) $(GUI_LIB_DIR) $(GUI_LIB) \
288 $(PERL_LIB) $(PYTHON_LIB) $(TCL_LIB) $(SNIFF_LIB) $(RUBY_LIB)
289
290SRC = buffer.c charset.c diff.c digraph.c edit.c eval.c ex_cmds.c ex_cmds2.c \
291 ex_docmd.c ex_eval.c ex_getln.c if_xcmdsrv.c fileio.c fold.c getchar.c \
Bram Moolenaar76b92b22006-03-24 22:46:53 +0000292 hardcopy.c hashtab.c main.c mark.c menu.c mbyte.c memfile.c memline.c message.c misc1.c \
293 misc2.c move.c normal.c ops.c option.c popupmnu.c quickfix.c regexp.c search.c \
Bram Moolenaar217ad922005-03-20 22:37:15 +0000294 spell.c syntax.c tag.c term.c termlib.c ui.c undo.c version.c screen.c \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000295 window.c os_unix.c os_vms.c pathdef.c \
296 $(GUI_SRC) $(PERL_SRC) $(PYTHON_SRC) $(TCL_SRC) $(SNIFF_SRC) \
297 $(RUBY_SRC) $(HANGULIN_SRC)
298
299OBJ = buffer.obj charset.obj diff.obj digraph.obj edit.obj eval.obj \
300 ex_cmds.obj ex_cmds2.obj ex_docmd.obj ex_eval.obj ex_getln.obj \
Bram Moolenaar76b92b22006-03-24 22:46:53 +0000301 if_xcmdsrv.obj fileio.obj fold.obj getchar.obj hardcopy.obj hashtab.obj main.obj mark.obj \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000302 menu.obj memfile.obj memline.obj message.obj misc1.obj misc2.obj \
Bram Moolenaar76b92b22006-03-24 22:46:53 +0000303 move.obj mbyte.obj normal.obj ops.obj option.obj popupmnu.obj quickfix.obj \
Bram Moolenaar217ad922005-03-20 22:37:15 +0000304 regexp.obj search.obj spell.obj syntax.obj tag.obj term.obj termlib.obj \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000305 ui.obj undo.obj screen.obj version.obj window.obj os_unix.obj \
306 os_vms.obj pathdef.obj \
307 $(GUI_OBJ) $(PERL_OBJ) $(PYTHON_OBJ) $(TCL_OBJ) $(SNIFF_OBJ) \
308 $(RUBY_OBJ) $(HANGULIN_OBJ)
309
310# Default target is making the executable
311all : [.auto]config.h mmk_compat motif_env gtk_env perl_env python_env tcl_env ruby_env $(TARGET)
312 ! $@
313
314[.auto]config.h : $(CONFIG_H)
315 copy/nolog $(CONFIG_H) [.auto]config.h
316
317mmk_compat :
318 -@ open/write pd pathdef.c
319 -@ write pd "/* Empty file to satisfy MMK depend. */"
320 -@ write pd "/* It will be owerwritten later on... */"
321 -@ close pd
322clean :
323 -@ if "''F$SEARCH("*.exe")'" .NES. "" then delete/noconfirm/nolog *.exe;*
324 -@ if "''F$SEARCH("*.obj")'" .NES. "" then delete/noconfirm/nolog *.obj;*
325 -@ if "''F$SEARCH("[.auto]config.h")'" .NES. "" then delete/noconfirm/nolog [.auto]config.h;*
326 -@ if "''F$SEARCH("pathdef.c")'" .NES. "" then delete/noconfirm/nolog pathdef.c;*
327 -@ if "''F$SEARCH("if_perl.c")'" .NES. "" then delete/noconfirm/nolog if_perl.c;*
328 -@ if "''F$SEARCH("*.opt")'" .NES. "" then delete/noconfirm/nolog *.opt;*
329
330# Link the target
331$(TARGET) : $(OBJ)
332 $(LD_DEF) $(LDFLAGS) /exe=$(TARGET) $+ $(ALL_LIBS)
333
334.c.obj :
335 $(CC_DEF) $(ALL_CFLAGS) $<
336
337pathdef.c : check_ccver $(CONFIG_H)
338 -@ write sys$output "creating PATHDEF.C file."
339 -@ open/write pd pathdef.c
340 -@ write pd "/* pathdef.c -- DO NOT EDIT! */"
341 -@ write pd "/* This file is automatically created by MAKE_VMS.MMS"
342 -@ write pd " * Change the file MAKE_VMS.MMS Only. */"
343 -@ write pd "typedef unsigned char char_u;"
344 -@ write pd "char_u *default_vim_dir = (char_u *)"$(VIMLOC)";"
345 -@ write pd "char_u *default_vimruntime_dir = (char_u *)"$(VIMRUN)";"
346 -@ write pd "char_u *all_cflags = (char_u *)""$(CC_DEF)$(ALL_CFLAGS_VER)"";"
347 -@ write pd "char_u *all_lflags = (char_u *)""$(LD_DEF)$(LDFLAGS) /exe=$(TARGET) *.OBJ $(ALL_LIBS)"";"
348 -@ write pd "char_u *compiler_version = (char_u *) ""''CC_VER'"";"
349 -@ write pd "char_u *compiled_user = (char_u *) "$(VIMUSER)";"
350 -@ write pd "char_u *compiled_sys = (char_u *) "$(VIMHOST)";"
351 -@ close pd
352
353if_perl.c : if_perl.xs
354 -@ $(PERL) PERL_ROOT:[LIB.ExtUtils]xsubpp -prototypes -typemap -
355 PERL_ROOT:[LIB.ExtUtils]typemap if_perl.xs >> $@
356
357make_vms.mms :
358 -@ write sys$output "The name of the makefile MUST be <MAKE_VMS.MMS> !!!"
359
360.IFDEF CCVER
361# This part can make some complications if you're using some predefined
362# symbols/flags for your compiler. If does, just comment out CCVER variable
363check_ccver :
364 -@ define sys$output cc_ver.tmp
365 -@ $(CC_DEF)/version
366 -@ deassign sys$output
367 -@ open/read file cc_ver.tmp
368 -@ read file CC_VER
369 -@ close file
370 -@ delete/noconfirm/nolog cc_ver.tmp.*
371.ELSE
372check_ccver :
373 -@ !
374.ENDIF
375
376.IFDEF MOTIF
377motif_env :
Bram Moolenaar8d343302005-07-12 22:46:17 +0000378.IFDEF XPM
379 -@ write sys$output "using DECW/Motif/XPM environment."
380.ELSE
381 -@ write sys$output "using DECW/Motif environment."
382.ENDIF
Bram Moolenaar071d4272004-06-13 20:20:40 +0000383 -@ write sys$output "creating OS_VMS_MOTIF.OPT file."
384 -@ open/write opt_file OS_VMS_MOTIF.OPT
385 -@ write opt_file "sys$share:decw$xmlibshr12.exe/share,-"
386 -@ write opt_file "sys$share:decw$xtlibshrr5.exe/share,-"
387 -@ write opt_file "sys$share:decw$xlibshr.exe/share"
388 -@ close opt_file
389.ELSE
390motif_env :
391 -@ !
392.ENDIF
393
394
395.IFDEF GTK
396gtk_env :
397 -@ write sys$output "using GTK environment:"
398 -@ define/nolog gtk_root /trans=conc $(GTK_DIR)
399 -@ show logical gtk_root
400 -@ write sys$output " include path: "$(GUI_INC)""
401 -@ write sys$output "creating OS_VMS_GTK.OPT file."
402 -@ open/write opt_file OS_VMS_GTK.OPT
403 -@ write opt_file "gtk_root:[glib]libglib.exe /share,-"
404 -@ write opt_file "gtk_root:[glib.gmodule]libgmodule.exe /share,-"
405 -@ write opt_file "gtk_root:[gtk.gdk]libgdk.exe /share,-"
406 -@ write opt_file "gtk_root:[gtk.gtk]libgtk.exe /share,-"
407 -@ write opt_file "sys$share:decw$xmlibshr12.exe/share,-"
408 -@ write opt_file "sys$share:decw$xtlibshrr5.exe/share,-"
409 -@ write opt_file "sys$share:decw$xlibshr.exe/share"
410 -@ close opt_file
411.ELSE
412gtk_env :
413 -@ !
414.ENDIF
415
416.IFDEF VIM_PERL
417perl_env :
418 -@ write sys$output "using PERL environment:"
419 -@ show logical PERLSHR
420 -@ write sys$output " include path: ""$(PERL_INC)"""
421 -@ show symbol perl
422 -@ open/write pd if_perl.c
423 -@ write pd "/* Empty file to satisfy MMK depend. */"
424 -@ write pd "/* It will be owerwritten later on... */"
425 -@ close pd
426 -@ write sys$output "creating OS_VMS_PERL.OPT file."
427 -@ open/write opt_file OS_VMS_PERL.OPT
428 -@ write opt_file "PERLSHR /share"
429 -@ close opt_file
430.ELSE
431perl_env :
432 -@ !
433.ENDIF
434
435.IFDEF VIM_PYTHON
436python_env :
437 -@ write sys$output "using PYTHON environment:"
438 -@ show logical PYTHON_INCLUDE
439 -@ show logical PYTHON_OLB
440 -@ write sys$output "creating OS_VMS_PYTHON.OPT file."
441 -@ open/write opt_file OS_VMS_PYTHON.OPT
442 -@ write opt_file "PYTHON_OLB:PYTHON.OLB /share"
443 -@ close opt_file
444.ELSE
445python_env :
446 -@ !
447.ENDIF
448
449.IFDEF VIM_TCL
450tcl_env :
451 -@ write sys$output "using TCL environment:"
452 -@ show logical TCLSHR
453 -@ write sys$output " include path: ""$(TCL_INC)"""
454 -@ write sys$output "creating OS_VMS_TCL.OPT file."
455 -@ open/write opt_file OS_VMS_TCL.OPT
456 -@ write opt_file "TCLSHR /share"
457 -@ close opt_file
458.ELSE
459tcl_env :
460 -@ !
461.ENDIF
462
463.IFDEF VIM_RUBY
464ruby_env :
465 -@ write sys$output "using RUBY environment:"
466 -@ write sys$output " include path: ""$(RUBY_INC)"""
467 -@ write sys$output "creating OS_VMS_RUBY.OPT file."
468 -@ open/write opt_file OS_VMS_RUBY.OPT
469 -@ write opt_file "RUBYSHR /share"
470 -@ close opt_file
471.ELSE
472ruby_env :
473 -@ !
474.ENDIF
475
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000476buffer.obj : buffer.c vim.h [.auto]config.h feature.h os_unix.h \
477 ascii.h keymap.h term.h macros.h structs.h regexp.h \
478 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
479 globals.h farsi.h arabic.h version.h
480charset.obj : charset.c vim.h [.auto]config.h feature.h os_unix.h \
481 ascii.h keymap.h term.h macros.h structs.h regexp.h \
482 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
483 globals.h farsi.h arabic.h
484diff.obj : diff.c vim.h [.auto]config.h feature.h os_unix.h \
485 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \
486 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
487 arabic.h
488digraph.obj : digraph.c vim.h [.auto]config.h feature.h os_unix.h \
489 ascii.h keymap.h term.h macros.h structs.h regexp.h \
490 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
491 globals.h farsi.h arabic.h
492edit.obj : edit.c vim.h [.auto]config.h feature.h os_unix.h \
493 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \
494 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
495 arabic.h
496eval.obj : eval.c vim.h [.auto]config.h feature.h os_unix.h \
497 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \
498 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
499 arabic.h version.h
500ex_cmds.obj : ex_cmds.c vim.h [.auto]config.h feature.h os_unix.h \
501 ascii.h keymap.h term.h macros.h structs.h regexp.h \
502 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
503 globals.h farsi.h arabic.h version.h
504ex_cmds2.obj : ex_cmds2.c vim.h [.auto]config.h feature.h os_unix.h \
505 ascii.h keymap.h term.h macros.h structs.h regexp.h \
506 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
507 globals.h farsi.h arabic.h version.h
508ex_docmd.obj : ex_docmd.c vim.h [.auto]config.h feature.h os_unix.h \
509 ascii.h keymap.h term.h macros.h structs.h regexp.h \
510 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
511 globals.h farsi.h arabic.h
512ex_eval.obj : ex_eval.c vim.h [.auto]config.h feature.h os_unix.h \
513 ascii.h keymap.h term.h macros.h structs.h regexp.h \
514 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
515 globals.h farsi.h arabic.h
516ex_getln.obj : ex_getln.c vim.h [.auto]config.h feature.h os_unix.h \
517 ascii.h keymap.h term.h macros.h structs.h regexp.h \
518 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
519 globals.h farsi.h arabic.h
520fileio.obj : fileio.c vim.h [.auto]config.h feature.h os_unix.h \
521 ascii.h keymap.h term.h macros.h structs.h regexp.h \
522 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
523 globals.h farsi.h arabic.h
524fold.obj : fold.c vim.h [.auto]config.h feature.h os_unix.h \
525 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \
526 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
527 arabic.h
528getchar.obj : getchar.c vim.h [.auto]config.h feature.h os_unix.h \
529 ascii.h keymap.h term.h macros.h structs.h regexp.h \
530 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
531 globals.h farsi.h arabic.h
Bram Moolenaar58d98232005-07-23 22:25:46 +0000532hardcopy.obj : hardcopy.c vim.h [.auto]config.h feature.h os_unix.h \
533 ascii.h keymap.h term.h macros.h structs.h regexp.h \
534 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
535 globals.h farsi.h arabic.h
Bram Moolenaar76b92b22006-03-24 22:46:53 +0000536hashtab.obj : hashtab.c vim.h [.auto]config.h feature.h os_unix.h \
Bram Moolenaar383f9bc2005-01-19 22:18:32 +0000537 ascii.h keymap.h term.h macros.h structs.h regexp.h \
538 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
539 globals.h farsi.h arabic.h
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000540if_cscope.obj : if_cscope.c vim.h [.auto]config.h feature.h os_unix.h \
541 ascii.h keymap.h term.h macros.h structs.h regexp.h \
542 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
543 globals.h farsi.h arabic.h if_cscope.h
544if_xcmdsrv.obj : if_xcmdsrv.c vim.h [.auto]config.h feature.h os_unix.h \
545 ascii.h keymap.h term.h macros.h structs.h regexp.h \
546 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
547 globals.h farsi.h arabic.h version.h
548main.obj : main.c vim.h [.auto]config.h feature.h os_unix.h \
549 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \
550 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
551 arabic.h farsi.c arabic.c
552mark.obj : mark.c vim.h [.auto]config.h feature.h os_unix.h \
553 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \
554 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
555 arabic.h
556memfile.obj : memfile.c vim.h [.auto]config.h feature.h os_unix.h \
557 ascii.h keymap.h term.h macros.h structs.h regexp.h \
558 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
559 globals.h farsi.h arabic.h
560memline.obj : memline.c vim.h [.auto]config.h feature.h os_unix.h \
561 ascii.h keymap.h term.h macros.h structs.h regexp.h \
562 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
563 globals.h farsi.h arabic.h
564menu.obj : menu.c vim.h [.auto]config.h feature.h os_unix.h \
565 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \
566 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
567 arabic.h
568message.obj : message.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 gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
571 globals.h farsi.h arabic.h
572misc1.obj : misc1.c vim.h [.auto]config.h feature.h os_unix.h \
573 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \
574 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
575 arabic.h version.h
576misc2.obj : misc2.c vim.h [.auto]config.h feature.h os_unix.h \
577 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \
578 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
579 arabic.h
580move.obj : move.c vim.h [.auto]config.h feature.h os_unix.h \
581 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \
582 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
583 arabic.h
584mbyte.obj : mbyte.c vim.h [.auto]config.h feature.h os_unix.h \
585 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \
586 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
587 arabic.h
588normal.obj : normal.c vim.h [.auto]config.h feature.h os_unix.h \
589 ascii.h keymap.h term.h macros.h structs.h regexp.h \
590 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
591 globals.h farsi.h arabic.h
592ops.obj : ops.c vim.h [.auto]config.h feature.h os_unix.h \
593 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \
594 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
595 arabic.h
596option.obj : option.c vim.h [.auto]config.h feature.h os_unix.h \
597 ascii.h keymap.h term.h macros.h structs.h regexp.h \
598 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
599 globals.h farsi.h arabic.h
600os_unix.obj : os_unix.c vim.h [.auto]config.h feature.h os_unix.h \
601 ascii.h keymap.h term.h macros.h structs.h regexp.h \
602 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
603 globals.h farsi.h arabic.h os_unixx.h
604os_vms.obj : os_vms.c vim.h [.auto]config.h feature.h os_unix.h \
605 ascii.h keymap.h term.h macros.h structs.h regexp.h \
606 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
607 globals.h farsi.h arabic.h os_unixx.h
608pathdef.obj : pathdef.c vim.h [.auto]config.h feature.h os_unix.h \
609 ascii.h keymap.h term.h macros.h structs.h regexp.h \
610 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
611 globals.h farsi.h arabic.h
Bram Moolenaar76b92b22006-03-24 22:46:53 +0000612popupmnu.obj : popupmnu.c vim.h [.auto]config.h feature.h os_unix.h \
Bram Moolenaardf1bdc92006-02-23 21:32:16 +0000613 ascii.h keymap.h term.h macros.h structs.h regexp.h \
614 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
615 globals.h farsi.h arabic.h
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000616quickfix.obj : quickfix.c vim.h [.auto]config.h feature.h os_unix.h \
617 ascii.h keymap.h term.h macros.h structs.h regexp.h \
618 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
619 globals.h farsi.h arabic.h
620regexp.obj : regexp.c vim.h [.auto]config.h feature.h os_unix.h \
621 ascii.h keymap.h term.h macros.h structs.h regexp.h \
622 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
623 globals.h farsi.h arabic.h
624screen.obj : screen.c vim.h [.auto]config.h feature.h os_unix.h \
625 ascii.h keymap.h term.h macros.h structs.h regexp.h \
626 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
627 globals.h farsi.h arabic.h
628search.obj : search.c vim.h [.auto]config.h feature.h os_unix.h \
629 ascii.h keymap.h term.h macros.h structs.h regexp.h \
630 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
631 globals.h farsi.h arabic.h
Bram Moolenaar217ad922005-03-20 22:37:15 +0000632spell.obj : spell.c vim.h [.auto]config.h feature.h os_unix.h \
633 ascii.h keymap.h term.h macros.h structs.h regexp.h \
634 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
635 globals.h farsi.h arabic.h
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000636syntax.obj : syntax.c vim.h [.auto]config.h feature.h os_unix.h \
637 ascii.h keymap.h term.h macros.h structs.h regexp.h \
638 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
639 globals.h farsi.h arabic.h
640tag.obj : tag.c vim.h [.auto]config.h feature.h os_unix.h \
641 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \
642 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
643 arabic.h
644term.obj : term.c vim.h [.auto]config.h feature.h os_unix.h \
645 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \
646 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
647 arabic.h
648termlib.obj : termlib.c vim.h [.auto]config.h feature.h os_unix.h \
649 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \
650 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
651 arabic.h
652ui.obj : ui.c vim.h [.auto]config.h feature.h os_unix.h \
653 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \
654 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
655 arabic.h
656undo.obj : undo.c vim.h [.auto]config.h feature.h os_unix.h \
657 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \
658 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
659 arabic.h
660version.obj : version.c vim.h [.auto]config.h feature.h os_unix.h \
661 ascii.h keymap.h term.h macros.h structs.h regexp.h \
662 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
663 globals.h farsi.h arabic.h version.h
664window.obj : window.c vim.h [.auto]config.h feature.h os_unix.h \
665 ascii.h keymap.h term.h macros.h structs.h regexp.h \
666 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
667 globals.h farsi.h arabic.h
668gui.obj : gui.c vim.h [.auto]config.h feature.h os_unix.h \
669 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \
670 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
671 arabic.h
672gui_gtk.obj : gui_gtk.c gui_gtk_f.h vim.h [.auto]config.h feature.h \
673 os_unix.h ascii.h keymap.h term.h macros.h structs.h \
674 regexp.h gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h \
675 proto.h globals.h farsi.h arabic.h [-.pixmaps]stock_icons.h
676gui_gtk_f.obj : gui_gtk_f.c vim.h [.auto]config.h feature.h os_unix.h \
677 ascii.h keymap.h term.h macros.h structs.h regexp.h \
678 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
679 globals.h farsi.h arabic.h gui_gtk_f.h
680gui_motif.obj : gui_motif.c vim.h [.auto]config.h feature.h os_unix.h \
681 ascii.h keymap.h term.h macros.h structs.h regexp.h \
682 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
683 globals.h farsi.h arabic.h [-.pixmaps]alert.xpm [-.pixmaps]error.xpm \
684 [-.pixmaps]generic.xpm [-.pixmaps]info.xpm [-.pixmaps]quest.xpm
685gui_athena.obj : gui_athena.c vim.h [.auto]config.h feature.h os_unix.h \
686 ascii.h keymap.h term.h macros.h structs.h regexp.h \
687 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
688 globals.h farsi.h arabic.h gui_at_sb.h
689gui_gtk_x11.obj : gui_gtk_x11.c vim.h [.auto]config.h feature.h os_unix.h \
690 ascii.h keymap.h term.h macros.h structs.h regexp.h \
691 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
692 globals.h farsi.h arabic.h gui_gtk_f.h [-.runtime]vim32x32.xpm \
693 [-.runtime]vim16x16.xpm [-.runtime]vim48x48.xpm
694gui_x11.obj : gui_x11.c vim.h [.auto]config.h feature.h os_unix.h \
695 ascii.h keymap.h term.h macros.h structs.h regexp.h \
696 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
697 globals.h farsi.h arabic.h [-.runtime]vim32x32.xpm \
698 [-.runtime]vim16x16.xpm [-.runtime]vim48x48.xpm [-.pixmaps]tb_new.xpm \
699 [-.pixmaps]tb_open.xpm [-.pixmaps]tb_close.xpm [-.pixmaps]tb_save.xpm \
700 [-.pixmaps]tb_print.xpm [-.pixmaps]tb_cut.xpm [-.pixmaps]tb_copy.xpm \
701 [-.pixmaps]tb_paste.xpm [-.pixmaps]tb_find.xpm \
702 [-.pixmaps]tb_find_next.xpm [-.pixmaps]tb_find_prev.xpm \
703 [-.pixmaps]tb_find_help.xpm [-.pixmaps]tb_exit.xpm \
704 [-.pixmaps]tb_undo.xpm [-.pixmaps]tb_redo.xpm [-.pixmaps]tb_help.xpm \
705 [-.pixmaps]tb_macro.xpm [-.pixmaps]tb_make.xpm \
706 [-.pixmaps]tb_save_all.xpm [-.pixmaps]tb_jump.xpm \
707 [-.pixmaps]tb_ctags.xpm [-.pixmaps]tb_load_session.xpm \
708 [-.pixmaps]tb_save_session.xpm [-.pixmaps]tb_new_session.xpm \
709 [-.pixmaps]tb_blank.xpm [-.pixmaps]tb_maximize.xpm \
710 [-.pixmaps]tb_split.xpm [-.pixmaps]tb_minimize.xpm \
711 [-.pixmaps]tb_shell.xpm [-.pixmaps]tb_replace.xpm \
712 [-.pixmaps]tb_vsplit.xpm [-.pixmaps]tb_maxwidth.xpm \
713 [-.pixmaps]tb_minwidth.xpm
714gui_at_sb.obj : gui_at_sb.c vim.h [.auto]config.h feature.h os_unix.h \
715 ascii.h keymap.h term.h macros.h structs.h regexp.h \
716 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
717 globals.h farsi.h arabic.h gui_at_sb.h
718gui_at_fs.obj : gui_at_fs.c vim.h [.auto]config.h feature.h os_unix.h \
719 ascii.h keymap.h term.h macros.h structs.h regexp.h \
720 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
721 globals.h farsi.h arabic.h gui_at_sb.h
722pty.obj : pty.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 gui_beval.h \
724 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
725 arabic.h
726hangulin.obj : hangulin.c vim.h [.auto]config.h feature.h os_unix.h \
727 ascii.h keymap.h term.h macros.h structs.h regexp.h \
728 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
729 globals.h farsi.h arabic.h
730if_perl.obj : [.auto]if_perl.c vim.h [.auto]config.h feature.h os_unix.h \
731 ascii.h keymap.h term.h macros.h structs.h regexp.h \
732 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
733 globals.h farsi.h arabic.h
734if_perlsfio.obj : if_perlsfio.c vim.h [.auto]config.h feature.h os_unix.h \
735 ascii.h keymap.h term.h macros.h structs.h regexp.h \
736 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
737 globals.h farsi.h arabic.h
738if_python.obj : if_python.c vim.h [.auto]config.h feature.h os_unix.h \
739 ascii.h keymap.h term.h macros.h structs.h regexp.h \
740 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
741 globals.h farsi.h arabic.h
742if_tcl.obj : if_tcl.c vim.h [.auto]config.h feature.h os_unix.h \
743 ascii.h keymap.h term.h macros.h structs.h regexp.h \
744 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
745 globals.h farsi.h arabic.h
746if_ruby.obj : if_ruby.c vim.h [.auto]config.h feature.h os_unix.h \
747 ascii.h keymap.h term.h macros.h structs.h regexp.h \
748 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
749 globals.h farsi.h arabic.h version.h
750if_sniff.obj : if_sniff.c vim.h [.auto]config.h feature.h os_unix.h \
751 ascii.h keymap.h term.h macros.h structs.h regexp.h \
752 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
753 globals.h farsi.h arabic.h os_unixx.h
754gui_beval.obj : gui_beval.c vim.h [.auto]config.h feature.h os_unix.h \
755 ascii.h keymap.h term.h macros.h structs.h regexp.h \
756 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
757 globals.h farsi.h arabic.h
758workshop.obj : workshop.c [.auto]config.h integration.h vim.h feature.h \
759 os_unix.h ascii.h keymap.h term.h macros.h structs.h \
760 regexp.h gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h \
761 proto.h globals.h farsi.h arabic.h version.h workshop.h
762wsdebug.obj : wsdebug.c
763integration.obj : integration.c vim.h [.auto]config.h feature.h os_unix.h \
764 ascii.h keymap.h term.h macros.h structs.h regexp.h \
765 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
766 globals.h farsi.h arabic.h integration.h
767netbeans.obj : netbeans.c vim.h [.auto]config.h feature.h os_unix.h \
768 ascii.h keymap.h term.h macros.h structs.h regexp.h \
769 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
770 globals.h farsi.h arabic.h version.h
Bram Moolenaar8d343302005-07-12 22:46:17 +0000771gui_xmdlg.obj : gui_xmdlg.c
772gui_xmebw.obj : gui_xmebw.c