blob: 89b56afe42a5ceed24c836945aedbceefd773fa4 [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 Moolenaar76b92b22006-03-24 22:46:53 +00005# Last change: 2006 Mar 24
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
101CC_DEF = cc/decc
102PREFIX = /prefix=all
103.ELSE # VAX with VAXC
104CC_DEF = cc
105PREFIX =
106CCVER =
107.ENDIF
108.ELSE # AXP wixh DECC
109CC_DEF = cc
110PREFIX = /prefix=all
111.ENDIF
112
113LD_DEF = link
114C_INC = [.proto]
115
116.IFDEF OLD_VMS
117VMS_DEF = ,"OLD_VMS"
118.ENDIF
119
120.IFDEF DEBUG
121DEBUG_DEF = ,"DEBUG"
122TARGET = dvim.exe
123CFLAGS = /debug/noopt$(PREFIX)
124LDFLAGS = /debug
125.ELSE
126TARGET = vim.exe
127CFLAGS = /opt$(PREFIX)
128LDFLAGS =
129.ENDIF
130
131# Predefined VIM directories
132# Please, use $VIM and $VIMRUNTIME logicals instead
133VIMLOC = ""
134VIMRUN = ""
135
136CONFIG_H = os_vms_conf.h
137
138.IFDEF GTK
139.IFDEF GUI
Bram Moolenaar8d343302005-07-12 22:46:17 +0000140.IFDEF XPM
Bram Moolenaar071d4272004-06-13 20:20:40 +0000141.ELSE
142GUI = YES
143.ENDIF
144.ENDIF
Bram Moolenaar8d343302005-07-12 22:46:17 +0000145.ENDIF
Bram Moolenaar071d4272004-06-13 20:20:40 +0000146
147.IFDEF GUI
148# X/Motif/GTK executable (also works in terminal mode )
149
150.IFDEF GTK
Bram Moolenaar8d343302005-07-12 22:46:17 +0000151# define GTK root directory
152# please note: directory should end with . in order to /trans=conc work
153# example: GTK_DIR = $1$DGA104:[USERS.ZAY.WORK.GTK1210.]
Bram Moolenaar071d4272004-06-13 20:20:40 +0000154GTK_DIR = ALPHA$DKA0:[GTK128.]
155DEFS = "HAVE_CONFIG_H","FEAT_GUI_GTK"
156LIBS = ,OS_VMS_GTK.OPT/OPT
157GUI_FLAG = /name=(as_is,short)/float=ieee/ieee=denorm
Bram Moolenaar8d343302005-07-12 22:46:17 +0000158GUI_SRC = gui.c gui_gtk.c gui_gtk_f.c gui_gtk_x11.c gui_beval.c pty.c
159GUI_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 +0000160GUI_INC = ,"/gtk_root/gtk","/gtk_root/glib"
161# GUI_INC_VER is used just for :ver information
162# this string should escape from C and DCL in the same time
163GUI_INC_VER= ,\""/gtk_root/gtk\"",\""/gtk_root/glib\""
Bram Moolenaar8d343302005-07-12 22:46:17 +0000164.ELSE
Bram Moolenaar071d4272004-06-13 20:20:40 +0000165MOTIF = YES
Bram Moolenaar8d343302005-07-12 22:46:17 +0000166.IFDEF XPM
167DEFS = "HAVE_CONFIG_H","FEAT_GUI_MOTIF","HAVE_XPM"
168.ELSE
Bram Moolenaar071d4272004-06-13 20:20:40 +0000169DEFS = "HAVE_CONFIG_H","FEAT_GUI_MOTIF"
Bram Moolenaar8d343302005-07-12 22:46:17 +0000170.ENDIF
Bram Moolenaar071d4272004-06-13 20:20:40 +0000171LIBS = ,OS_VMS_MOTIF.OPT/OPT
172GUI_FLAG =
Bram Moolenaar8d343302005-07-12 22:46:17 +0000173GUI_SRC = gui.c gui_motif.c gui_x11.c gui_beval.c gui_xmdlg.c gui_xmebw.c
174GUI_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 +0000175GUI_INC =
176.ENDIF
177
178# You need to define these variables if you do not have DECW files
179# at standard location
180GUI_INC_DIR = ,decw$include:
181# GUI_LIB_DIR = ,sys$library:
182
183.ELSE
184# Character terminal only executable
185DEFS = "HAVE_CONFIG_H"
186LIBS =
187.ENDIF
188
189.IFDEF VIM_PERL
190# Perl related setup.
191PERL = perl
192PERL_DEF = ,"FEAT_PERL"
193PERL_SRC = if_perlsfio.c if_perl.xs
194PERL_OBJ = if_perlsfio.obj if_perl.obj
195PERL_LIB = ,OS_VMS_PERL.OPT/OPT
196PERL_INC = ,dka0:[perlbuild.perl.lib.vms_axp.5_6_1.core]
197.ENDIF
198
199.IFDEF VIM_PYTHON
200# Python related setup.
201PYTHON_DEF = ,"FEAT_PYTHON"
202PYTHON_SRC = if_python.c
203PYTHON_OBJ = if_python.obj
204PYTHON_LIB = ,OS_VMS_PYTHON.OPT/OPT
205PYTHON_INC = ,PYTHON_INCLUDE
206.ENDIF
207
208.IFDEF VIM_TCL
209# TCL related setup.
210TCL_DEF = ,"FEAT_TCL"
211TCL_SRC = if_tcl.c
212TCL_OBJ = if_tcl.obj
213TCL_LIB = ,OS_VMS_TCL.OPT/OPT
214TCL_INC = ,dka0:[tcl80.generic]
215.ENDIF
216
217.IFDEF VIM_SNIFF
218# SNIFF related setup.
219SNIFF_DEF = ,"FEAT_SNIFF"
220SNIFF_SRC = if_sniff.c
221SNIFF_OBJ = if_sniff.obj
222SNIFF_LIB =
223SNIFF_INC =
224.ENDIF
225
226.IFDEF VIM_RUBY
227# RUBY related setup.
228RUBY_DEF = ,"FEAT_RUBY"
229RUBY_SRC = if_ruby.c
230RUBY_OBJ = if_ruby.obj
231RUBY_LIB = ,OS_VMS_RUBY.OPT/OPT
232RUBY_INC =
233.ENDIF
234
235.IFDEF VIM_XIM
236# XIM related setup.
237.IFDEF GUI
238XIM_DEF = ,"FEAT_XIM"
239.ENDIF
240.ENDIF
241
242.IFDEF VIM_HANGULIN
243# HANGULIN related setup.
244.IFDEF GUI
245HANGULIN_DEF = ,"FEAT_HANGULIN"
246HANGULIN_SRC = hangulin.c
247HANGULIN_OBJ = hangulin.obj
248.ENDIF
249.ENDIF
250
251.IFDEF VIM_TAG_ANYWHITE
252# TAG_ANYWHITE related setup.
253TAG_DEF = ,"FEAT_TAG_ANYWHITE"
254.ENDIF
255
256
257######################################################################
258# End of configuration section.
259# Please, do not change anything below without programming experience.
260######################################################################
261
262
263MODEL_DEF = "FEAT_$(MODEL)",
264
265# These go into pathdef.c
266VIMUSER = "''F$EDIT(F$GETJPI(" ","USERNAME"),"TRIM")'"
267VIMHOST = "''F$TRNLNM("SYS$NODE")'''F$TRNLNM("UCX$INET_HOST")'.''F$TRNLNM("UCX$INET_DOMAIN")'"
268
269.SUFFIXES : .obj .c
270
271ALL_CFLAGS = /def=($(MODEL_DEF)$(DEFS)$(VMS_DEF)$(DEBUG_DEF)$(PERL_DEF)$(PYTHON_DEF) -
272 $(TCL_DEF)$(SNIFF_DEF)$(RUBY_DEF)$(XIM_DEF)$(HANGULIN_DEF)$(TAG_DEF)) -
273 $(CFLAGS)$(GUI_FLAG) -
274 /include=($(C_INC)$(GUI_INC_DIR)$(GUI_INC)$(PERL_INC)$(PYTHON_INC)$(TCL_INC))
275
276# CFLAGS displayed in :ver information
277# It is specially formated for correct display of unix like includes
278# as $(GUI_INC) - replaced with $(GUI_INC_VER)
279# Otherwise should not be any other difference.
280ALL_CFLAGS_VER = /def=($(MODEL_DEF)$(DEFS)$(VMS_DEF)$(DEBUG_DEF)$(PERL_DEF)$(PYTHON_DEF) -
281 $(TCL_DEF)$(SNIFF_DEF)$(RUBY_DEF)$(XIM_DEF)$(HANGULIN_DEF)$(TAG_DEF)) -
282 $(CFLAGS)$(GUI_FLAG) -
283 /include=($(C_INC)$(GUI_INC_DIR)$(GUI_INC_VER)$(PERL_INC)$(PYTHON_INC)$(TCL_INC))
284
285ALL_LIBS = $(LIBS) $(GUI_LIB_DIR) $(GUI_LIB) \
286 $(PERL_LIB) $(PYTHON_LIB) $(TCL_LIB) $(SNIFF_LIB) $(RUBY_LIB)
287
288SRC = buffer.c charset.c diff.c digraph.c edit.c eval.c ex_cmds.c ex_cmds2.c \
289 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 +0000290 hardcopy.c hashtab.c main.c mark.c menu.c mbyte.c memfile.c memline.c message.c misc1.c \
291 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 +0000292 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 +0000293 window.c os_unix.c os_vms.c pathdef.c \
294 $(GUI_SRC) $(PERL_SRC) $(PYTHON_SRC) $(TCL_SRC) $(SNIFF_SRC) \
295 $(RUBY_SRC) $(HANGULIN_SRC)
296
297OBJ = buffer.obj charset.obj diff.obj digraph.obj edit.obj eval.obj \
298 ex_cmds.obj ex_cmds2.obj ex_docmd.obj ex_eval.obj ex_getln.obj \
Bram Moolenaar76b92b22006-03-24 22:46:53 +0000299 if_xcmdsrv.obj fileio.obj fold.obj getchar.obj hardcopy.obj hashtab.obj main.obj mark.obj \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000300 menu.obj memfile.obj memline.obj message.obj misc1.obj misc2.obj \
Bram Moolenaar76b92b22006-03-24 22:46:53 +0000301 move.obj mbyte.obj normal.obj ops.obj option.obj popupmnu.obj quickfix.obj \
Bram Moolenaar217ad922005-03-20 22:37:15 +0000302 regexp.obj search.obj spell.obj syntax.obj tag.obj term.obj termlib.obj \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000303 ui.obj undo.obj screen.obj version.obj window.obj os_unix.obj \
304 os_vms.obj pathdef.obj \
305 $(GUI_OBJ) $(PERL_OBJ) $(PYTHON_OBJ) $(TCL_OBJ) $(SNIFF_OBJ) \
306 $(RUBY_OBJ) $(HANGULIN_OBJ)
307
308# Default target is making the executable
309all : [.auto]config.h mmk_compat motif_env gtk_env perl_env python_env tcl_env ruby_env $(TARGET)
310 ! $@
311
312[.auto]config.h : $(CONFIG_H)
313 copy/nolog $(CONFIG_H) [.auto]config.h
314
315mmk_compat :
316 -@ open/write pd pathdef.c
317 -@ write pd "/* Empty file to satisfy MMK depend. */"
318 -@ write pd "/* It will be owerwritten later on... */"
319 -@ close pd
320clean :
321 -@ if "''F$SEARCH("*.exe")'" .NES. "" then delete/noconfirm/nolog *.exe;*
322 -@ if "''F$SEARCH("*.obj")'" .NES. "" then delete/noconfirm/nolog *.obj;*
323 -@ if "''F$SEARCH("[.auto]config.h")'" .NES. "" then delete/noconfirm/nolog [.auto]config.h;*
324 -@ if "''F$SEARCH("pathdef.c")'" .NES. "" then delete/noconfirm/nolog pathdef.c;*
325 -@ if "''F$SEARCH("if_perl.c")'" .NES. "" then delete/noconfirm/nolog if_perl.c;*
326 -@ if "''F$SEARCH("*.opt")'" .NES. "" then delete/noconfirm/nolog *.opt;*
327
328# Link the target
329$(TARGET) : $(OBJ)
330 $(LD_DEF) $(LDFLAGS) /exe=$(TARGET) $+ $(ALL_LIBS)
331
332.c.obj :
333 $(CC_DEF) $(ALL_CFLAGS) $<
334
335pathdef.c : check_ccver $(CONFIG_H)
336 -@ write sys$output "creating PATHDEF.C file."
337 -@ open/write pd pathdef.c
338 -@ write pd "/* pathdef.c -- DO NOT EDIT! */"
339 -@ write pd "/* This file is automatically created by MAKE_VMS.MMS"
340 -@ write pd " * Change the file MAKE_VMS.MMS Only. */"
341 -@ write pd "typedef unsigned char char_u;"
342 -@ write pd "char_u *default_vim_dir = (char_u *)"$(VIMLOC)";"
343 -@ write pd "char_u *default_vimruntime_dir = (char_u *)"$(VIMRUN)";"
344 -@ write pd "char_u *all_cflags = (char_u *)""$(CC_DEF)$(ALL_CFLAGS_VER)"";"
345 -@ write pd "char_u *all_lflags = (char_u *)""$(LD_DEF)$(LDFLAGS) /exe=$(TARGET) *.OBJ $(ALL_LIBS)"";"
346 -@ write pd "char_u *compiler_version = (char_u *) ""''CC_VER'"";"
347 -@ write pd "char_u *compiled_user = (char_u *) "$(VIMUSER)";"
348 -@ write pd "char_u *compiled_sys = (char_u *) "$(VIMHOST)";"
349 -@ close pd
350
351if_perl.c : if_perl.xs
352 -@ $(PERL) PERL_ROOT:[LIB.ExtUtils]xsubpp -prototypes -typemap -
353 PERL_ROOT:[LIB.ExtUtils]typemap if_perl.xs >> $@
354
355make_vms.mms :
356 -@ write sys$output "The name of the makefile MUST be <MAKE_VMS.MMS> !!!"
357
358.IFDEF CCVER
359# This part can make some complications if you're using some predefined
360# symbols/flags for your compiler. If does, just comment out CCVER variable
361check_ccver :
362 -@ define sys$output cc_ver.tmp
363 -@ $(CC_DEF)/version
364 -@ deassign sys$output
365 -@ open/read file cc_ver.tmp
366 -@ read file CC_VER
367 -@ close file
368 -@ delete/noconfirm/nolog cc_ver.tmp.*
369.ELSE
370check_ccver :
371 -@ !
372.ENDIF
373
374.IFDEF MOTIF
375motif_env :
Bram Moolenaar8d343302005-07-12 22:46:17 +0000376.IFDEF XPM
377 -@ write sys$output "using DECW/Motif/XPM environment."
378.ELSE
379 -@ write sys$output "using DECW/Motif environment."
380.ENDIF
Bram Moolenaar071d4272004-06-13 20:20:40 +0000381 -@ write sys$output "creating OS_VMS_MOTIF.OPT file."
382 -@ open/write opt_file OS_VMS_MOTIF.OPT
383 -@ write opt_file "sys$share:decw$xmlibshr12.exe/share,-"
384 -@ write opt_file "sys$share:decw$xtlibshrr5.exe/share,-"
385 -@ write opt_file "sys$share:decw$xlibshr.exe/share"
386 -@ close opt_file
387.ELSE
388motif_env :
389 -@ !
390.ENDIF
391
392
393.IFDEF GTK
394gtk_env :
395 -@ write sys$output "using GTK environment:"
396 -@ define/nolog gtk_root /trans=conc $(GTK_DIR)
397 -@ show logical gtk_root
398 -@ write sys$output " include path: "$(GUI_INC)""
399 -@ write sys$output "creating OS_VMS_GTK.OPT file."
400 -@ open/write opt_file OS_VMS_GTK.OPT
401 -@ write opt_file "gtk_root:[glib]libglib.exe /share,-"
402 -@ write opt_file "gtk_root:[glib.gmodule]libgmodule.exe /share,-"
403 -@ write opt_file "gtk_root:[gtk.gdk]libgdk.exe /share,-"
404 -@ write opt_file "gtk_root:[gtk.gtk]libgtk.exe /share,-"
405 -@ write opt_file "sys$share:decw$xmlibshr12.exe/share,-"
406 -@ write opt_file "sys$share:decw$xtlibshrr5.exe/share,-"
407 -@ write opt_file "sys$share:decw$xlibshr.exe/share"
408 -@ close opt_file
409.ELSE
410gtk_env :
411 -@ !
412.ENDIF
413
414.IFDEF VIM_PERL
415perl_env :
416 -@ write sys$output "using PERL environment:"
417 -@ show logical PERLSHR
418 -@ write sys$output " include path: ""$(PERL_INC)"""
419 -@ show symbol perl
420 -@ open/write pd if_perl.c
421 -@ write pd "/* Empty file to satisfy MMK depend. */"
422 -@ write pd "/* It will be owerwritten later on... */"
423 -@ close pd
424 -@ write sys$output "creating OS_VMS_PERL.OPT file."
425 -@ open/write opt_file OS_VMS_PERL.OPT
426 -@ write opt_file "PERLSHR /share"
427 -@ close opt_file
428.ELSE
429perl_env :
430 -@ !
431.ENDIF
432
433.IFDEF VIM_PYTHON
434python_env :
435 -@ write sys$output "using PYTHON environment:"
436 -@ show logical PYTHON_INCLUDE
437 -@ show logical PYTHON_OLB
438 -@ write sys$output "creating OS_VMS_PYTHON.OPT file."
439 -@ open/write opt_file OS_VMS_PYTHON.OPT
440 -@ write opt_file "PYTHON_OLB:PYTHON.OLB /share"
441 -@ close opt_file
442.ELSE
443python_env :
444 -@ !
445.ENDIF
446
447.IFDEF VIM_TCL
448tcl_env :
449 -@ write sys$output "using TCL environment:"
450 -@ show logical TCLSHR
451 -@ write sys$output " include path: ""$(TCL_INC)"""
452 -@ write sys$output "creating OS_VMS_TCL.OPT file."
453 -@ open/write opt_file OS_VMS_TCL.OPT
454 -@ write opt_file "TCLSHR /share"
455 -@ close opt_file
456.ELSE
457tcl_env :
458 -@ !
459.ENDIF
460
461.IFDEF VIM_RUBY
462ruby_env :
463 -@ write sys$output "using RUBY environment:"
464 -@ write sys$output " include path: ""$(RUBY_INC)"""
465 -@ write sys$output "creating OS_VMS_RUBY.OPT file."
466 -@ open/write opt_file OS_VMS_RUBY.OPT
467 -@ write opt_file "RUBYSHR /share"
468 -@ close opt_file
469.ELSE
470ruby_env :
471 -@ !
472.ENDIF
473
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000474buffer.obj : buffer.c vim.h [.auto]config.h feature.h os_unix.h \
475 ascii.h keymap.h term.h macros.h structs.h regexp.h \
476 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
477 globals.h farsi.h arabic.h version.h
478charset.obj : charset.c vim.h [.auto]config.h feature.h os_unix.h \
479 ascii.h keymap.h term.h macros.h structs.h regexp.h \
480 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
481 globals.h farsi.h arabic.h
482diff.obj : diff.c vim.h [.auto]config.h feature.h os_unix.h \
483 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \
484 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
485 arabic.h
486digraph.obj : digraph.c vim.h [.auto]config.h feature.h os_unix.h \
487 ascii.h keymap.h term.h macros.h structs.h regexp.h \
488 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
489 globals.h farsi.h arabic.h
490edit.obj : edit.c vim.h [.auto]config.h feature.h os_unix.h \
491 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \
492 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
493 arabic.h
494eval.obj : eval.c vim.h [.auto]config.h feature.h os_unix.h \
495 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \
496 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
497 arabic.h version.h
498ex_cmds.obj : ex_cmds.c vim.h [.auto]config.h feature.h os_unix.h \
499 ascii.h keymap.h term.h macros.h structs.h regexp.h \
500 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
501 globals.h farsi.h arabic.h version.h
502ex_cmds2.obj : ex_cmds2.c vim.h [.auto]config.h feature.h os_unix.h \
503 ascii.h keymap.h term.h macros.h structs.h regexp.h \
504 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
505 globals.h farsi.h arabic.h version.h
506ex_docmd.obj : ex_docmd.c vim.h [.auto]config.h feature.h os_unix.h \
507 ascii.h keymap.h term.h macros.h structs.h regexp.h \
508 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
509 globals.h farsi.h arabic.h
510ex_eval.obj : ex_eval.c vim.h [.auto]config.h feature.h os_unix.h \
511 ascii.h keymap.h term.h macros.h structs.h regexp.h \
512 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
513 globals.h farsi.h arabic.h
514ex_getln.obj : ex_getln.c vim.h [.auto]config.h feature.h os_unix.h \
515 ascii.h keymap.h term.h macros.h structs.h regexp.h \
516 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
517 globals.h farsi.h arabic.h
518fileio.obj : fileio.c vim.h [.auto]config.h feature.h os_unix.h \
519 ascii.h keymap.h term.h macros.h structs.h regexp.h \
520 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
521 globals.h farsi.h arabic.h
522fold.obj : fold.c vim.h [.auto]config.h feature.h os_unix.h \
523 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \
524 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
525 arabic.h
526getchar.obj : getchar.c vim.h [.auto]config.h feature.h os_unix.h \
527 ascii.h keymap.h term.h macros.h structs.h regexp.h \
528 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
529 globals.h farsi.h arabic.h
Bram Moolenaar58d98232005-07-23 22:25:46 +0000530hardcopy.obj : hardcopy.c vim.h [.auto]config.h feature.h os_unix.h \
531 ascii.h keymap.h term.h macros.h structs.h regexp.h \
532 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
533 globals.h farsi.h arabic.h
Bram Moolenaar76b92b22006-03-24 22:46:53 +0000534hashtab.obj : hashtab.c vim.h [.auto]config.h feature.h os_unix.h \
Bram Moolenaar383f9bc2005-01-19 22:18:32 +0000535 ascii.h keymap.h term.h macros.h structs.h regexp.h \
536 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
537 globals.h farsi.h arabic.h
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000538if_cscope.obj : if_cscope.c vim.h [.auto]config.h feature.h os_unix.h \
539 ascii.h keymap.h term.h macros.h structs.h regexp.h \
540 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
541 globals.h farsi.h arabic.h if_cscope.h
542if_xcmdsrv.obj : if_xcmdsrv.c vim.h [.auto]config.h feature.h os_unix.h \
543 ascii.h keymap.h term.h macros.h structs.h regexp.h \
544 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
545 globals.h farsi.h arabic.h version.h
546main.obj : main.c vim.h [.auto]config.h feature.h os_unix.h \
547 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \
548 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
549 arabic.h farsi.c arabic.c
550mark.obj : mark.c vim.h [.auto]config.h feature.h os_unix.h \
551 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \
552 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
553 arabic.h
554memfile.obj : memfile.c vim.h [.auto]config.h feature.h os_unix.h \
555 ascii.h keymap.h term.h macros.h structs.h regexp.h \
556 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
557 globals.h farsi.h arabic.h
558memline.obj : memline.c vim.h [.auto]config.h feature.h os_unix.h \
559 ascii.h keymap.h term.h macros.h structs.h regexp.h \
560 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
561 globals.h farsi.h arabic.h
562menu.obj : menu.c vim.h [.auto]config.h feature.h os_unix.h \
563 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \
564 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
565 arabic.h
566message.obj : message.c vim.h [.auto]config.h feature.h os_unix.h \
567 ascii.h keymap.h term.h macros.h structs.h regexp.h \
568 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
569 globals.h farsi.h arabic.h
570misc1.obj : misc1.c vim.h [.auto]config.h feature.h os_unix.h \
571 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \
572 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
573 arabic.h version.h
574misc2.obj : misc2.c vim.h [.auto]config.h feature.h os_unix.h \
575 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \
576 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
577 arabic.h
578move.obj : move.c vim.h [.auto]config.h feature.h os_unix.h \
579 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \
580 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
581 arabic.h
582mbyte.obj : mbyte.c vim.h [.auto]config.h feature.h os_unix.h \
583 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \
584 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
585 arabic.h
586normal.obj : normal.c vim.h [.auto]config.h feature.h os_unix.h \
587 ascii.h keymap.h term.h macros.h structs.h regexp.h \
588 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
589 globals.h farsi.h arabic.h
590ops.obj : ops.c vim.h [.auto]config.h feature.h os_unix.h \
591 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \
592 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
593 arabic.h
594option.obj : option.c vim.h [.auto]config.h feature.h os_unix.h \
595 ascii.h keymap.h term.h macros.h structs.h regexp.h \
596 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
597 globals.h farsi.h arabic.h
598os_unix.obj : os_unix.c vim.h [.auto]config.h feature.h os_unix.h \
599 ascii.h keymap.h term.h macros.h structs.h regexp.h \
600 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
601 globals.h farsi.h arabic.h os_unixx.h
602os_vms.obj : os_vms.c vim.h [.auto]config.h feature.h os_unix.h \
603 ascii.h keymap.h term.h macros.h structs.h regexp.h \
604 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
605 globals.h farsi.h arabic.h os_unixx.h
606pathdef.obj : pathdef.c vim.h [.auto]config.h feature.h os_unix.h \
607 ascii.h keymap.h term.h macros.h structs.h regexp.h \
608 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
609 globals.h farsi.h arabic.h
Bram Moolenaar76b92b22006-03-24 22:46:53 +0000610popupmnu.obj : popupmnu.c vim.h [.auto]config.h feature.h os_unix.h \
Bram Moolenaardf1bdc92006-02-23 21:32:16 +0000611 ascii.h keymap.h term.h macros.h structs.h regexp.h \
612 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
613 globals.h farsi.h arabic.h
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000614quickfix.obj : quickfix.c vim.h [.auto]config.h feature.h os_unix.h \
615 ascii.h keymap.h term.h macros.h structs.h regexp.h \
616 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
617 globals.h farsi.h arabic.h
618regexp.obj : regexp.c vim.h [.auto]config.h feature.h os_unix.h \
619 ascii.h keymap.h term.h macros.h structs.h regexp.h \
620 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
621 globals.h farsi.h arabic.h
622screen.obj : screen.c vim.h [.auto]config.h feature.h os_unix.h \
623 ascii.h keymap.h term.h macros.h structs.h regexp.h \
624 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
625 globals.h farsi.h arabic.h
626search.obj : search.c vim.h [.auto]config.h feature.h os_unix.h \
627 ascii.h keymap.h term.h macros.h structs.h regexp.h \
628 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
629 globals.h farsi.h arabic.h
Bram Moolenaar217ad922005-03-20 22:37:15 +0000630spell.obj : spell.c vim.h [.auto]config.h feature.h os_unix.h \
631 ascii.h keymap.h term.h macros.h structs.h regexp.h \
632 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
633 globals.h farsi.h arabic.h
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000634syntax.obj : syntax.c vim.h [.auto]config.h feature.h os_unix.h \
635 ascii.h keymap.h term.h macros.h structs.h regexp.h \
636 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
637 globals.h farsi.h arabic.h
638tag.obj : tag.c vim.h [.auto]config.h feature.h os_unix.h \
639 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \
640 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
641 arabic.h
642term.obj : term.c vim.h [.auto]config.h feature.h os_unix.h \
643 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \
644 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
645 arabic.h
646termlib.obj : termlib.c vim.h [.auto]config.h feature.h os_unix.h \
647 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \
648 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
649 arabic.h
650ui.obj : ui.c vim.h [.auto]config.h feature.h os_unix.h \
651 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \
652 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
653 arabic.h
654undo.obj : undo.c vim.h [.auto]config.h feature.h os_unix.h \
655 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \
656 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
657 arabic.h
658version.obj : version.c vim.h [.auto]config.h feature.h os_unix.h \
659 ascii.h keymap.h term.h macros.h structs.h regexp.h \
660 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
661 globals.h farsi.h arabic.h version.h
662window.obj : window.c vim.h [.auto]config.h feature.h os_unix.h \
663 ascii.h keymap.h term.h macros.h structs.h regexp.h \
664 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
665 globals.h farsi.h arabic.h
666gui.obj : gui.c vim.h [.auto]config.h feature.h os_unix.h \
667 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \
668 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
669 arabic.h
670gui_gtk.obj : gui_gtk.c gui_gtk_f.h vim.h [.auto]config.h feature.h \
671 os_unix.h ascii.h keymap.h term.h macros.h structs.h \
672 regexp.h gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h \
673 proto.h globals.h farsi.h arabic.h [-.pixmaps]stock_icons.h
674gui_gtk_f.obj : gui_gtk_f.c vim.h [.auto]config.h feature.h os_unix.h \
675 ascii.h keymap.h term.h macros.h structs.h regexp.h \
676 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
677 globals.h farsi.h arabic.h gui_gtk_f.h
678gui_motif.obj : gui_motif.c vim.h [.auto]config.h feature.h os_unix.h \
679 ascii.h keymap.h term.h macros.h structs.h regexp.h \
680 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
681 globals.h farsi.h arabic.h [-.pixmaps]alert.xpm [-.pixmaps]error.xpm \
682 [-.pixmaps]generic.xpm [-.pixmaps]info.xpm [-.pixmaps]quest.xpm
683gui_athena.obj : gui_athena.c vim.h [.auto]config.h feature.h os_unix.h \
684 ascii.h keymap.h term.h macros.h structs.h regexp.h \
685 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
686 globals.h farsi.h arabic.h gui_at_sb.h
687gui_gtk_x11.obj : gui_gtk_x11.c vim.h [.auto]config.h feature.h os_unix.h \
688 ascii.h keymap.h term.h macros.h structs.h regexp.h \
689 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
690 globals.h farsi.h arabic.h gui_gtk_f.h [-.runtime]vim32x32.xpm \
691 [-.runtime]vim16x16.xpm [-.runtime]vim48x48.xpm
692gui_x11.obj : gui_x11.c vim.h [.auto]config.h feature.h os_unix.h \
693 ascii.h keymap.h term.h macros.h structs.h regexp.h \
694 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
695 globals.h farsi.h arabic.h [-.runtime]vim32x32.xpm \
696 [-.runtime]vim16x16.xpm [-.runtime]vim48x48.xpm [-.pixmaps]tb_new.xpm \
697 [-.pixmaps]tb_open.xpm [-.pixmaps]tb_close.xpm [-.pixmaps]tb_save.xpm \
698 [-.pixmaps]tb_print.xpm [-.pixmaps]tb_cut.xpm [-.pixmaps]tb_copy.xpm \
699 [-.pixmaps]tb_paste.xpm [-.pixmaps]tb_find.xpm \
700 [-.pixmaps]tb_find_next.xpm [-.pixmaps]tb_find_prev.xpm \
701 [-.pixmaps]tb_find_help.xpm [-.pixmaps]tb_exit.xpm \
702 [-.pixmaps]tb_undo.xpm [-.pixmaps]tb_redo.xpm [-.pixmaps]tb_help.xpm \
703 [-.pixmaps]tb_macro.xpm [-.pixmaps]tb_make.xpm \
704 [-.pixmaps]tb_save_all.xpm [-.pixmaps]tb_jump.xpm \
705 [-.pixmaps]tb_ctags.xpm [-.pixmaps]tb_load_session.xpm \
706 [-.pixmaps]tb_save_session.xpm [-.pixmaps]tb_new_session.xpm \
707 [-.pixmaps]tb_blank.xpm [-.pixmaps]tb_maximize.xpm \
708 [-.pixmaps]tb_split.xpm [-.pixmaps]tb_minimize.xpm \
709 [-.pixmaps]tb_shell.xpm [-.pixmaps]tb_replace.xpm \
710 [-.pixmaps]tb_vsplit.xpm [-.pixmaps]tb_maxwidth.xpm \
711 [-.pixmaps]tb_minwidth.xpm
712gui_at_sb.obj : gui_at_sb.c vim.h [.auto]config.h feature.h os_unix.h \
713 ascii.h keymap.h term.h macros.h structs.h regexp.h \
714 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
715 globals.h farsi.h arabic.h gui_at_sb.h
716gui_at_fs.obj : gui_at_fs.c vim.h [.auto]config.h feature.h os_unix.h \
717 ascii.h keymap.h term.h macros.h structs.h regexp.h \
718 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
719 globals.h farsi.h arabic.h gui_at_sb.h
720pty.obj : pty.c vim.h [.auto]config.h feature.h os_unix.h \
721 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \
722 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \
723 arabic.h
724hangulin.obj : hangulin.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 gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
727 globals.h farsi.h arabic.h
728if_perl.obj : [.auto]if_perl.c vim.h [.auto]config.h feature.h os_unix.h \
729 ascii.h keymap.h term.h macros.h structs.h regexp.h \
730 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
731 globals.h farsi.h arabic.h
732if_perlsfio.obj : if_perlsfio.c vim.h [.auto]config.h feature.h os_unix.h \
733 ascii.h keymap.h term.h macros.h structs.h regexp.h \
734 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
735 globals.h farsi.h arabic.h
736if_python.obj : if_python.c vim.h [.auto]config.h feature.h os_unix.h \
737 ascii.h keymap.h term.h macros.h structs.h regexp.h \
738 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
739 globals.h farsi.h arabic.h
740if_tcl.obj : if_tcl.c vim.h [.auto]config.h feature.h os_unix.h \
741 ascii.h keymap.h term.h macros.h structs.h regexp.h \
742 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
743 globals.h farsi.h arabic.h
744if_ruby.obj : if_ruby.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 gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
747 globals.h farsi.h arabic.h version.h
748if_sniff.obj : if_sniff.c vim.h [.auto]config.h feature.h os_unix.h \
749 ascii.h keymap.h term.h macros.h structs.h regexp.h \
750 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
751 globals.h farsi.h arabic.h os_unixx.h
752gui_beval.obj : gui_beval.c vim.h [.auto]config.h feature.h os_unix.h \
753 ascii.h keymap.h term.h macros.h structs.h regexp.h \
754 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
755 globals.h farsi.h arabic.h
756workshop.obj : workshop.c [.auto]config.h integration.h vim.h feature.h \
757 os_unix.h ascii.h keymap.h term.h macros.h structs.h \
758 regexp.h gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h \
759 proto.h globals.h farsi.h arabic.h version.h workshop.h
760wsdebug.obj : wsdebug.c
761integration.obj : integration.c vim.h [.auto]config.h feature.h os_unix.h \
762 ascii.h keymap.h term.h macros.h structs.h regexp.h \
763 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
764 globals.h farsi.h arabic.h integration.h
765netbeans.obj : netbeans.c vim.h [.auto]config.h feature.h os_unix.h \
766 ascii.h keymap.h term.h macros.h structs.h regexp.h \
767 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
768 globals.h farsi.h arabic.h version.h
Bram Moolenaar8d343302005-07-12 22:46:17 +0000769gui_xmdlg.obj : gui_xmdlg.c
770gui_xmebw.obj : gui_xmebw.c