Mercurial > vim
annotate src/Make_vms.mms @ 11118:9204ebc311d4
Added tag v8.0.0446 for changeset e2258e86d8e102261faee093d05ab603d0433289
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sun, 12 Mar 2017 16:45:05 +0100 |
parents | 299f1669c20e |
children | 1a450ce6980c |
rev | line source |
---|---|
7 | 1 # |
2 # Makefile for Vim on OpenVMS | |
3 # | |
4 # Maintainer: Zoltan Arpadffy <arpadffy@polarhome.com> | |
10328
299f1669c20e
commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents:
9408
diff
changeset
|
5 # Last change: 2016 Nov 04 |
7 | 6 # |
414 | 7 # This has script been tested on VMS 6.2 to 8.2 on DEC Alpha, VAX and IA64 |
7 | 8 # 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 # | |
1045 | 16 # To build: mms/descrip=Make_vms.mms /ignore=warning |
7 | 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 | |
25 # Compiler selection. | |
26 # Comment out if you use the VAXC compiler | |
27 DECC = 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) | |
4352 | 34 # HUGE - All possible features enabled. |
7 | 35 # Please select one of these alternatives above. |
1709 | 36 MODEL = HUGE |
7 | 37 |
38 # GUI or terminal mode executable. | |
39 # Comment out if you want just the character terminal mode only. | |
826 | 40 # GUI with Motif |
10328
299f1669c20e
commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents:
9408
diff
changeset
|
41 GUI = YES |
7 | 42 |
43 # GUI with GTK | |
44 # If you have GTK installed you might want to enable this option. | |
1045 | 45 # NOTE: you will need to properly define GTK_DIR below |
7 | 46 # GTK = YES |
47 | |
414 | 48 # GUI/Motif with XPM |
49 # If you have XPM installed you might want to build Motif version with toolbar | |
50 # XPM = YES | |
51 | |
7 | 52 # Comment out if you want the compiler version with :ver command. |
53 # NOTE: This part can make some complications if you're using some | |
54 # predefined symbols/flags for your compiler. If does, just leave behind | |
4352 | 55 # the comment variable CCVER. |
7 | 56 CCVER = YES |
57 | |
58 # Uncomment if want a debug version. Resulting executable is DVIM.EXE | |
59 # Development purpose only! Normally, it should not be defined. !!! | |
5704 | 60 # DEBUG = YES |
7 | 61 |
62 # Languages support for Perl, Python, TCL etc. | |
63 # If you don't need it really, leave them behind the comment. | |
64 # You will need related libraries, include files etc. | |
65 # VIM_TCL = YES | |
66 # VIM_PERL = YES | |
67 # VIM_PYTHON = YES | |
68 # VIM_RUBY = YES | |
69 | |
70 # X Input Method. For entering special languages like chinese and | |
71 # Japanese. Please define just one: VIM_XIM or VIM_HANGULIN | |
72 # If you don't need it really, leave it behind the comment. | |
73 # VIM_XIM = YES | |
74 | |
75 # Internal Hangul input method. GUI only. | |
76 # If you don't need it really, leave it behind the comment. | |
77 # VIM_HANGULIN = YES | |
78 | |
79 # Allow any white space to separate the fields in a tags file | |
80 # When not defined, only a TAB is allowed. | |
81 # VIM_TAG_ANYWHITE = YES | |
82 | |
2441
620a42739426
Improvements for VMS. (Zoltan Arpadffy)
Bram Moolenaar <bram@vim.org>
parents:
2428
diff
changeset
|
83 # Allow FEATURE_MZSCHEME |
620a42739426
Improvements for VMS. (Zoltan Arpadffy)
Bram Moolenaar <bram@vim.org>
parents:
2428
diff
changeset
|
84 # VIM_MZSCHEME = YES |
620a42739426
Improvements for VMS. (Zoltan Arpadffy)
Bram Moolenaar <bram@vim.org>
parents:
2428
diff
changeset
|
85 |
5704 | 86 # Use ICONV |
87 # VIM_ICONV = YES | |
88 | |
7 | 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 | |
1045 | 99 .IFDEF MMSVAX |
7 | 100 .IFDEF DECC # VAX with DECC |
5704 | 101 CC_DEF = cc # /decc # some versions require /decc switch but when it is not required /ver might fail |
7 | 102 PREFIX = /prefix=all |
5704 | 103 OPTIMIZE= /noopt # do not optimize on VAX. The compiler has hard time with crypto functions |
7 | 104 .ELSE # VAX with VAXC |
105 CC_DEF = cc | |
106 PREFIX = | |
5704 | 107 OPTIMIZE= /noopt |
7 | 108 CCVER = |
109 .ENDIF | |
5704 | 110 .ELSE # AXP and IA64 with DECC |
7 | 111 CC_DEF = cc |
112 PREFIX = /prefix=all | |
5704 | 113 OPTIMIZE= /opt |
7 | 114 .ENDIF |
115 | |
5704 | 116 |
7 | 117 LD_DEF = link |
118 C_INC = [.proto] | |
119 | |
120 .IFDEF DEBUG | |
121 DEBUG_DEF = ,"DEBUG" | |
122 TARGET = dvim.exe | |
123 CFLAGS = /debug/noopt$(PREFIX) | |
124 LDFLAGS = /debug | |
125 .ELSE | |
126 TARGET = vim.exe | |
5704 | 127 CFLAGS = $(OPTIMIZE)$(PREFIX) |
7 | 128 LDFLAGS = |
129 .ENDIF | |
130 | |
131 # Predefined VIM directories | |
132 # Please, use $VIM and $VIMRUNTIME logicals instead | |
133 VIMLOC = "" | |
134 VIMRUN = "" | |
135 | |
136 CONFIG_H = os_vms_conf.h | |
137 | |
826 | 138 # GTK or XPM but not both |
7 | 139 .IFDEF GTK |
140 .IFDEF GUI | |
141 .ELSE | |
142 GUI = YES | |
143 .ENDIF | |
826 | 144 .IFDEF XPM |
145 XPM = "" | |
146 .ENDIF | |
147 .ENDIF | |
148 | |
149 .IFDEF XPM | |
150 .IFDEF GUI | |
151 .ELSE | |
152 GUI = YES | |
153 .ENDIF | |
154 .IFDEF GTK | |
155 GTK = "" | |
7 | 156 .ENDIF |
414 | 157 .ENDIF |
7 | 158 |
159 .IFDEF GUI | |
160 # X/Motif/GTK executable (also works in terminal mode ) | |
161 | |
162 .IFDEF GTK | |
819 | 163 # NOTE: you need to set up your GTK_DIR (GTK root directory), because it is |
164 # unique on every system - logicals are not accepted | |
414 | 165 # please note: directory should end with . in order to /trans=conc work |
1045 | 166 # This value for GTK_DIR is an example. |
167 GTK_DIR = $1$DGA104:[USERS.ZAY.WORK.GTK1210.] | |
7 | 168 DEFS = "HAVE_CONFIG_H","FEAT_GUI_GTK" |
169 LIBS = ,OS_VMS_GTK.OPT/OPT | |
170 GUI_FLAG = /name=(as_is,short)/float=ieee/ieee=denorm | |
414 | 171 GUI_SRC = gui.c gui_gtk.c gui_gtk_f.c gui_gtk_x11.c gui_beval.c pty.c |
172 GUI_OBJ = gui.obj gui_gtk.obj gui_gtk_f.obj gui_gtk_x11.obj gui_beval.obj pty.obj | |
7 | 173 GUI_INC = ,"/gtk_root/gtk","/gtk_root/glib" |
174 # GUI_INC_VER is used just for :ver information | |
175 # this string should escape from C and DCL in the same time | |
176 GUI_INC_VER= ,\""/gtk_root/gtk\"",\""/gtk_root/glib\"" | |
414 | 177 .ELSE |
7 | 178 MOTIF = YES |
414 | 179 .IFDEF XPM |
180 DEFS = "HAVE_CONFIG_H","FEAT_GUI_MOTIF","HAVE_XPM" | |
181 .ELSE | |
7 | 182 DEFS = "HAVE_CONFIG_H","FEAT_GUI_MOTIF" |
414 | 183 .ENDIF |
7 | 184 LIBS = ,OS_VMS_MOTIF.OPT/OPT |
185 GUI_FLAG = | |
414 | 186 GUI_SRC = gui.c gui_motif.c gui_x11.c gui_beval.c gui_xmdlg.c gui_xmebw.c |
187 GUI_OBJ = gui.obj gui_motif.obj gui_x11.obj gui_beval.obj gui_xmdlg.obj gui_xmebw.obj | |
7 | 188 GUI_INC = |
189 .ENDIF | |
190 | |
191 # You need to define these variables if you do not have DECW files | |
192 # at standard location | |
193 GUI_INC_DIR = ,decw$include: | |
194 # GUI_LIB_DIR = ,sys$library: | |
195 | |
196 .ELSE | |
197 # Character terminal only executable | |
198 DEFS = "HAVE_CONFIG_H" | |
199 LIBS = | |
200 .ENDIF | |
201 | |
202 .IFDEF VIM_PERL | |
203 # Perl related setup. | |
204 PERL = perl | |
205 PERL_DEF = ,"FEAT_PERL" | |
206 PERL_SRC = if_perlsfio.c if_perl.xs | |
207 PERL_OBJ = if_perlsfio.obj if_perl.obj | |
208 PERL_LIB = ,OS_VMS_PERL.OPT/OPT | |
209 PERL_INC = ,dka0:[perlbuild.perl.lib.vms_axp.5_6_1.core] | |
210 .ENDIF | |
211 | |
212 .IFDEF VIM_PYTHON | |
213 # Python related setup. | |
214 PYTHON_DEF = ,"FEAT_PYTHON" | |
215 PYTHON_SRC = if_python.c | |
216 PYTHON_OBJ = if_python.obj | |
217 PYTHON_LIB = ,OS_VMS_PYTHON.OPT/OPT | |
218 PYTHON_INC = ,PYTHON_INCLUDE | |
219 .ENDIF | |
220 | |
221 .IFDEF VIM_TCL | |
222 # TCL related setup. | |
223 TCL_DEF = ,"FEAT_TCL" | |
224 TCL_SRC = if_tcl.c | |
225 TCL_OBJ = if_tcl.obj | |
226 TCL_LIB = ,OS_VMS_TCL.OPT/OPT | |
227 TCL_INC = ,dka0:[tcl80.generic] | |
228 .ENDIF | |
229 | |
230 .IFDEF VIM_RUBY | |
231 # RUBY related setup. | |
232 RUBY_DEF = ,"FEAT_RUBY" | |
233 RUBY_SRC = if_ruby.c | |
234 RUBY_OBJ = if_ruby.obj | |
235 RUBY_LIB = ,OS_VMS_RUBY.OPT/OPT | |
236 RUBY_INC = | |
237 .ENDIF | |
238 | |
239 .IFDEF VIM_XIM | |
240 # XIM related setup. | |
241 .IFDEF GUI | |
242 XIM_DEF = ,"FEAT_XIM" | |
243 .ENDIF | |
244 .ENDIF | |
245 | |
246 .IFDEF VIM_HANGULIN | |
247 # HANGULIN related setup. | |
248 .IFDEF GUI | |
249 HANGULIN_DEF = ,"FEAT_HANGULIN" | |
250 HANGULIN_SRC = hangulin.c | |
251 HANGULIN_OBJ = hangulin.obj | |
252 .ENDIF | |
253 .ENDIF | |
254 | |
255 .IFDEF VIM_TAG_ANYWHITE | |
256 # TAG_ANYWHITE related setup. | |
257 TAG_DEF = ,"FEAT_TAG_ANYWHITE" | |
258 .ENDIF | |
259 | |
2441
620a42739426
Improvements for VMS. (Zoltan Arpadffy)
Bram Moolenaar <bram@vim.org>
parents:
2428
diff
changeset
|
260 .IFDEF VIM_MZSCHEME |
620a42739426
Improvements for VMS. (Zoltan Arpadffy)
Bram Moolenaar <bram@vim.org>
parents:
2428
diff
changeset
|
261 # MZSCHEME related setup |
620a42739426
Improvements for VMS. (Zoltan Arpadffy)
Bram Moolenaar <bram@vim.org>
parents:
2428
diff
changeset
|
262 MZSCH_DEF = ,"FEAT_MZSCHEME" |
620a42739426
Improvements for VMS. (Zoltan Arpadffy)
Bram Moolenaar <bram@vim.org>
parents:
2428
diff
changeset
|
263 MZSCH_SRC = if_mzsch.c |
620a42739426
Improvements for VMS. (Zoltan Arpadffy)
Bram Moolenaar <bram@vim.org>
parents:
2428
diff
changeset
|
264 MZSCH_OBJ = if_mzsch.obj |
620a42739426
Improvements for VMS. (Zoltan Arpadffy)
Bram Moolenaar <bram@vim.org>
parents:
2428
diff
changeset
|
265 .ENDIF |
7 | 266 |
5704 | 267 .IFDEF VIM_ICONV |
268 # ICONV related setup | |
269 ICONV_DEF = ,"USE_ICONV" | |
270 .ENDIF | |
271 | |
7 | 272 ###################################################################### |
273 # End of configuration section. | |
274 # Please, do not change anything below without programming experience. | |
275 ###################################################################### | |
276 | |
277 MODEL_DEF = "FEAT_$(MODEL)", | |
278 | |
279 # These go into pathdef.c | |
280 VIMUSER = "''F$EDIT(F$GETJPI(" ","USERNAME"),"TRIM")'" | |
281 VIMHOST = "''F$TRNLNM("SYS$NODE")'''F$TRNLNM("UCX$INET_HOST")'.''F$TRNLNM("UCX$INET_DOMAIN")'" | |
282 | |
283 .SUFFIXES : .obj .c | |
284 | |
5704 | 285 ALL_CFLAGS = /def=($(MODEL_DEF)$(DEFS)$(DEBUG_DEF)$(PERL_DEF)$(PYTHON_DEF) - |
8281
74b15ed0a259
commit https://github.com/vim/vim/commit/85b11769ab507c7df93f319fd964fa579701b76b
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
286 $(TCL_DEF)$(RUBY_DEF)$(XIM_DEF)$(HANGULIN_DEF)$(TAG_DEF)$(MZSCH_DEF)$(ICONV_DEF)) - |
7 | 287 $(CFLAGS)$(GUI_FLAG) - |
288 /include=($(C_INC)$(GUI_INC_DIR)$(GUI_INC)$(PERL_INC)$(PYTHON_INC)$(TCL_INC)) | |
289 | |
290 # CFLAGS displayed in :ver information | |
291 # It is specially formated for correct display of unix like includes | |
292 # as $(GUI_INC) - replaced with $(GUI_INC_VER) | |
293 # Otherwise should not be any other difference. | |
5704 | 294 ALL_CFLAGS_VER = /def=($(MODEL_DEF)$(DEFS)$(DEBUG_DEF)$(PERL_DEF)$(PYTHON_DEF) - |
8281
74b15ed0a259
commit https://github.com/vim/vim/commit/85b11769ab507c7df93f319fd964fa579701b76b
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
295 $(TCL_DEF)$(RUBY_DEF)$(XIM_DEF)$(HANGULIN_DEF)$(TAG_DEF)$(MZSCH_DEF)$(ICONV_DEF)) - |
7 | 296 $(CFLAGS)$(GUI_FLAG) - |
297 /include=($(C_INC)$(GUI_INC_DIR)$(GUI_INC_VER)$(PERL_INC)$(PYTHON_INC)$(TCL_INC)) | |
298 | |
299 ALL_LIBS = $(LIBS) $(GUI_LIB_DIR) $(GUI_LIB) \ | |
8281
74b15ed0a259
commit https://github.com/vim/vim/commit/85b11769ab507c7df93f319fd964fa579701b76b
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
300 $(PERL_LIB) $(PYTHON_LIB) $(TCL_LIB) $(RUBY_LIB) |
7 | 301 |
10328
299f1669c20e
commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents:
9408
diff
changeset
|
302 SRC = arabic.c blowfish.c buffer.c charset.c crypt.c crypt_zip.c dict.c diff.c digraph.c edit.c eval.c evalfunc.c \ |
299f1669c20e
commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents:
9408
diff
changeset
|
303 ex_cmds.c ex_cmds2.c ex_docmd.c ex_eval.c ex_getln.c if_cscope.c if_xcmdsrv.c farsi.c fileio.c fold.c getchar.c \ |
299f1669c20e
commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents:
9408
diff
changeset
|
304 hardcopy.c hashtab.c json.c list.c main.c mark.c menu.c mbyte.c memfile.c memline.c message.c misc1.c \ |
2428
33148c37f3c9
Changes for VMS. Mostly by Zoltan Arpadffy.
Bram Moolenaar <bram@vim.org>
parents:
1709
diff
changeset
|
305 misc2.c move.c normal.c ops.c option.c popupmnu.c quickfix.c regexp.c search.c sha256.c\ |
10328
299f1669c20e
commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents:
9408
diff
changeset
|
306 spell.c spellfile.c syntax.c tag.c term.c termlib.c ui.c undo.c userfunc.c version.c screen.c \ |
7 | 307 window.c os_unix.c os_vms.c pathdef.c \ |
8281
74b15ed0a259
commit https://github.com/vim/vim/commit/85b11769ab507c7df93f319fd964fa579701b76b
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
308 $(GUI_SRC) $(PERL_SRC) $(PYTHON_SRC) $(TCL_SRC) \ |
2441
620a42739426
Improvements for VMS. (Zoltan Arpadffy)
Bram Moolenaar <bram@vim.org>
parents:
2428
diff
changeset
|
309 $(RUBY_SRC) $(HANGULIN_SRC) $(MZSCH_SRC) |
7 | 310 |
10328
299f1669c20e
commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents:
9408
diff
changeset
|
311 OBJ = arabic.obj blowfish.obj buffer.obj charset.obj crypt.obj crypt_zip.obj dict.obj diff.obj digraph.obj edit.obj eval.obj \ |
299f1669c20e
commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents:
9408
diff
changeset
|
312 evalfunc.obj ex_cmds.obj ex_cmds2.obj ex_docmd.obj ex_eval.obj ex_getln.obj if_cscope.obj \ |
299f1669c20e
commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents:
9408
diff
changeset
|
313 if_xcmdsrv.obj farsi.obj fileio.obj fold.obj getchar.obj hardcopy.obj hashtab.obj json.obj list.obj main.obj mark.obj \ |
7 | 314 menu.obj memfile.obj memline.obj message.obj misc1.obj misc2.obj \ |
800 | 315 move.obj mbyte.obj normal.obj ops.obj option.obj popupmnu.obj quickfix.obj \ |
10328
299f1669c20e
commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents:
9408
diff
changeset
|
316 regexp.obj search.obj sha256.obj spell.obj spellfile.obj syntax.obj tag.obj term.obj termlib.obj \ |
299f1669c20e
commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents:
9408
diff
changeset
|
317 ui.obj undo.obj userfunc.obj screen.obj version.obj window.obj os_unix.obj \ |
2441
620a42739426
Improvements for VMS. (Zoltan Arpadffy)
Bram Moolenaar <bram@vim.org>
parents:
2428
diff
changeset
|
318 os_vms.obj pathdef.obj if_mzsch.obj\ |
8281
74b15ed0a259
commit https://github.com/vim/vim/commit/85b11769ab507c7df93f319fd964fa579701b76b
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
319 $(GUI_OBJ) $(PERL_OBJ) $(PYTHON_OBJ) $(TCL_OBJ) \ |
2441
620a42739426
Improvements for VMS. (Zoltan Arpadffy)
Bram Moolenaar <bram@vim.org>
parents:
2428
diff
changeset
|
320 $(RUBY_OBJ) $(HANGULIN_OBJ) $(MZSCH_OBJ) |
7 | 321 |
322 # Default target is making the executable | |
323 all : [.auto]config.h mmk_compat motif_env gtk_env perl_env python_env tcl_env ruby_env $(TARGET) | |
324 ! $@ | |
325 | |
326 [.auto]config.h : $(CONFIG_H) | |
327 copy/nolog $(CONFIG_H) [.auto]config.h | |
328 | |
329 mmk_compat : | |
330 -@ open/write pd pathdef.c | |
331 -@ write pd "/* Empty file to satisfy MMK depend. */" | |
1221 | 332 -@ write pd "/* It will be overwritten later on... */" |
7 | 333 -@ close pd |
334 clean : | |
335 -@ if "''F$SEARCH("*.exe")'" .NES. "" then delete/noconfirm/nolog *.exe;* | |
336 -@ if "''F$SEARCH("*.obj")'" .NES. "" then delete/noconfirm/nolog *.obj;* | |
337 -@ if "''F$SEARCH("[.auto]config.h")'" .NES. "" then delete/noconfirm/nolog [.auto]config.h;* | |
338 -@ if "''F$SEARCH("pathdef.c")'" .NES. "" then delete/noconfirm/nolog pathdef.c;* | |
339 -@ if "''F$SEARCH("if_perl.c")'" .NES. "" then delete/noconfirm/nolog if_perl.c;* | |
340 -@ if "''F$SEARCH("*.opt")'" .NES. "" then delete/noconfirm/nolog *.opt;* | |
341 | |
342 # Link the target | |
343 $(TARGET) : $(OBJ) | |
344 $(LD_DEF) $(LDFLAGS) /exe=$(TARGET) $+ $(ALL_LIBS) | |
345 | |
346 .c.obj : | |
347 $(CC_DEF) $(ALL_CFLAGS) $< | |
348 | |
349 pathdef.c : check_ccver $(CONFIG_H) | |
350 -@ write sys$output "creating PATHDEF.C file." | |
351 -@ open/write pd pathdef.c | |
352 -@ write pd "/* pathdef.c -- DO NOT EDIT! */" | |
353 -@ write pd "/* This file is automatically created by MAKE_VMS.MMS" | |
354 -@ write pd " * Change the file MAKE_VMS.MMS Only. */" | |
355 -@ write pd "typedef unsigned char char_u;" | |
356 -@ write pd "char_u *default_vim_dir = (char_u *)"$(VIMLOC)";" | |
357 -@ write pd "char_u *default_vimruntime_dir = (char_u *)"$(VIMRUN)";" | |
358 -@ write pd "char_u *all_cflags = (char_u *)""$(CC_DEF)$(ALL_CFLAGS_VER)"";" | |
359 -@ write pd "char_u *all_lflags = (char_u *)""$(LD_DEF)$(LDFLAGS) /exe=$(TARGET) *.OBJ $(ALL_LIBS)"";" | |
360 -@ write pd "char_u *compiler_version = (char_u *) ""''CC_VER'"";" | |
361 -@ write pd "char_u *compiled_user = (char_u *) "$(VIMUSER)";" | |
1045 | 362 -@ write pd "char_u *compiled_sys = (char_u *) "$(VIMHOST)";" |
363 -@ write pd "char_u *compiled_arch = (char_u *) ""$(MMSARCH_NAME)"";" | |
7 | 364 -@ close pd |
365 | |
366 if_perl.c : if_perl.xs | |
367 -@ $(PERL) PERL_ROOT:[LIB.ExtUtils]xsubpp -prototypes -typemap - | |
368 PERL_ROOT:[LIB.ExtUtils]typemap if_perl.xs >> $@ | |
369 | |
370 make_vms.mms : | |
371 -@ write sys$output "The name of the makefile MUST be <MAKE_VMS.MMS> !!!" | |
372 | |
373 .IFDEF CCVER | |
374 # This part can make some complications if you're using some predefined | |
375 # symbols/flags for your compiler. If does, just comment out CCVER variable | |
376 check_ccver : | |
377 -@ define sys$output cc_ver.tmp | |
378 -@ $(CC_DEF)/version | |
379 -@ deassign sys$output | |
380 -@ open/read file cc_ver.tmp | |
381 -@ read file CC_VER | |
382 -@ close file | |
383 -@ delete/noconfirm/nolog cc_ver.tmp.* | |
384 .ELSE | |
385 check_ccver : | |
386 -@ ! | |
387 .ENDIF | |
388 | |
389 .IFDEF MOTIF | |
390 motif_env : | |
414 | 391 .IFDEF XPM |
392 -@ write sys$output "using DECW/Motif/XPM environment." | |
393 .ELSE | |
856 | 394 -@ write sys$output "using DECW/Motif environment." |
414 | 395 .ENDIF |
7 | 396 -@ write sys$output "creating OS_VMS_MOTIF.OPT file." |
397 -@ open/write opt_file OS_VMS_MOTIF.OPT | |
398 -@ write opt_file "sys$share:decw$xmlibshr12.exe/share,-" | |
399 -@ write opt_file "sys$share:decw$xtlibshrr5.exe/share,-" | |
400 -@ write opt_file "sys$share:decw$xlibshr.exe/share" | |
401 -@ close opt_file | |
402 .ELSE | |
403 motif_env : | |
404 -@ ! | |
405 .ENDIF | |
406 | |
407 | |
408 .IFDEF GTK | |
409 gtk_env : | |
410 -@ write sys$output "using GTK environment:" | |
411 -@ define/nolog gtk_root /trans=conc $(GTK_DIR) | |
412 -@ show logical gtk_root | |
413 -@ write sys$output " include path: "$(GUI_INC)"" | |
414 -@ write sys$output "creating OS_VMS_GTK.OPT file." | |
415 -@ open/write opt_file OS_VMS_GTK.OPT | |
416 -@ write opt_file "gtk_root:[glib]libglib.exe /share,-" | |
417 -@ write opt_file "gtk_root:[glib.gmodule]libgmodule.exe /share,-" | |
418 -@ write opt_file "gtk_root:[gtk.gdk]libgdk.exe /share,-" | |
419 -@ write opt_file "gtk_root:[gtk.gtk]libgtk.exe /share,-" | |
420 -@ write opt_file "sys$share:decw$xmlibshr12.exe/share,-" | |
421 -@ write opt_file "sys$share:decw$xtlibshrr5.exe/share,-" | |
422 -@ write opt_file "sys$share:decw$xlibshr.exe/share" | |
423 -@ close opt_file | |
424 .ELSE | |
425 gtk_env : | |
426 -@ ! | |
427 .ENDIF | |
428 | |
429 .IFDEF VIM_PERL | |
430 perl_env : | |
431 -@ write sys$output "using PERL environment:" | |
432 -@ show logical PERLSHR | |
433 -@ write sys$output " include path: ""$(PERL_INC)""" | |
434 -@ show symbol perl | |
435 -@ open/write pd if_perl.c | |
436 -@ write pd "/* Empty file to satisfy MMK depend. */" | |
1221 | 437 -@ write pd "/* It will be overwritten later on... */" |
7 | 438 -@ close pd |
439 -@ write sys$output "creating OS_VMS_PERL.OPT file." | |
440 -@ open/write opt_file OS_VMS_PERL.OPT | |
441 -@ write opt_file "PERLSHR /share" | |
442 -@ close opt_file | |
443 .ELSE | |
444 perl_env : | |
445 -@ ! | |
446 .ENDIF | |
447 | |
448 .IFDEF VIM_PYTHON | |
449 python_env : | |
450 -@ write sys$output "using PYTHON environment:" | |
451 -@ show logical PYTHON_INCLUDE | |
452 -@ show logical PYTHON_OLB | |
453 -@ write sys$output "creating OS_VMS_PYTHON.OPT file." | |
454 -@ open/write opt_file OS_VMS_PYTHON.OPT | |
455 -@ write opt_file "PYTHON_OLB:PYTHON.OLB /share" | |
456 -@ close opt_file | |
457 .ELSE | |
458 python_env : | |
459 -@ ! | |
460 .ENDIF | |
461 | |
462 .IFDEF VIM_TCL | |
463 tcl_env : | |
464 -@ write sys$output "using TCL environment:" | |
465 -@ show logical TCLSHR | |
466 -@ write sys$output " include path: ""$(TCL_INC)""" | |
467 -@ write sys$output "creating OS_VMS_TCL.OPT file." | |
468 -@ open/write opt_file OS_VMS_TCL.OPT | |
469 -@ write opt_file "TCLSHR /share" | |
470 -@ close opt_file | |
471 .ELSE | |
472 tcl_env : | |
473 -@ ! | |
474 .ENDIF | |
475 | |
476 .IFDEF VIM_RUBY | |
477 ruby_env : | |
478 -@ write sys$output "using RUBY environment:" | |
479 -@ write sys$output " include path: ""$(RUBY_INC)""" | |
480 -@ write sys$output "creating OS_VMS_RUBY.OPT file." | |
481 -@ open/write opt_file OS_VMS_RUBY.OPT | |
482 -@ write opt_file "RUBYSHR /share" | |
483 -@ close opt_file | |
484 .ELSE | |
485 ruby_env : | |
486 -@ ! | |
487 .ENDIF | |
488 | |
9408
6814811b90d5
commit https://github.com/vim/vim/commit/3b98b830017b8bf5fd270db93dfe187434df1960
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
489 arabic.obj : arabic.c vim.h |
6814811b90d5
commit https://github.com/vim/vim/commit/3b98b830017b8bf5fd270db93dfe187434df1960
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
490 blowfish.obj : blowfish.c vim.h |
39 | 491 buffer.obj : buffer.c vim.h [.auto]config.h feature.h os_unix.h \ |
492 ascii.h keymap.h term.h macros.h structs.h regexp.h \ | |
493 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ | |
494 globals.h farsi.h arabic.h version.h | |
495 charset.obj : charset.c vim.h [.auto]config.h feature.h os_unix.h \ | |
496 ascii.h keymap.h term.h macros.h structs.h regexp.h \ | |
497 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ | |
498 globals.h farsi.h arabic.h | |
10328
299f1669c20e
commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents:
9408
diff
changeset
|
499 crypt.obj : crypt.c vim.h [.auto]config.h feature.h os_unix.h \ |
299f1669c20e
commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents:
9408
diff
changeset
|
500 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \ |
299f1669c20e
commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents:
9408
diff
changeset
|
501 gui_beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \ |
299f1669c20e
commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents:
9408
diff
changeset
|
502 globals.h farsi.h arabic.h |
299f1669c20e
commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents:
9408
diff
changeset
|
503 crypt_zip.obj : crypt_zip.c vim.h [.auto]config.h feature.h os_unix.h \ |
299f1669c20e
commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents:
9408
diff
changeset
|
504 ascii.h keymap.h term.h macros.h option.h structs.h \ |
299f1669c20e
commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents:
9408
diff
changeset
|
505 regexp.h gui.h gui_beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h \ |
299f1669c20e
commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents:
9408
diff
changeset
|
506 proto.h globals.h farsi.h arabic.h |
299f1669c20e
commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents:
9408
diff
changeset
|
507 dict.obj : dict.c vim.h [.auto]config.h feature.h os_unix.h \ |
299f1669c20e
commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents:
9408
diff
changeset
|
508 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \ |
299f1669c20e
commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents:
9408
diff
changeset
|
509 gui_beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \ |
299f1669c20e
commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents:
9408
diff
changeset
|
510 globals.h farsi.h arabic.h |
39 | 511 diff.obj : diff.c vim.h [.auto]config.h feature.h os_unix.h \ |
512 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \ | |
513 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \ | |
514 arabic.h | |
515 digraph.obj : digraph.c vim.h [.auto]config.h feature.h os_unix.h \ | |
516 ascii.h keymap.h term.h macros.h structs.h regexp.h \ | |
517 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ | |
518 globals.h farsi.h arabic.h | |
519 edit.obj : edit.c vim.h [.auto]config.h feature.h os_unix.h \ | |
520 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \ | |
521 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \ | |
522 arabic.h | |
523 eval.obj : eval.c vim.h [.auto]config.h feature.h os_unix.h \ | |
524 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \ | |
525 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \ | |
526 arabic.h version.h | |
10328
299f1669c20e
commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents:
9408
diff
changeset
|
527 evalfunc.obj : evalfunc.c vim.h [.auto]config.h feature.h os_unix.h \ |
299f1669c20e
commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents:
9408
diff
changeset
|
528 ascii.h keymap.h term.h macros.h option.h structs.h \ |
299f1669c20e
commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents:
9408
diff
changeset
|
529 regexp.h gui.h gui_beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h \ |
299f1669c20e
commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents:
9408
diff
changeset
|
530 proto.h globals.h farsi.h arabic.h version.h |
39 | 531 ex_cmds.obj : ex_cmds.c vim.h [.auto]config.h feature.h os_unix.h \ |
532 ascii.h keymap.h term.h macros.h structs.h regexp.h \ | |
533 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ | |
534 globals.h farsi.h arabic.h version.h | |
535 ex_cmds2.obj : ex_cmds2.c vim.h [.auto]config.h feature.h os_unix.h \ | |
536 ascii.h keymap.h term.h macros.h structs.h regexp.h \ | |
537 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ | |
538 globals.h farsi.h arabic.h version.h | |
539 ex_docmd.obj : ex_docmd.c vim.h [.auto]config.h feature.h os_unix.h \ | |
540 ascii.h keymap.h term.h macros.h structs.h regexp.h \ | |
541 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ | |
542 globals.h farsi.h arabic.h | |
543 ex_eval.obj : ex_eval.c vim.h [.auto]config.h feature.h os_unix.h \ | |
544 ascii.h keymap.h term.h macros.h structs.h regexp.h \ | |
545 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ | |
546 globals.h farsi.h arabic.h | |
547 ex_getln.obj : ex_getln.c vim.h [.auto]config.h feature.h os_unix.h \ | |
548 ascii.h keymap.h term.h macros.h structs.h regexp.h \ | |
549 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ | |
550 globals.h farsi.h arabic.h | |
9408
6814811b90d5
commit https://github.com/vim/vim/commit/3b98b830017b8bf5fd270db93dfe187434df1960
Christian Brabandt <cb@256bit.org>
parents:
8281
diff
changeset
|
551 farsi.obj : farsi.c vim.h |
39 | 552 fileio.obj : fileio.c vim.h [.auto]config.h feature.h os_unix.h \ |
553 ascii.h keymap.h term.h macros.h structs.h regexp.h \ | |
554 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ | |
555 globals.h farsi.h arabic.h | |
556 fold.obj : fold.c vim.h [.auto]config.h feature.h os_unix.h \ | |
557 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \ | |
558 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \ | |
559 arabic.h | |
560 getchar.obj : getchar.c vim.h [.auto]config.h feature.h os_unix.h \ | |
561 ascii.h keymap.h term.h macros.h structs.h regexp.h \ | |
562 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ | |
563 globals.h farsi.h arabic.h | |
440 | 564 hardcopy.obj : hardcopy.c vim.h [.auto]config.h feature.h os_unix.h \ |
565 ascii.h keymap.h term.h macros.h structs.h regexp.h \ | |
566 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ | |
567 globals.h farsi.h arabic.h | |
800 | 568 hashtab.obj : hashtab.c vim.h [.auto]config.h feature.h os_unix.h \ |
119 | 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 | |
39 | 572 if_cscope.obj : if_cscope.c vim.h [.auto]config.h feature.h os_unix.h \ |
573 ascii.h keymap.h term.h macros.h structs.h regexp.h \ | |
574 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ | |
575 globals.h farsi.h arabic.h if_cscope.h | |
576 if_xcmdsrv.obj : if_xcmdsrv.c vim.h [.auto]config.h feature.h os_unix.h \ | |
577 ascii.h keymap.h term.h macros.h structs.h regexp.h \ | |
578 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ | |
579 globals.h farsi.h arabic.h version.h | |
2441
620a42739426
Improvements for VMS. (Zoltan Arpadffy)
Bram Moolenaar <bram@vim.org>
parents:
2428
diff
changeset
|
580 if_mzsch.obj : if_mzsch.c vim.h [.auto]config.h feature.h os_unix.h \ |
620a42739426
Improvements for VMS. (Zoltan Arpadffy)
Bram Moolenaar <bram@vim.org>
parents:
2428
diff
changeset
|
581 ascii.h keymap.h term.h macros.h option.h structs.h \ |
620a42739426
Improvements for VMS. (Zoltan Arpadffy)
Bram Moolenaar <bram@vim.org>
parents:
2428
diff
changeset
|
582 regexp.h gui.h gui_beval.h [.proto]gui_beval.pro ex_cmds.h proto.h \ |
620a42739426
Improvements for VMS. (Zoltan Arpadffy)
Bram Moolenaar <bram@vim.org>
parents:
2428
diff
changeset
|
583 globals.h farsi.h arabic.h if_mzsch.h |
7712
bce3b5ddb393
commit https://github.com/vim/vim/commit/520e1e41f35b063ede63b41738c82d6636e78c34
Christian Brabandt <cb@256bit.org>
parents:
6448
diff
changeset
|
584 json.obj : json.c vim.h [.auto]config.h feature.h os_unix.h \ |
bce3b5ddb393
commit https://github.com/vim/vim/commit/520e1e41f35b063ede63b41738c82d6636e78c34
Christian Brabandt <cb@256bit.org>
parents:
6448
diff
changeset
|
585 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \ |
bce3b5ddb393
commit https://github.com/vim/vim/commit/520e1e41f35b063ede63b41738c82d6636e78c34
Christian Brabandt <cb@256bit.org>
parents:
6448
diff
changeset
|
586 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \ |
bce3b5ddb393
commit https://github.com/vim/vim/commit/520e1e41f35b063ede63b41738c82d6636e78c34
Christian Brabandt <cb@256bit.org>
parents:
6448
diff
changeset
|
587 arabic.h version.h |
10328
299f1669c20e
commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents:
9408
diff
changeset
|
588 list.obj : list.c vim.h [.auto]config.h feature.h os_unix.h \ |
299f1669c20e
commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents:
9408
diff
changeset
|
589 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \ |
299f1669c20e
commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents:
9408
diff
changeset
|
590 gui_beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \ |
299f1669c20e
commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents:
9408
diff
changeset
|
591 globals.h farsi.h arabic.h |
39 | 592 main.obj : main.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 farsi.c arabic.c | |
596 mark.obj : mark.c vim.h [.auto]config.h feature.h os_unix.h \ | |
597 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \ | |
598 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \ | |
599 arabic.h | |
600 memfile.obj : memfile.c vim.h [.auto]config.h feature.h os_unix.h \ | |
601 ascii.h keymap.h term.h macros.h structs.h regexp.h \ | |
602 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ | |
603 globals.h farsi.h arabic.h | |
604 memline.obj : memline.c vim.h [.auto]config.h feature.h os_unix.h \ | |
605 ascii.h keymap.h term.h macros.h structs.h regexp.h \ | |
606 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ | |
607 globals.h farsi.h arabic.h | |
608 menu.obj : menu.c vim.h [.auto]config.h feature.h os_unix.h \ | |
609 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \ | |
610 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \ | |
611 arabic.h | |
612 message.obj : message.c vim.h [.auto]config.h feature.h os_unix.h \ | |
613 ascii.h keymap.h term.h macros.h structs.h regexp.h \ | |
614 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ | |
615 globals.h farsi.h arabic.h | |
616 misc1.obj : misc1.c vim.h [.auto]config.h feature.h os_unix.h \ | |
617 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \ | |
618 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \ | |
619 arabic.h version.h | |
620 misc2.obj : misc2.c vim.h [.auto]config.h feature.h os_unix.h \ | |
621 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \ | |
622 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \ | |
623 arabic.h | |
624 move.obj : move.c vim.h [.auto]config.h feature.h os_unix.h \ | |
625 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \ | |
626 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \ | |
627 arabic.h | |
628 mbyte.obj : mbyte.c vim.h [.auto]config.h feature.h os_unix.h \ | |
629 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \ | |
630 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \ | |
631 arabic.h | |
632 normal.obj : normal.c vim.h [.auto]config.h feature.h os_unix.h \ | |
633 ascii.h keymap.h term.h macros.h structs.h regexp.h \ | |
634 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ | |
635 globals.h farsi.h arabic.h | |
636 ops.obj : ops.c vim.h [.auto]config.h feature.h os_unix.h \ | |
637 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \ | |
638 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \ | |
639 arabic.h | |
640 option.obj : option.c vim.h [.auto]config.h feature.h os_unix.h \ | |
641 ascii.h keymap.h term.h macros.h structs.h regexp.h \ | |
642 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ | |
643 globals.h farsi.h arabic.h | |
644 os_unix.obj : os_unix.c vim.h [.auto]config.h feature.h os_unix.h \ | |
645 ascii.h keymap.h term.h macros.h structs.h regexp.h \ | |
646 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ | |
647 globals.h farsi.h arabic.h os_unixx.h | |
648 os_vms.obj : os_vms.c vim.h [.auto]config.h feature.h os_unix.h \ | |
649 ascii.h keymap.h term.h macros.h structs.h regexp.h \ | |
650 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ | |
651 globals.h farsi.h arabic.h os_unixx.h | |
652 pathdef.obj : pathdef.c vim.h [.auto]config.h feature.h os_unix.h \ | |
653 ascii.h keymap.h term.h macros.h structs.h regexp.h \ | |
654 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ | |
655 globals.h farsi.h arabic.h | |
800 | 656 popupmnu.obj : popupmnu.c vim.h [.auto]config.h feature.h os_unix.h \ |
683 | 657 ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
658 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ | |
659 globals.h farsi.h arabic.h | |
39 | 660 quickfix.obj : quickfix.c vim.h [.auto]config.h feature.h os_unix.h \ |
661 ascii.h keymap.h term.h macros.h structs.h regexp.h \ | |
662 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ | |
663 globals.h farsi.h arabic.h | |
664 regexp.obj : regexp.c vim.h [.auto]config.h feature.h os_unix.h \ | |
665 ascii.h keymap.h term.h macros.h structs.h regexp.h \ | |
666 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ | |
667 globals.h farsi.h arabic.h | |
668 screen.obj : screen.c vim.h [.auto]config.h feature.h os_unix.h \ | |
669 ascii.h keymap.h term.h macros.h structs.h regexp.h \ | |
670 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ | |
671 globals.h farsi.h arabic.h | |
672 search.obj : search.c vim.h [.auto]config.h feature.h os_unix.h \ | |
673 ascii.h keymap.h term.h macros.h structs.h regexp.h \ | |
674 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ | |
675 globals.h farsi.h arabic.h | |
10328
299f1669c20e
commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents:
9408
diff
changeset
|
676 sha256.obj : sha256.c vim.h [.auto]config.h feature.h os_unix.h \ |
299f1669c20e
commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents:
9408
diff
changeset
|
677 ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \ |
299f1669c20e
commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents:
9408
diff
changeset
|
678 gui_beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \ |
299f1669c20e
commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents:
9408
diff
changeset
|
679 globals.h farsi.h arabic.h |
221 | 680 spell.obj : spell.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 | |
10328
299f1669c20e
commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents:
9408
diff
changeset
|
684 spellfile.obj : spellfile.c vim.h [.auto]config.h feature.h os_unix.h \ |
299f1669c20e
commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents:
9408
diff
changeset
|
685 ascii.h keymap.h term.h macros.h option.h structs.h \ |
299f1669c20e
commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents:
9408
diff
changeset
|
686 regexp.h gui.h gui_beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h \ |
299f1669c20e
commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents:
9408
diff
changeset
|
687 proto.h globals.h farsi.h arabic.h |
39 | 688 syntax.obj : syntax.c vim.h [.auto]config.h feature.h os_unix.h \ |
689 ascii.h keymap.h term.h macros.h structs.h regexp.h \ | |
690 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ | |
691 globals.h farsi.h arabic.h | |
692 tag.obj : tag.c vim.h [.auto]config.h feature.h os_unix.h \ | |
693 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \ | |
694 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \ | |
695 arabic.h | |
696 term.obj : term.c vim.h [.auto]config.h feature.h os_unix.h \ | |
697 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \ | |
698 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \ | |
699 arabic.h | |
700 termlib.obj : termlib.c vim.h [.auto]config.h feature.h os_unix.h \ | |
701 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \ | |
702 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \ | |
703 arabic.h | |
704 ui.obj : ui.c vim.h [.auto]config.h feature.h os_unix.h \ | |
705 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \ | |
706 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \ | |
707 arabic.h | |
708 undo.obj : undo.c vim.h [.auto]config.h feature.h os_unix.h \ | |
709 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \ | |
710 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \ | |
711 arabic.h | |
10328
299f1669c20e
commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents:
9408
diff
changeset
|
712 userfunc.obj : userfunc.c vim.h [.auto]config.h feature.h os_unix.h \ |
299f1669c20e
commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents:
9408
diff
changeset
|
713 ascii.h keymap.h term.h macros.h option.h structs.h \ |
299f1669c20e
commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents:
9408
diff
changeset
|
714 regexp.h gui.h gui_beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h \ |
299f1669c20e
commit https://github.com/vim/vim/commit/de5e2c219b99895445fb75ae3541ee69282a5846
Christian Brabandt <cb@256bit.org>
parents:
9408
diff
changeset
|
715 proto.h globals.h farsi.h arabic.h |
39 | 716 version.obj : version.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 version.h | |
720 window.obj : window.c vim.h [.auto]config.h feature.h os_unix.h \ | |
721 ascii.h keymap.h term.h macros.h structs.h regexp.h \ | |
722 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ | |
723 globals.h farsi.h arabic.h | |
724 gui.obj : gui.c vim.h [.auto]config.h feature.h os_unix.h \ | |
725 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \ | |
726 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \ | |
727 arabic.h | |
728 gui_gtk.obj : gui_gtk.c gui_gtk_f.h vim.h [.auto]config.h feature.h \ | |
729 os_unix.h ascii.h keymap.h term.h macros.h structs.h \ | |
730 regexp.h gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h \ | |
731 proto.h globals.h farsi.h arabic.h [-.pixmaps]stock_icons.h | |
732 gui_gtk_f.obj : gui_gtk_f.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 gui_gtk_f.h | |
736 gui_motif.obj : gui_motif.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 [-.pixmaps]alert.xpm [-.pixmaps]error.xpm \ | |
740 [-.pixmaps]generic.xpm [-.pixmaps]info.xpm [-.pixmaps]quest.xpm | |
741 gui_athena.obj : gui_athena.c vim.h [.auto]config.h feature.h os_unix.h \ | |
742 ascii.h keymap.h term.h macros.h structs.h regexp.h \ | |
743 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ | |
744 globals.h farsi.h arabic.h gui_at_sb.h | |
745 gui_gtk_x11.obj : gui_gtk_x11.c vim.h [.auto]config.h feature.h os_unix.h \ | |
746 ascii.h keymap.h term.h macros.h structs.h regexp.h \ | |
747 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ | |
748 globals.h farsi.h arabic.h gui_gtk_f.h [-.runtime]vim32x32.xpm \ | |
749 [-.runtime]vim16x16.xpm [-.runtime]vim48x48.xpm | |
750 gui_x11.obj : gui_x11.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 [-.runtime]vim32x32.xpm \ | |
754 [-.runtime]vim16x16.xpm [-.runtime]vim48x48.xpm [-.pixmaps]tb_new.xpm \ | |
755 [-.pixmaps]tb_open.xpm [-.pixmaps]tb_close.xpm [-.pixmaps]tb_save.xpm \ | |
756 [-.pixmaps]tb_print.xpm [-.pixmaps]tb_cut.xpm [-.pixmaps]tb_copy.xpm \ | |
757 [-.pixmaps]tb_paste.xpm [-.pixmaps]tb_find.xpm \ | |
758 [-.pixmaps]tb_find_next.xpm [-.pixmaps]tb_find_prev.xpm \ | |
759 [-.pixmaps]tb_find_help.xpm [-.pixmaps]tb_exit.xpm \ | |
760 [-.pixmaps]tb_undo.xpm [-.pixmaps]tb_redo.xpm [-.pixmaps]tb_help.xpm \ | |
761 [-.pixmaps]tb_macro.xpm [-.pixmaps]tb_make.xpm \ | |
762 [-.pixmaps]tb_save_all.xpm [-.pixmaps]tb_jump.xpm \ | |
763 [-.pixmaps]tb_ctags.xpm [-.pixmaps]tb_load_session.xpm \ | |
764 [-.pixmaps]tb_save_session.xpm [-.pixmaps]tb_new_session.xpm \ | |
765 [-.pixmaps]tb_blank.xpm [-.pixmaps]tb_maximize.xpm \ | |
766 [-.pixmaps]tb_split.xpm [-.pixmaps]tb_minimize.xpm \ | |
767 [-.pixmaps]tb_shell.xpm [-.pixmaps]tb_replace.xpm \ | |
768 [-.pixmaps]tb_vsplit.xpm [-.pixmaps]tb_maxwidth.xpm \ | |
769 [-.pixmaps]tb_minwidth.xpm | |
770 gui_at_sb.obj : gui_at_sb.c vim.h [.auto]config.h feature.h os_unix.h \ | |
771 ascii.h keymap.h term.h macros.h structs.h regexp.h \ | |
772 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ | |
773 globals.h farsi.h arabic.h gui_at_sb.h | |
774 gui_at_fs.obj : gui_at_fs.c vim.h [.auto]config.h feature.h os_unix.h \ | |
775 ascii.h keymap.h term.h macros.h structs.h regexp.h \ | |
776 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ | |
777 globals.h farsi.h arabic.h gui_at_sb.h | |
778 pty.obj : pty.c vim.h [.auto]config.h feature.h os_unix.h \ | |
779 ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h gui_beval.h \ | |
780 [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h farsi.h \ | |
781 arabic.h | |
782 hangulin.obj : hangulin.c vim.h [.auto]config.h feature.h os_unix.h \ | |
783 ascii.h keymap.h term.h macros.h structs.h regexp.h \ | |
784 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ | |
785 globals.h farsi.h arabic.h | |
786 if_perl.obj : [.auto]if_perl.c vim.h [.auto]config.h feature.h os_unix.h \ | |
787 ascii.h keymap.h term.h macros.h structs.h regexp.h \ | |
788 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ | |
789 globals.h farsi.h arabic.h | |
790 if_perlsfio.obj : if_perlsfio.c vim.h [.auto]config.h feature.h os_unix.h \ | |
791 ascii.h keymap.h term.h macros.h structs.h regexp.h \ | |
792 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ | |
793 globals.h farsi.h arabic.h | |
794 if_python.obj : if_python.c vim.h [.auto]config.h feature.h os_unix.h \ | |
795 ascii.h keymap.h term.h macros.h structs.h regexp.h \ | |
796 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ | |
797 globals.h farsi.h arabic.h | |
798 if_tcl.obj : if_tcl.c vim.h [.auto]config.h feature.h os_unix.h \ | |
799 ascii.h keymap.h term.h macros.h structs.h regexp.h \ | |
800 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ | |
801 globals.h farsi.h arabic.h | |
802 if_ruby.obj : if_ruby.c vim.h [.auto]config.h feature.h os_unix.h \ | |
803 ascii.h keymap.h term.h macros.h structs.h regexp.h \ | |
804 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ | |
805 globals.h farsi.h arabic.h version.h | |
806 gui_beval.obj : gui_beval.c vim.h [.auto]config.h feature.h os_unix.h \ | |
807 ascii.h keymap.h term.h macros.h structs.h regexp.h \ | |
808 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ | |
809 globals.h farsi.h arabic.h | |
810 workshop.obj : workshop.c [.auto]config.h integration.h vim.h feature.h \ | |
811 os_unix.h ascii.h keymap.h term.h macros.h structs.h \ | |
812 regexp.h gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h \ | |
813 proto.h globals.h farsi.h arabic.h version.h workshop.h | |
814 wsdebug.obj : wsdebug.c | |
815 integration.obj : integration.c vim.h [.auto]config.h feature.h os_unix.h \ | |
816 ascii.h keymap.h term.h macros.h structs.h regexp.h \ | |
817 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ | |
818 globals.h farsi.h arabic.h integration.h | |
819 netbeans.obj : netbeans.c vim.h [.auto]config.h feature.h os_unix.h \ | |
820 ascii.h keymap.h term.h macros.h structs.h regexp.h \ | |
821 gui.h gui_beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ | |
822 globals.h farsi.h arabic.h version.h | |
414 | 823 gui_xmdlg.obj : gui_xmdlg.c |
824 gui_xmebw.obj : gui_xmebw.c |