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