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 | 82c38fe | 2021-01-04 10:47:26 +0100 | [diff] [blame] | 5 | # Last change: 2021 Jan 04 |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6 | # |
Bram Moolenaar | 0c5c3fa | 2019-11-30 22:38:16 +0100 | [diff] [blame] | 7 | # This script has been tested on VMS 6.2 to 8.4 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 | |
| 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) |
Bram Moolenaar | 84a05ac | 2013-05-06 04:24:17 +0200 | [diff] [blame] | 34 | # HUGE - All possible features enabled. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 35 | # Please select one of these alternatives above. |
Bram Moolenaar | ac98e5d | 2008-09-01 14:51:37 +0000 | [diff] [blame] | 36 | MODEL = HUGE |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 37 | |
| 38 | # GUI or terminal mode executable. |
| 39 | # Comment out if you want just the character terminal mode only. |
Bram Moolenaar | 4c3f536 | 2006-04-11 21:38:50 +0000 | [diff] [blame] | 40 | # GUI with Motif |
Bram Moolenaar | 82c38fe | 2021-01-04 10:47:26 +0100 | [diff] [blame] | 41 | # GUI = YES |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 42 | |
| 43 | # GUI with GTK |
| 44 | # If you have GTK installed you might want to enable this option. |
Bram Moolenaar | 3d20ca1 | 2006-11-28 16:43:58 +0000 | [diff] [blame] | 45 | # NOTE: you will need to properly define GTK_DIR below |
Bram Moolenaar | 82c38fe | 2021-01-04 10:47:26 +0100 | [diff] [blame] | 46 | # NOTE: since Vim 7.3 GTK 2+ is used that is not ported to VMS, |
| 47 | # therefore this option should not be used |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 48 | # GTK = YES |
| 49 | |
Bram Moolenaar | 8d34330 | 2005-07-12 22:46:17 +0000 | [diff] [blame] | 50 | # GUI/Motif with XPM |
| 51 | # If you have XPM installed you might want to build Motif version with toolbar |
Bram Moolenaar | 82c38fe | 2021-01-04 10:47:26 +0100 | [diff] [blame] | 52 | # XPM = YES |
Bram Moolenaar | 8d34330 | 2005-07-12 22:46:17 +0000 | [diff] [blame] | 53 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 54 | # Comment out if you want the compiler version with :ver command. |
| 55 | # NOTE: This part can make some complications if you're using some |
| 56 | # predefined symbols/flags for your compiler. If does, just leave behind |
Bram Moolenaar | 84a05ac | 2013-05-06 04:24:17 +0200 | [diff] [blame] | 57 | # the comment variable CCVER. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 58 | CCVER = YES |
| 59 | |
| 60 | # Uncomment if want a debug version. Resulting executable is DVIM.EXE |
| 61 | # Development purpose only! Normally, it should not be defined. !!! |
Bram Moolenaar | 82c38fe | 2021-01-04 10:47:26 +0100 | [diff] [blame] | 62 | # DEBUG = YES |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 63 | |
| 64 | # Languages support for Perl, Python, TCL etc. |
| 65 | # If you don't need it really, leave them behind the comment. |
| 66 | # You will need related libraries, include files etc. |
| 67 | # VIM_TCL = YES |
| 68 | # VIM_PERL = YES |
| 69 | # VIM_PYTHON = YES |
| 70 | # VIM_RUBY = YES |
Bram Moolenaar | 82c38fe | 2021-01-04 10:47:26 +0100 | [diff] [blame] | 71 | # VIM_LUA = YES |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 72 | |
| 73 | # X Input Method. For entering special languages like chinese and |
Bram Moolenaar | bd3bc03 | 2019-11-21 17:34:51 +0100 | [diff] [blame] | 74 | # Japanese. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 75 | # If you don't need it really, leave it behind the comment. |
| 76 | # VIM_XIM = YES |
| 77 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 78 | # Allow any white space to separate the fields in a tags file |
| 79 | # When not defined, only a TAB is allowed. |
| 80 | # VIM_TAG_ANYWHITE = YES |
| 81 | |
Bram Moolenaar | f878bcf | 2010-07-30 22:29:41 +0200 | [diff] [blame] | 82 | # Allow FEATURE_MZSCHEME |
| 83 | # VIM_MZSCHEME = YES |
| 84 | |
Bram Moolenaar | 206f011 | 2014-03-12 16:51:55 +0100 | [diff] [blame] | 85 | # Use ICONV |
| 86 | # VIM_ICONV = YES |
| 87 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 88 | ###################################################################### |
| 89 | # Directory, library and include files configuration section. |
| 90 | # Normally you need not to change anything below. ! |
| 91 | # These may need to be defined if things are not in standard locations |
| 92 | # |
| 93 | # You can find some explanation in INSTALLVMS.TXT |
| 94 | ###################################################################### |
| 95 | |
| 96 | # Compiler setup |
| 97 | |
Bram Moolenaar | 3d20ca1 | 2006-11-28 16:43:58 +0000 | [diff] [blame] | 98 | .IFDEF MMSVAX |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 99 | .IFDEF DECC # VAX with DECC |
Bram Moolenaar | 206f011 | 2014-03-12 16:51:55 +0100 | [diff] [blame] | 100 | CC_DEF = cc # /decc # some versions require /decc switch but when it is not required /ver might fail |
Bram Moolenaar | 467676d | 2020-12-30 13:14:45 +0100 | [diff] [blame] | 101 | PREFIX = /prefix=all/name=(upper,short) |
Bram Moolenaar | 206f011 | 2014-03-12 16:51:55 +0100 | [diff] [blame] | 102 | OPTIMIZE= /noopt # do not optimize on VAX. The compiler has hard time with crypto functions |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 103 | .ELSE # VAX with VAXC |
| 104 | CC_DEF = cc |
| 105 | PREFIX = |
Bram Moolenaar | 206f011 | 2014-03-12 16:51:55 +0100 | [diff] [blame] | 106 | OPTIMIZE= /noopt |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 107 | CCVER = |
| 108 | .ENDIF |
Bram Moolenaar | 206f011 | 2014-03-12 16:51:55 +0100 | [diff] [blame] | 109 | .ELSE # AXP and IA64 with DECC |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 110 | CC_DEF = cc |
Bram Moolenaar | 467676d | 2020-12-30 13:14:45 +0100 | [diff] [blame] | 111 | PREFIX = /prefix=all/name=(upper,short) |
Bram Moolenaar | 206f011 | 2014-03-12 16:51:55 +0100 | [diff] [blame] | 112 | OPTIMIZE= /opt |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 113 | .ENDIF |
| 114 | |
Bram Moolenaar | 206f011 | 2014-03-12 16:51:55 +0100 | [diff] [blame] | 115 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 116 | LD_DEF = link |
| 117 | C_INC = [.proto] |
| 118 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 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 |
Bram Moolenaar | 206f011 | 2014-03-12 16:51:55 +0100 | [diff] [blame] | 126 | CFLAGS = $(OPTIMIZE)$(PREFIX) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 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. |
Bram Moolenaar | 88c86eb | 2019-01-17 17:13:30 +0100 | [diff] [blame] | 166 | GTK_DIR = DKA0:[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 |
Bram Moolenaar | 467676d | 2020-12-30 13:14:45 +0100 | [diff] [blame] | 169 | GUI_FLAG = /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" |
Bram Moolenaar | 88c86eb | 2019-01-17 17:13:30 +0100 | [diff] [blame] | 180 | XPM_INC = ,[.xpm.include] |
Bram Moolenaar | 467676d | 2020-12-30 13:14:45 +0100 | [diff] [blame] | 181 | XPM_LIB = ,OS_VMS_XPM.OPT/OPT |
Bram Moolenaar | 8d34330 | 2005-07-12 22:46:17 +0000 | [diff] [blame] | 182 | .ELSE |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 183 | DEFS = "HAVE_CONFIG_H","FEAT_GUI_MOTIF" |
Bram Moolenaar | 82c38fe | 2021-01-04 10:47:26 +0100 | [diff] [blame] | 184 | XPM_INC = |
Bram Moolenaar | 8d34330 | 2005-07-12 22:46:17 +0000 | [diff] [blame] | 185 | .ENDIF |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 186 | LIBS = ,OS_VMS_MOTIF.OPT/OPT |
| 187 | GUI_FLAG = |
Bram Moolenaar | 8d34330 | 2005-07-12 22:46:17 +0000 | [diff] [blame] | 188 | GUI_SRC = gui.c gui_motif.c gui_x11.c gui_beval.c gui_xmdlg.c gui_xmebw.c |
| 189 | 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] | 190 | GUI_INC = |
| 191 | .ENDIF |
| 192 | |
| 193 | # You need to define these variables if you do not have DECW files |
| 194 | # at standard location |
| 195 | GUI_INC_DIR = ,decw$include: |
| 196 | # GUI_LIB_DIR = ,sys$library: |
| 197 | |
| 198 | .ELSE |
| 199 | # Character terminal only executable |
| 200 | DEFS = "HAVE_CONFIG_H" |
| 201 | LIBS = |
| 202 | .ENDIF |
| 203 | |
| 204 | .IFDEF VIM_PERL |
| 205 | # Perl related setup. |
| 206 | PERL = perl |
| 207 | PERL_DEF = ,"FEAT_PERL" |
| 208 | PERL_SRC = if_perlsfio.c if_perl.xs |
| 209 | PERL_OBJ = if_perlsfio.obj if_perl.obj |
| 210 | PERL_LIB = ,OS_VMS_PERL.OPT/OPT |
| 211 | PERL_INC = ,dka0:[perlbuild.perl.lib.vms_axp.5_6_1.core] |
| 212 | .ENDIF |
| 213 | |
| 214 | .IFDEF VIM_PYTHON |
| 215 | # Python related setup. |
| 216 | PYTHON_DEF = ,"FEAT_PYTHON" |
| 217 | PYTHON_SRC = if_python.c |
| 218 | PYTHON_OBJ = if_python.obj |
| 219 | PYTHON_LIB = ,OS_VMS_PYTHON.OPT/OPT |
| 220 | PYTHON_INC = ,PYTHON_INCLUDE |
| 221 | .ENDIF |
| 222 | |
| 223 | .IFDEF VIM_TCL |
| 224 | # TCL related setup. |
| 225 | TCL_DEF = ,"FEAT_TCL" |
| 226 | TCL_SRC = if_tcl.c |
| 227 | TCL_OBJ = if_tcl.obj |
| 228 | TCL_LIB = ,OS_VMS_TCL.OPT/OPT |
| 229 | TCL_INC = ,dka0:[tcl80.generic] |
| 230 | .ENDIF |
| 231 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 232 | .IFDEF VIM_RUBY |
| 233 | # RUBY related setup. |
| 234 | RUBY_DEF = ,"FEAT_RUBY" |
| 235 | RUBY_SRC = if_ruby.c |
| 236 | RUBY_OBJ = if_ruby.obj |
| 237 | RUBY_LIB = ,OS_VMS_RUBY.OPT/OPT |
| 238 | RUBY_INC = |
| 239 | .ENDIF |
| 240 | |
Bram Moolenaar | 82c38fe | 2021-01-04 10:47:26 +0100 | [diff] [blame] | 241 | .IFDEF VIM_LUA |
| 242 | # LUA related setup. |
| 243 | LUA_DEF = ,"FEAT_LUA" |
| 244 | LUA_SRC = if_lua.c |
| 245 | LUA_OBJ = if_lua.obj |
| 246 | LUA_LIB = ,OS_VMS_LUA.OPT/OPT |
| 247 | LUA_INC = ,LUA$ROOT:[INCLUDE] |
| 248 | .ENDIF |
| 249 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 250 | .IFDEF VIM_XIM |
| 251 | # XIM related setup. |
| 252 | .IFDEF GUI |
| 253 | XIM_DEF = ,"FEAT_XIM" |
| 254 | .ENDIF |
| 255 | .ENDIF |
| 256 | |
Bram Moolenaar | f878bcf | 2010-07-30 22:29:41 +0200 | [diff] [blame] | 257 | .IFDEF VIM_MZSCHEME |
| 258 | # MZSCHEME related setup |
| 259 | MZSCH_DEF = ,"FEAT_MZSCHEME" |
Bram Moolenaar | 82c38fe | 2021-01-04 10:47:26 +0100 | [diff] [blame] | 260 | MZSCH_SRC = if_mzsch.c |
Bram Moolenaar | f878bcf | 2010-07-30 22:29:41 +0200 | [diff] [blame] | 261 | MZSCH_OBJ = if_mzsch.obj |
| 262 | .ENDIF |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 263 | |
Bram Moolenaar | 206f011 | 2014-03-12 16:51:55 +0100 | [diff] [blame] | 264 | .IFDEF VIM_ICONV |
| 265 | # ICONV related setup |
| 266 | ICONV_DEF = ,"USE_ICONV" |
| 267 | .ENDIF |
| 268 | |
Bram Moolenaar | 88c86eb | 2019-01-17 17:13:30 +0100 | [diff] [blame] | 269 | # XDIFF related setup. |
| 270 | XDIFF_SRC = xdiffi.c,xemit.c,xprepare.c,xutils.c,xhistogram.c,xpatience.c |
Bram Moolenaar | 82c38fe | 2021-01-04 10:47:26 +0100 | [diff] [blame] | 271 | XDIFF_OBJ = xdiffi.obj,xemit.obj,xprepare.obj,xutils.obj,xhistogram.obj,xpatience.obj |
Bram Moolenaar | 88c86eb | 2019-01-17 17:13:30 +0100 | [diff] [blame] | 272 | XDIFF_INC = ,[.xdiff] |
| 273 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 274 | ###################################################################### |
| 275 | # End of configuration section. |
| 276 | # Please, do not change anything below without programming experience. |
| 277 | ###################################################################### |
| 278 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 279 | MODEL_DEF = "FEAT_$(MODEL)", |
| 280 | |
| 281 | # These go into pathdef.c |
| 282 | VIMUSER = "''F$EDIT(F$GETJPI(" ","USERNAME"),"TRIM")'" |
| 283 | VIMHOST = "''F$TRNLNM("SYS$NODE")'''F$TRNLNM("UCX$INET_HOST")'.''F$TRNLNM("UCX$INET_DOMAIN")'" |
| 284 | |
| 285 | .SUFFIXES : .obj .c |
| 286 | |
Bram Moolenaar | 206f011 | 2014-03-12 16:51:55 +0100 | [diff] [blame] | 287 | ALL_CFLAGS = /def=($(MODEL_DEF)$(DEFS)$(DEBUG_DEF)$(PERL_DEF)$(PYTHON_DEF) - |
Bram Moolenaar | 82c38fe | 2021-01-04 10:47:26 +0100 | [diff] [blame] | 288 | $(TCL_DEF)$(RUBY_DEF)$(LUA_DEF)$(XIM_DEF)$(TAG_DEF)$(MZSCH_DEF) - |
Bram Moolenaar | 88c86eb | 2019-01-17 17:13:30 +0100 | [diff] [blame] | 289 | $(ICONV_DEF)) - |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 290 | $(CFLAGS)$(GUI_FLAG) - |
Bram Moolenaar | 88c86eb | 2019-01-17 17:13:30 +0100 | [diff] [blame] | 291 | /include=($(C_INC)$(GUI_INC_DIR)$(GUI_INC)$(PERL_INC)$(PYTHON_INC) - |
| 292 | $(TCL_INC)$(XDIFF_INC)$(XPM_INC)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 293 | |
| 294 | # CFLAGS displayed in :ver information |
Bram Moolenaar | 4b96df5 | 2020-01-26 22:00:26 +0100 | [diff] [blame] | 295 | # It is specially formatted for correct display of unix like includes |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 296 | # as $(GUI_INC) - replaced with $(GUI_INC_VER) |
| 297 | # Otherwise should not be any other difference. |
Bram Moolenaar | 206f011 | 2014-03-12 16:51:55 +0100 | [diff] [blame] | 298 | ALL_CFLAGS_VER = /def=($(MODEL_DEF)$(DEFS)$(DEBUG_DEF)$(PERL_DEF)$(PYTHON_DEF) - |
Bram Moolenaar | 82c38fe | 2021-01-04 10:47:26 +0100 | [diff] [blame] | 299 | $(TCL_DEF)$(RUBY_DEF)$(LUA_DEF)$(XIM_DEF)$(TAG_DEF)$(MZSCH_DEF) - |
Bram Moolenaar | 88c86eb | 2019-01-17 17:13:30 +0100 | [diff] [blame] | 300 | $(ICONV_DEF)) - |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 301 | $(CFLAGS)$(GUI_FLAG) - |
Bram Moolenaar | 88c86eb | 2019-01-17 17:13:30 +0100 | [diff] [blame] | 302 | /include=($(C_INC)$(GUI_INC_DIR)$(GUI_INC_VER)$(PERL_INC)$(PYTHON_INC) - |
| 303 | $(TCL_INC)$(XDIFF_INC)$(XPM_INC)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 304 | |
Bram Moolenaar | 467676d | 2020-12-30 13:14:45 +0100 | [diff] [blame] | 305 | ALL_LIBS = $(LIBS) $(GUI_LIB_DIR) $(GUI_LIB) $(XPM_LIB)\ |
Bram Moolenaar | 82c38fe | 2021-01-04 10:47:26 +0100 | [diff] [blame] | 306 | $(PERL_LIB) $(PYTHON_LIB) $(TCL_LIB) $(RUBY_LIB) $(LUA_LIB) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 307 | |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 308 | SRC = \ |
| 309 | arabic.c \ |
| 310 | arglist.c \ |
| 311 | autocmd.c \ |
| 312 | beval.c \ |
| 313 | blob.c \ |
| 314 | blowfish.c \ |
| 315 | buffer.c \ |
| 316 | bufwrite.c \ |
| 317 | change.c \ |
| 318 | charset.c \ |
Bram Moolenaar | 14c01f8 | 2019-10-09 22:53:08 +0200 | [diff] [blame] | 319 | cindent.c \ |
Bram Moolenaar | f87a040 | 2020-04-05 20:21:03 +0200 | [diff] [blame] | 320 | clientserver.c \ |
Bram Moolenaar | 45fffdf | 2020-03-24 21:42:01 +0100 | [diff] [blame] | 321 | clipboard.c \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 322 | cmdexpand.c \ |
| 323 | cmdhist.c \ |
| 324 | crypt.c \ |
| 325 | crypt_zip.c \ |
| 326 | debugger.c \ |
| 327 | dict.c \ |
| 328 | diff.c \ |
| 329 | digraph.c \ |
| 330 | drawline.c \ |
| 331 | drawscreen.c \ |
| 332 | edit.c \ |
| 333 | eval.c \ |
| 334 | evalbuffer.c \ |
| 335 | evalfunc.c \ |
| 336 | evalvars.c \ |
| 337 | evalwindow.c \ |
| 338 | ex_cmds.c \ |
| 339 | ex_cmds2.c \ |
| 340 | ex_docmd.c \ |
| 341 | ex_eval.c \ |
Bram Moolenaar | 261f346 | 2019-09-07 15:45:32 +0200 | [diff] [blame] | 342 | ex_getln.c \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 343 | fileio.c \ |
| 344 | filepath.c, \ |
| 345 | findfile.c \ |
| 346 | fold.c \ |
| 347 | getchar.c \ |
Bram Moolenaar | f15c8b6 | 2020-06-01 14:34:43 +0200 | [diff] [blame] | 348 | gui_xim.c \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 349 | hardcopy.c \ |
| 350 | hashtab.c \ |
Bram Moolenaar | f868ba8 | 2020-07-21 21:07:20 +0200 | [diff] [blame] | 351 | help.c \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 352 | highlight.c \ |
| 353 | if_cscope.c \ |
| 354 | if_xcmdsrv.c \ |
| 355 | indent.c \ |
| 356 | insexpand.c \ |
| 357 | json.c \ |
| 358 | list.c \ |
Bram Moolenaar | 054f14b | 2020-07-22 19:11:19 +0200 | [diff] [blame] | 359 | locale.c \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 360 | main.c \ |
| 361 | map.c \ |
| 362 | mark.c \ |
Bram Moolenaar | 06cf97e | 2020-06-28 13:17:26 +0200 | [diff] [blame] | 363 | match.c \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 364 | mbyte.c \ |
| 365 | memfile.c \ |
| 366 | memline.c \ |
| 367 | menu.c \ |
| 368 | message.c \ |
| 369 | misc1.c \ |
| 370 | misc2.c \ |
| 371 | mouse.c \ |
| 372 | move.c \ |
| 373 | normal.c \ |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 374 | ops.c \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 375 | option.c \ |
| 376 | optionstr.c \ |
| 377 | os_unix.c \ |
| 378 | os_vms.c \ |
Bram Moolenaar | 4ad6215 | 2019-08-17 14:38:55 +0200 | [diff] [blame] | 379 | pathdef.c \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 380 | popupmenu.c \ |
| 381 | popupwin.c \ |
| 382 | profiler.c \ |
| 383 | quickfix.c \ |
| 384 | regexp.c \ |
| 385 | register.c \ |
| 386 | screen.c \ |
| 387 | scriptfile.c \ |
| 388 | search.c \ |
| 389 | session.c \ |
| 390 | sha256.c \ |
| 391 | sign.c \ |
| 392 | spell.c \ |
| 393 | spellfile.c \ |
| 394 | spellsuggest.c \ |
| 395 | syntax.c \ |
| 396 | tag.c \ |
| 397 | term.c \ |
| 398 | termlib.c \ |
| 399 | testing.c \ |
Bram Moolenaar | 11abd09 | 2020-05-01 14:26:37 +0200 | [diff] [blame] | 400 | textformat.c \ |
Bram Moolenaar | ed8ce05 | 2020-04-29 21:04:15 +0200 | [diff] [blame] | 401 | textobject.c \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 402 | textprop.c \ |
Bram Moolenaar | 0a8fed6 | 2020-02-14 13:22:17 +0100 | [diff] [blame] | 403 | time.c \ |
Bram Moolenaar | 367d59e | 2020-05-30 17:06:14 +0200 | [diff] [blame] | 404 | typval.c \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 405 | ui.c \ |
| 406 | undo.c \ |
| 407 | usercmd.c \ |
| 408 | userfunc.c \ |
| 409 | version.c \ |
Bram Moolenaar | f2cecb6 | 2020-02-13 21:59:25 +0100 | [diff] [blame] | 410 | vim9compile.c \ |
| 411 | vim9execute.c \ |
| 412 | vim9script.c \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 413 | vim9type.c \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 414 | viminfo.c \ |
| 415 | window.c \ |
| 416 | $(GUI_SRC) \ |
| 417 | $(PERL_SRC) \ |
| 418 | $(PYTHON_SRC) \ |
| 419 | $(TCL_SRC) \ |
| 420 | $(RUBY_SRC) \ |
Bram Moolenaar | 82c38fe | 2021-01-04 10:47:26 +0100 | [diff] [blame] | 421 | $(LUA_SRC) \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 422 | $(MZSCH_SRC) \ |
| 423 | $(XDIFF_SRC) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 424 | |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 425 | OBJ = \ |
| 426 | arabic.obj \ |
| 427 | arglist.obj \ |
| 428 | autocmd.obj \ |
| 429 | beval.obj \ |
| 430 | blob.obj \ |
| 431 | blowfish.obj \ |
| 432 | buffer.obj \ |
| 433 | bufwrite.obj \ |
| 434 | change.obj \ |
| 435 | charset.obj \ |
Bram Moolenaar | 14c01f8 | 2019-10-09 22:53:08 +0200 | [diff] [blame] | 436 | cindent.obj \ |
Bram Moolenaar | f87a040 | 2020-04-05 20:21:03 +0200 | [diff] [blame] | 437 | clientserver.obj \ |
Bram Moolenaar | 45fffdf | 2020-03-24 21:42:01 +0100 | [diff] [blame] | 438 | clipboard.obj \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 439 | cmdexpand.obj \ |
| 440 | cmdhist.obj \ |
| 441 | crypt.obj \ |
| 442 | crypt_zip.obj \ |
| 443 | debugger.obj \ |
| 444 | dict.obj \ |
| 445 | diff.obj \ |
| 446 | digraph.obj \ |
| 447 | drawline.obj \ |
| 448 | drawscreen.obj \ |
| 449 | edit.obj \ |
| 450 | eval.obj \ |
| 451 | evalbuffer.obj \ |
| 452 | evalfunc.obj \ |
| 453 | evalvars.obj \ |
| 454 | evalwindow.obj \ |
| 455 | ex_cmds.obj \ |
| 456 | ex_cmds2.obj \ |
| 457 | ex_docmd.obj \ |
| 458 | ex_eval.obj \ |
| 459 | ex_getln.obj \ |
| 460 | fileio.obj \ |
| 461 | filepath.obj \ |
| 462 | findfile.obj \ |
| 463 | fold.obj \ |
| 464 | getchar.obj \ |
Bram Moolenaar | f15c8b6 | 2020-06-01 14:34:43 +0200 | [diff] [blame] | 465 | gui_xim.obj \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 466 | hardcopy.obj \ |
| 467 | hashtab.obj \ |
Bram Moolenaar | f868ba8 | 2020-07-21 21:07:20 +0200 | [diff] [blame] | 468 | help.obj \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 469 | highlight.obj \ |
| 470 | if_cscope.obj \ |
| 471 | if_mzsch.obj \ |
| 472 | if_xcmdsrv.obj \ |
| 473 | indent.obj \ |
| 474 | insexpand.obj \ |
| 475 | json.obj \ |
| 476 | list.obj \ |
Bram Moolenaar | 054f14b | 2020-07-22 19:11:19 +0200 | [diff] [blame] | 477 | locale.obj \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 478 | main.obj \ |
| 479 | map.obj \ |
| 480 | mark.obj \ |
Bram Moolenaar | 06cf97e | 2020-06-28 13:17:26 +0200 | [diff] [blame] | 481 | match.obj \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 482 | mbyte.obj \ |
| 483 | memfile.obj \ |
| 484 | memline.obj \ |
| 485 | menu.obj \ |
| 486 | message.obj \ |
| 487 | misc1.obj \ |
| 488 | misc2.obj \ |
| 489 | mouse.obj \ |
| 490 | move.obj \ |
| 491 | normal.obj \ |
| 492 | ops.obj \ |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 493 | option.obj \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 494 | optionstr.obj \ |
| 495 | os_unix.obj \ |
| 496 | os_vms.obj \ |
| 497 | pathdef.obj \ |
| 498 | popupmenu.obj \ |
| 499 | popupwin.obj \ |
| 500 | profiler.obj \ |
| 501 | quickfix.obj \ |
| 502 | regexp.obj \ |
| 503 | register.obj \ |
| 504 | screen.obj \ |
| 505 | scriptfile.obj \ |
| 506 | search.obj \ |
| 507 | session.obj \ |
| 508 | sha256.obj \ |
| 509 | sign.obj \ |
| 510 | spell.obj \ |
| 511 | spellfile.obj \ |
| 512 | spellsuggest.obj \ |
| 513 | syntax.obj \ |
| 514 | tag.obj \ |
| 515 | term.obj \ |
| 516 | termlib.obj \ |
| 517 | testing.obj \ |
Bram Moolenaar | 11abd09 | 2020-05-01 14:26:37 +0200 | [diff] [blame] | 518 | textformat.obj \ |
Bram Moolenaar | ed8ce05 | 2020-04-29 21:04:15 +0200 | [diff] [blame] | 519 | textobject.obj \ |
Bram Moolenaar | 46a426c | 2019-09-27 12:41:56 +0200 | [diff] [blame] | 520 | textprop.obj \ |
Bram Moolenaar | 0a8fed6 | 2020-02-14 13:22:17 +0100 | [diff] [blame] | 521 | time.obj \ |
Bram Moolenaar | 367d59e | 2020-05-30 17:06:14 +0200 | [diff] [blame] | 522 | typval.obj \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 523 | ui.obj \ |
| 524 | undo.obj \ |
| 525 | usercmd.obj \ |
| 526 | userfunc.obj \ |
| 527 | version.obj \ |
Bram Moolenaar | f2cecb6 | 2020-02-13 21:59:25 +0100 | [diff] [blame] | 528 | vim9compile.obj \ |
| 529 | vim9execute.obj \ |
| 530 | vim9script.obj \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 531 | vim9type.obj \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 532 | viminfo.obj \ |
| 533 | window.obj \ |
| 534 | $(GUI_OBJ) \ |
| 535 | $(PERL_OBJ) \ |
| 536 | $(PYTHON_OBJ) \ |
| 537 | $(TCL_OBJ) \ |
| 538 | $(RUBY_OBJ) \ |
Bram Moolenaar | 82c38fe | 2021-01-04 10:47:26 +0100 | [diff] [blame] | 539 | $(LUA_OBJ) \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 540 | $(MZSCH_OBJ) \ |
| 541 | $(XDIFF_OBJ) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 542 | |
| 543 | # Default target is making the executable |
Bram Moolenaar | 82c38fe | 2021-01-04 10:47:26 +0100 | [diff] [blame] | 544 | all : [.auto]config.h mmk_compat motif_env gtk_env perl_env python_env tcl_env ruby_env lua_env $(TARGET) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 545 | ! $@ |
| 546 | |
| 547 | [.auto]config.h : $(CONFIG_H) |
| 548 | copy/nolog $(CONFIG_H) [.auto]config.h |
| 549 | |
| 550 | mmk_compat : |
| 551 | -@ open/write pd pathdef.c |
| 552 | -@ write pd "/* Empty file to satisfy MMK depend. */" |
Bram Moolenaar | cf0dfa2 | 2007-05-10 18:52:16 +0000 | [diff] [blame] | 553 | -@ write pd "/* It will be overwritten later on... */" |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 554 | -@ close pd |
| 555 | clean : |
| 556 | -@ if "''F$SEARCH("*.exe")'" .NES. "" then delete/noconfirm/nolog *.exe;* |
| 557 | -@ if "''F$SEARCH("*.obj")'" .NES. "" then delete/noconfirm/nolog *.obj;* |
| 558 | -@ if "''F$SEARCH("[.auto]config.h")'" .NES. "" then delete/noconfirm/nolog [.auto]config.h;* |
| 559 | -@ if "''F$SEARCH("pathdef.c")'" .NES. "" then delete/noconfirm/nolog pathdef.c;* |
| 560 | -@ if "''F$SEARCH("if_perl.c")'" .NES. "" then delete/noconfirm/nolog if_perl.c;* |
| 561 | -@ if "''F$SEARCH("*.opt")'" .NES. "" then delete/noconfirm/nolog *.opt;* |
Bram Moolenaar | 467676d | 2020-12-30 13:14:45 +0100 | [diff] [blame] | 562 | -@ if "''F$SEARCH("*.dmp")'" .NES. "" then delete/noconfirm/nolog *.dmp;* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 563 | |
| 564 | # Link the target |
| 565 | $(TARGET) : $(OBJ) |
Bram Moolenaar | 0c5c3fa | 2019-11-30 22:38:16 +0100 | [diff] [blame] | 566 | # make an OPT file - as the obj file list is too long for one command line |
| 567 | -@ DIRECTORY *.OBJ. /BRIEF/COLUMNS=1/NOHEADING/NOTRAILING /SELECT=FILE=(NONODE,NODEVICE,NODIRECTORY,NOVERSION)/OUTPUT=ALL_OBJS_LIST.OPT |
| 568 | $(LD_DEF) $(LDFLAGS) /exe=$(TARGET) ALL_OBJS_LIST.OPT/OPT $(ALL_LIBS) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 569 | |
| 570 | .c.obj : |
| 571 | $(CC_DEF) $(ALL_CFLAGS) $< |
| 572 | |
| 573 | pathdef.c : check_ccver $(CONFIG_H) |
| 574 | -@ write sys$output "creating PATHDEF.C file." |
| 575 | -@ open/write pd pathdef.c |
| 576 | -@ write pd "/* pathdef.c -- DO NOT EDIT! */" |
| 577 | -@ write pd "/* This file is automatically created by MAKE_VMS.MMS" |
| 578 | -@ write pd " * Change the file MAKE_VMS.MMS Only. */" |
| 579 | -@ write pd "typedef unsigned char char_u;" |
| 580 | -@ write pd "char_u *default_vim_dir = (char_u *)"$(VIMLOC)";" |
| 581 | -@ write pd "char_u *default_vimruntime_dir = (char_u *)"$(VIMRUN)";" |
| 582 | -@ write pd "char_u *all_cflags = (char_u *)""$(CC_DEF)$(ALL_CFLAGS_VER)"";" |
Bram Moolenaar | 0c5c3fa | 2019-11-30 22:38:16 +0100 | [diff] [blame] | 583 | -@ write pd "char_u *all_lflags = (char_u *)""$(LD_DEF)$(LDFLAGS) /exe=$(TARGET) ALL_OBJS_LIST.OPT/OPT $(ALL_LIBS)"";" |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 584 | -@ write pd "char_u *compiler_version = (char_u *) ""''CC_VER'"";" |
| 585 | -@ write pd "char_u *compiled_user = (char_u *) "$(VIMUSER)";" |
Bram Moolenaar | 3d20ca1 | 2006-11-28 16:43:58 +0000 | [diff] [blame] | 586 | -@ write pd "char_u *compiled_sys = (char_u *) "$(VIMHOST)";" |
| 587 | -@ write pd "char_u *compiled_arch = (char_u *) ""$(MMSARCH_NAME)"";" |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 588 | -@ close pd |
| 589 | |
| 590 | if_perl.c : if_perl.xs |
Bram Moolenaar | 0c5c3fa | 2019-11-30 22:38:16 +0100 | [diff] [blame] | 591 | -@ $(PERL) PERL_ROOT:[LIB.ExtUtils]xsubpp -prototypes -typemap - PERL_ROOT:[LIB.ExtUtils]typemap if_perl.xs >> $@ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 592 | |
| 593 | make_vms.mms : |
| 594 | -@ write sys$output "The name of the makefile MUST be <MAKE_VMS.MMS> !!!" |
| 595 | |
| 596 | .IFDEF CCVER |
| 597 | # This part can make some complications if you're using some predefined |
| 598 | # symbols/flags for your compiler. If does, just comment out CCVER variable |
| 599 | check_ccver : |
| 600 | -@ define sys$output cc_ver.tmp |
| 601 | -@ $(CC_DEF)/version |
| 602 | -@ deassign sys$output |
| 603 | -@ open/read file cc_ver.tmp |
| 604 | -@ read file CC_VER |
| 605 | -@ close file |
| 606 | -@ delete/noconfirm/nolog cc_ver.tmp.* |
| 607 | .ELSE |
| 608 | check_ccver : |
| 609 | -@ ! |
| 610 | .ENDIF |
| 611 | |
| 612 | .IFDEF MOTIF |
| 613 | motif_env : |
Bram Moolenaar | 8d34330 | 2005-07-12 22:46:17 +0000 | [diff] [blame] | 614 | .IFDEF XPM |
| 615 | -@ write sys$output "using DECW/Motif/XPM environment." |
Bram Moolenaar | 467676d | 2020-12-30 13:14:45 +0100 | [diff] [blame] | 616 | -@ write sys$output "creating OS_VMS_XPM.OPT file." |
| 617 | -@ open/write opt_file OS_VMS_XPM.OPT |
| 618 | .IFDEF MMSVAX |
| 619 | -@ write opt_file "[.xpm.vms.vax]libxpm.olb/lib" |
| 620 | .ENDIF |
| 621 | .IFDEF MMSALPHA |
| 622 | -@ write opt_file "[.xpm.vms.axp]libxpm.olb/lib" |
| 623 | .ENDIF |
| 624 | .IFDEF MMSIA64 |
| 625 | -@ write opt_file "[.xpm.vms.ia64]libxpm.olb/lib" |
Bram Moolenaar | 82c38fe | 2021-01-04 10:47:26 +0100 | [diff] [blame] | 626 | .ENDIF |
Bram Moolenaar | 467676d | 2020-12-30 13:14:45 +0100 | [diff] [blame] | 627 | -@ close opt_file |
Bram Moolenaar | 8d34330 | 2005-07-12 22:46:17 +0000 | [diff] [blame] | 628 | .ELSE |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 629 | -@ write sys$output "using DECW/Motif environment." |
Bram Moolenaar | 8d34330 | 2005-07-12 22:46:17 +0000 | [diff] [blame] | 630 | .ENDIF |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 631 | -@ write sys$output "creating OS_VMS_MOTIF.OPT file." |
| 632 | -@ open/write opt_file OS_VMS_MOTIF.OPT |
| 633 | -@ write opt_file "sys$share:decw$xmlibshr12.exe/share,-" |
| 634 | -@ write opt_file "sys$share:decw$xtlibshrr5.exe/share,-" |
| 635 | -@ write opt_file "sys$share:decw$xlibshr.exe/share" |
| 636 | -@ close opt_file |
| 637 | .ELSE |
| 638 | motif_env : |
| 639 | -@ ! |
| 640 | .ENDIF |
| 641 | |
| 642 | |
| 643 | .IFDEF GTK |
| 644 | gtk_env : |
| 645 | -@ write sys$output "using GTK environment:" |
| 646 | -@ define/nolog gtk_root /trans=conc $(GTK_DIR) |
| 647 | -@ show logical gtk_root |
| 648 | -@ write sys$output " include path: "$(GUI_INC)"" |
| 649 | -@ write sys$output "creating OS_VMS_GTK.OPT file." |
| 650 | -@ open/write opt_file OS_VMS_GTK.OPT |
| 651 | -@ write opt_file "gtk_root:[glib]libglib.exe /share,-" |
| 652 | -@ write opt_file "gtk_root:[glib.gmodule]libgmodule.exe /share,-" |
| 653 | -@ write opt_file "gtk_root:[gtk.gdk]libgdk.exe /share,-" |
| 654 | -@ write opt_file "gtk_root:[gtk.gtk]libgtk.exe /share,-" |
| 655 | -@ write opt_file "sys$share:decw$xmlibshr12.exe/share,-" |
| 656 | -@ write opt_file "sys$share:decw$xtlibshrr5.exe/share,-" |
| 657 | -@ write opt_file "sys$share:decw$xlibshr.exe/share" |
| 658 | -@ close opt_file |
| 659 | .ELSE |
| 660 | gtk_env : |
| 661 | -@ ! |
| 662 | .ENDIF |
| 663 | |
| 664 | .IFDEF VIM_PERL |
| 665 | perl_env : |
| 666 | -@ write sys$output "using PERL environment:" |
| 667 | -@ show logical PERLSHR |
| 668 | -@ write sys$output " include path: ""$(PERL_INC)""" |
| 669 | -@ show symbol perl |
| 670 | -@ open/write pd if_perl.c |
| 671 | -@ write pd "/* Empty file to satisfy MMK depend. */" |
Bram Moolenaar | cf0dfa2 | 2007-05-10 18:52:16 +0000 | [diff] [blame] | 672 | -@ write pd "/* It will be overwritten later on... */" |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 673 | -@ close pd |
| 674 | -@ write sys$output "creating OS_VMS_PERL.OPT file." |
| 675 | -@ open/write opt_file OS_VMS_PERL.OPT |
| 676 | -@ write opt_file "PERLSHR /share" |
| 677 | -@ close opt_file |
| 678 | .ELSE |
| 679 | perl_env : |
| 680 | -@ ! |
| 681 | .ENDIF |
| 682 | |
| 683 | .IFDEF VIM_PYTHON |
| 684 | python_env : |
| 685 | -@ write sys$output "using PYTHON environment:" |
| 686 | -@ show logical PYTHON_INCLUDE |
| 687 | -@ show logical PYTHON_OLB |
| 688 | -@ write sys$output "creating OS_VMS_PYTHON.OPT file." |
| 689 | -@ open/write opt_file OS_VMS_PYTHON.OPT |
| 690 | -@ write opt_file "PYTHON_OLB:PYTHON.OLB /share" |
| 691 | -@ close opt_file |
| 692 | .ELSE |
| 693 | python_env : |
| 694 | -@ ! |
| 695 | .ENDIF |
| 696 | |
| 697 | .IFDEF VIM_TCL |
| 698 | tcl_env : |
| 699 | -@ write sys$output "using TCL environment:" |
| 700 | -@ show logical TCLSHR |
| 701 | -@ write sys$output " include path: ""$(TCL_INC)""" |
| 702 | -@ write sys$output "creating OS_VMS_TCL.OPT file." |
| 703 | -@ open/write opt_file OS_VMS_TCL.OPT |
| 704 | -@ write opt_file "TCLSHR /share" |
| 705 | -@ close opt_file |
| 706 | .ELSE |
| 707 | tcl_env : |
| 708 | -@ ! |
| 709 | .ENDIF |
| 710 | |
| 711 | .IFDEF VIM_RUBY |
| 712 | ruby_env : |
| 713 | -@ write sys$output "using RUBY environment:" |
| 714 | -@ write sys$output " include path: ""$(RUBY_INC)""" |
| 715 | -@ write sys$output "creating OS_VMS_RUBY.OPT file." |
| 716 | -@ open/write opt_file OS_VMS_RUBY.OPT |
| 717 | -@ write opt_file "RUBYSHR /share" |
| 718 | -@ close opt_file |
| 719 | .ELSE |
| 720 | ruby_env : |
| 721 | -@ ! |
| 722 | .ENDIF |
| 723 | |
Bram Moolenaar | 82c38fe | 2021-01-04 10:47:26 +0100 | [diff] [blame] | 724 | .IFDEF VIM_LUA |
| 725 | lua_env : |
| 726 | -@ write sys$output "using LUA environment:" |
| 727 | -@ write sys$output " include path: ""$(LUA_INC)""" |
| 728 | -@ write sys$output "creating OS_VMS_LUA.OPT file." |
| 729 | -@ open/write opt_file OS_VMS_LUA.OPT |
| 730 | -@ write opt_file "LUA$ROOT:[LIB]LUA$SHR.EXE /share" |
| 731 | -@ close opt_file |
| 732 | .ELSE |
| 733 | lua_env : |
| 734 | -@ ! |
| 735 | .ENDIF |
| 736 | |
Bram Moolenaar | 3b98b83 | 2016-07-02 21:45:17 +0200 | [diff] [blame] | 737 | arabic.obj : arabic.c vim.h |
Bram Moolenaar | 4ad6215 | 2019-08-17 14:38:55 +0200 | [diff] [blame] | 738 | arglist.obj : arglist.c vim.h [.auto]config.h feature.h os_unix.h |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 739 | autocmd.obj : autocmd.c vim.h [.auto]config.h feature.h os_unix.h |
Bram Moolenaar | 05a2907 | 2019-01-18 22:59:53 +0100 | [diff] [blame] | 740 | blowfish.obj : blowfish.c vim.h [.auto]config.h feature.h os_unix.h |
Bram Moolenaar | 82c38fe | 2021-01-04 10:47:26 +0100 | [diff] [blame] | 741 | blob.obj : blob.c vim.h [.auto]config.h feature.h os_unix.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 742 | buffer.obj : buffer.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 743 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 744 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 745 | errors.h globals.h version.h |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 746 | bufwrite.obj : bufwrite.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 747 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 748 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 749 | errors.h globals.h |
Bram Moolenaar | ec28d15 | 2019-05-11 18:36:34 +0200 | [diff] [blame] | 750 | change.obj : change.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 beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 753 | errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 754 | charset.obj : charset.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 755 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 756 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 757 | errors.h globals.h |
Bram Moolenaar | 14c01f8 | 2019-10-09 22:53:08 +0200 | [diff] [blame] | 758 | cindent.obj : cindent.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 759 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 760 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 761 | errors.h globals.h |
Bram Moolenaar | f87a040 | 2020-04-05 20:21:03 +0200 | [diff] [blame] | 762 | clientserver.obj : clientserver.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 763 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 764 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 765 | errors.h globals.h |
Bram Moolenaar | 45fffdf | 2020-03-24 21:42:01 +0100 | [diff] [blame] | 766 | clipboard.obj : clipboard.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 767 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 768 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 769 | errors.h globals.h |
Bram Moolenaar | 66b5142 | 2019-08-18 21:44:12 +0200 | [diff] [blame] | 770 | cmdexpand.obj : cmdexpand.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 beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 773 | errors.h globals.h |
Bram Moolenaar | d7663c2 | 2019-08-06 21:59:57 +0200 | [diff] [blame] | 774 | cmdhist.obj : cmdhist.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 beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 777 | errors.h globals.h |
Bram Moolenaar | de5e2c2 | 2016-11-04 20:35:31 +0100 | [diff] [blame] | 778 | crypt.obj : crypt.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 779 | ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 780 | beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 781 | errors.h globals.h |
Bram Moolenaar | de5e2c2 | 2016-11-04 20:35:31 +0100 | [diff] [blame] | 782 | crypt_zip.obj : crypt_zip.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 783 | ascii.h keymap.h term.h macros.h option.h structs.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 784 | regexp.h gui.h beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 785 | proto.h errors.h globals.h |
Bram Moolenaar | eead75c | 2019-04-21 11:35:00 +0200 | [diff] [blame] | 786 | debugger.obj : debugger.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 beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 789 | errors.h globals.h |
Bram Moolenaar | de5e2c2 | 2016-11-04 20:35:31 +0100 | [diff] [blame] | 790 | dict.obj : dict.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 791 | ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 792 | beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 793 | errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 794 | diff.obj : diff.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 795 | ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 796 | [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 797 | digraph.obj : digraph.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 798 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 799 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 800 | errors.h globals.h |
Bram Moolenaar | 7528d1f | 2019-09-19 23:06:20 +0200 | [diff] [blame] | 801 | drawline.obj : drawline.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 802 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 803 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 804 | errors.h globals.h |
Bram Moolenaar | 7528d1f | 2019-09-19 23:06:20 +0200 | [diff] [blame] | 805 | drawscreen.obj : drawscreen.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 806 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 807 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 808 | errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 809 | edit.obj : edit.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 810 | ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 811 | [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 812 | eval.obj : eval.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 813 | ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 814 | [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
Bram Moolenaar | 261f346 | 2019-09-07 15:45:32 +0200 | [diff] [blame] | 815 | evalbuffer.obj : evalbuffer.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 816 | ascii.h keymap.h term.h macros.h option.h structs.h \ |
| 817 | regexp.h gui.h beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 818 | proto.h errors.h globals.h |
Bram Moolenaar | de5e2c2 | 2016-11-04 20:35:31 +0100 | [diff] [blame] | 819 | evalfunc.obj : evalfunc.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 820 | ascii.h keymap.h term.h macros.h option.h structs.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 821 | regexp.h gui.h beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 822 | proto.h errors.h globals.h version.h |
Bram Moolenaar | 0522ba0 | 2019-08-27 22:48:30 +0200 | [diff] [blame] | 823 | evalvars.obj : evalvars.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 824 | ascii.h keymap.h term.h macros.h option.h structs.h \ |
| 825 | regexp.h gui.h beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 826 | proto.h errors.h globals.h version.h |
Bram Moolenaar | 261f346 | 2019-09-07 15:45:32 +0200 | [diff] [blame] | 827 | evalwindow.obj : evalwindow.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 828 | ascii.h keymap.h term.h macros.h option.h structs.h \ |
| 829 | regexp.h gui.h beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 830 | proto.h errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 831 | ex_cmds.obj : ex_cmds.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 832 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 833 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 834 | errors.h globals.h version.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 835 | ex_cmds2.obj : ex_cmds2.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 836 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 837 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 838 | errors.h globals.h version.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 839 | ex_docmd.obj : ex_docmd.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 840 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 841 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 842 | errors.h globals.h ex_cmdidxs.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 843 | ex_eval.obj : ex_eval.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 844 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 845 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 846 | errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 847 | ex_getln.obj : ex_getln.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 848 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 849 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 850 | errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 851 | fileio.obj : fileio.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 852 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 853 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 854 | errors.h globals.h |
Bram Moolenaar | b005cd8 | 2019-09-04 15:54:55 +0200 | [diff] [blame] | 855 | filepath.obj : filepath.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 856 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 857 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 858 | errors.h globals.h |
Bram Moolenaar | 5fd0f50 | 2019-02-13 23:13:28 +0100 | [diff] [blame] | 859 | findfile.obj : findfile.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 860 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 861 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 862 | errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 863 | fold.obj : fold.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 864 | ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 865 | [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 866 | getchar.obj : getchar.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 867 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 868 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 869 | errors.h globals.h |
Bram Moolenaar | f15c8b6 | 2020-06-01 14:34:43 +0200 | [diff] [blame] | 870 | gui_xim.obj : gui_xim.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 871 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 872 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 873 | errors.h globals.h |
Bram Moolenaar | 58d9823 | 2005-07-23 22:25:46 +0000 | [diff] [blame] | 874 | hardcopy.obj : hardcopy.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 875 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 876 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 877 | errors.h globals.h version.h |
Bram Moolenaar | 76b92b2 | 2006-03-24 22:46:53 +0000 | [diff] [blame] | 878 | 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] | 879 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 880 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 881 | errors.h globals.h |
Bram Moolenaar | f868ba8 | 2020-07-21 21:07:20 +0200 | [diff] [blame] | 882 | help.obj : help.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 883 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 884 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 885 | errors.h globals.h |
Bram Moolenaar | f9cc9f2 | 2019-07-14 21:29:22 +0200 | [diff] [blame] | 886 | highlight.obj : highlight.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 887 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 888 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 889 | errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 890 | if_cscope.obj : if_cscope.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 891 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 892 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 893 | errors.h globals.h if_cscope.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 894 | if_xcmdsrv.obj : if_xcmdsrv.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 895 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 896 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 897 | errors.h globals.h version.h |
Bram Moolenaar | f878bcf | 2010-07-30 22:29:41 +0200 | [diff] [blame] | 898 | if_mzsch.obj : if_mzsch.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 899 | ascii.h keymap.h term.h macros.h option.h structs.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 900 | regexp.h gui.h beval.h [.proto]gui_beval.pro ex_cmds.h proto.h \ |
Bram Moolenaar | 82c38fe | 2021-01-04 10:47:26 +0100 | [diff] [blame] | 901 | errors.h globals.h if_mzsch.h |
Bram Moolenaar | 4b47162 | 2019-01-31 13:48:09 +0100 | [diff] [blame] | 902 | indent.obj : indent.c vim.h [.auto]config.h feature.h os_unix.h |
Bram Moolenaar | 7591bb3 | 2019-03-30 13:53:47 +0100 | [diff] [blame] | 903 | insexpand.obj : insexpand.c vim.h [.auto]config.h feature.h os_unix.h |
Bram Moolenaar | 520e1e4 | 2016-01-23 19:46:28 +0100 | [diff] [blame] | 904 | json.obj : json.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 905 | ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 906 | [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
Bram Moolenaar | de5e2c2 | 2016-11-04 20:35:31 +0100 | [diff] [blame] | 907 | list.obj : list.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 908 | ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 909 | beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 910 | errors.h globals.h |
Bram Moolenaar | 054f14b | 2020-07-22 19:11:19 +0200 | [diff] [blame] | 911 | locale.obj : locale.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 912 | ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \ |
| 913 | beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 914 | errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 915 | main.obj : main.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 916 | ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 917 | [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h \ |
Bram Moolenaar | e37368c | 2019-03-22 16:57:45 +0100 | [diff] [blame] | 918 | arabic.c |
Bram Moolenaar | b66bab3 | 2019-08-01 14:28:24 +0200 | [diff] [blame] | 919 | map.obj : map.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 920 | ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 921 | [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 922 | mark.obj : mark.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 923 | ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 924 | [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
Bram Moolenaar | 06cf97e | 2020-06-28 13:17:26 +0200 | [diff] [blame] | 925 | match.obj : match.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 926 | ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 927 | [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 928 | memfile.obj : memfile.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 929 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 930 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 931 | errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 932 | memline.obj : memline.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 933 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 934 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 935 | errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 936 | menu.obj : menu.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 937 | ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 938 | [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 939 | message.obj : message.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 940 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 941 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 942 | errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 943 | misc1.obj : misc1.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 944 | ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 945 | [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h \ |
Bram Moolenaar | e37368c | 2019-03-22 16:57:45 +0100 | [diff] [blame] | 946 | version.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 947 | misc2.obj : misc2.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 948 | ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 949 | [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 950 | mouse.obj : mouse.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 951 | ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 952 | [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 953 | move.obj : move.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 954 | ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 955 | [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 956 | mbyte.obj : mbyte.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 957 | ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 958 | [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 959 | normal.obj : normal.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 960 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 961 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 962 | errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 963 | ops.obj : ops.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 964 | ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 965 | [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 966 | option.obj : option.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 967 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 968 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 969 | errors.h globals.h optiondefs.h |
Bram Moolenaar | dac1347 | 2019-09-16 21:06:21 +0200 | [diff] [blame] | 970 | optionstr.obj : optionstr.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 971 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 972 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 973 | errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 974 | os_unix.obj : os_unix.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 975 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 976 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 977 | errors.h globals.h os_unixx.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 978 | os_vms.obj : os_vms.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 979 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 980 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 981 | errors.h globals.h os_unixx.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 982 | pathdef.obj : pathdef.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 983 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 984 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 985 | errors.h globals.h |
Bram Moolenaar | 30e8e73 | 2019-09-27 13:08:36 +0200 | [diff] [blame] | 986 | popupmenu.obj : popupmenu.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | df1bdc9 | 2006-02-23 21:32:16 +0000 | [diff] [blame] | 987 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 988 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 989 | errors.h globals.h |
Bram Moolenaar | 4d784b2 | 2019-05-25 19:51:39 +0200 | [diff] [blame] | 990 | popupwin.obj : popupwin.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 991 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 992 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 993 | errors.h globals.h |
Bram Moolenaar | fa55cfc | 2019-07-13 22:59:32 +0200 | [diff] [blame] | 994 | profiler.obj : profiler.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 995 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 996 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 997 | errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 998 | quickfix.obj : quickfix.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 999 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1000 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1001 | errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1002 | regexp.obj : regexp.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1003 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1004 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1005 | errors.h globals.h |
Bram Moolenaar | 4aea03e | 2019-09-25 22:37:17 +0200 | [diff] [blame] | 1006 | register.obj : register.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1007 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 1008 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1009 | errors.h globals.h |
Bram Moolenaar | 307c5a5 | 2019-08-25 15:41:00 +0200 | [diff] [blame] | 1010 | scriptfile.obj : scriptfile.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1011 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 1012 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1013 | errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1014 | screen.obj : screen.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1015 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1016 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1017 | errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1018 | search.obj : search.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1019 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1020 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1021 | errors.h globals.h |
Bram Moolenaar | 8453807 | 2019-07-28 14:15:42 +0200 | [diff] [blame] | 1022 | session.obj : session.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1023 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 1024 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1025 | errors.h globals.h |
Bram Moolenaar | de5e2c2 | 2016-11-04 20:35:31 +0100 | [diff] [blame] | 1026 | sha256.obj : sha256.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1027 | ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1028 | beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1029 | errors.h globals.h |
Bram Moolenaar | bbea470 | 2019-01-01 13:20:31 +0100 | [diff] [blame] | 1030 | sign.obj : sign.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1031 | ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \ |
| 1032 | beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1033 | errors.h globals.h |
Bram Moolenaar | 217ad92 | 2005-03-20 22:37:15 +0000 | [diff] [blame] | 1034 | spell.obj : spell.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1035 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1036 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1037 | errors.h globals.h |
Bram Moolenaar | de5e2c2 | 2016-11-04 20:35:31 +0100 | [diff] [blame] | 1038 | spellfile.obj : spellfile.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1039 | ascii.h keymap.h term.h macros.h option.h structs.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1040 | regexp.h gui.h beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1041 | proto.h errors.h globals.h |
Bram Moolenaar | 46a426c | 2019-09-27 12:41:56 +0200 | [diff] [blame] | 1042 | spellsuggest.obj : spellsuggest.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1043 | ascii.h keymap.h term.h macros.h option.h structs.h \ |
| 1044 | regexp.h gui.h beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1045 | proto.h errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1046 | syntax.obj : syntax.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1047 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1048 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1049 | errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1050 | tag.obj : tag.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1051 | ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1052 | [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1053 | term.obj : term.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1054 | ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1055 | [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1056 | termlib.obj : termlib.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1057 | ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1058 | [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
Bram Moolenaar | ecaa70e | 2019-07-14 14:55:39 +0200 | [diff] [blame] | 1059 | testing.obj : testing.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1060 | ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1061 | [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
Bram Moolenaar | 11abd09 | 2020-05-01 14:26:37 +0200 | [diff] [blame] | 1062 | textformat.obj : textformat.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1063 | ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1064 | [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
Bram Moolenaar | ed8ce05 | 2020-04-29 21:04:15 +0200 | [diff] [blame] | 1065 | textobject.obj : textobject.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1066 | ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1067 | [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
Bram Moolenaar | 88c86eb | 2019-01-17 17:13:30 +0100 | [diff] [blame] | 1068 | textprop.obj : textprop.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1069 | ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1070 | [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
Bram Moolenaar | 0a8fed6 | 2020-02-14 13:22:17 +0100 | [diff] [blame] | 1071 | time.obj : time.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1072 | ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1073 | [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
Bram Moolenaar | 367d59e | 2020-05-30 17:06:14 +0200 | [diff] [blame] | 1074 | typval.obj : typval.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1075 | ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1076 | [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1077 | ui.obj : ui.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1078 | ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1079 | [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1080 | undo.obj : undo.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1081 | ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1082 | [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
Bram Moolenaar | ac9fb18 | 2019-04-27 13:04:13 +0200 | [diff] [blame] | 1083 | usercmd.obj : usercmd.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1084 | ascii.h keymap.h term.h macros.h option.h structs.h \ |
| 1085 | regexp.h gui.h beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1086 | proto.h errors.h globals.h |
Bram Moolenaar | de5e2c2 | 2016-11-04 20:35:31 +0100 | [diff] [blame] | 1087 | userfunc.obj : userfunc.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1088 | ascii.h keymap.h term.h macros.h option.h structs.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1089 | regexp.h gui.h beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1090 | proto.h errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1091 | version.obj : version.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1092 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1093 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1094 | errors.h globals.h version.h |
Bram Moolenaar | defa067 | 2019-07-21 19:25:37 +0200 | [diff] [blame] | 1095 | viminfo.obj : viminfo.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1096 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 1097 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1098 | errors.h globals.h version.h |
Bram Moolenaar | f2cecb6 | 2020-02-13 21:59:25 +0100 | [diff] [blame] | 1099 | vim9compile.obj : vim9compile.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1100 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 1101 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1102 | errors.h globals.h version.h |
Bram Moolenaar | f2cecb6 | 2020-02-13 21:59:25 +0100 | [diff] [blame] | 1103 | vim9execute.obj : vim9execute.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1104 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 1105 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1106 | errors.h globals.h version.h |
Bram Moolenaar | f2cecb6 | 2020-02-13 21:59:25 +0100 | [diff] [blame] | 1107 | vim9script.obj : vim9script.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1108 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 1109 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1110 | errors.h globals.h version.h |
| 1111 | vim9type.obj : vim9type.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1112 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 1113 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
| 1114 | errors.h globals.h version.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1115 | window.obj : window.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1116 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1117 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1118 | errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1119 | gui.obj : gui.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1120 | ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1121 | [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1122 | gui_gtk.obj : gui_gtk.c gui_gtk_f.h vim.h [.auto]config.h feature.h \ |
| 1123 | os_unix.h ascii.h keymap.h term.h macros.h structs.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1124 | regexp.h gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1125 | proto.h errors.h globals.h [-.pixmaps]stock_icons.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1126 | gui_gtk_f.obj : gui_gtk_f.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1127 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1128 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1129 | errors.h globals.h gui_gtk_f.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1130 | gui_motif.obj : gui_motif.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1131 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1132 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1133 | errors.h globals.h [-.pixmaps]alert.xpm [-.pixmaps]error.xpm \ |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1134 | [-.pixmaps]generic.xpm [-.pixmaps]info.xpm [-.pixmaps]quest.xpm |
| 1135 | gui_athena.obj : gui_athena.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1136 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1137 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1138 | errors.h globals.h gui_at_sb.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1139 | gui_gtk_x11.obj : gui_gtk_x11.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1140 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1141 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1142 | errors.h globals.h gui_gtk_f.h [-.runtime]vim32x32.xpm \ |
Bram Moolenaar | f5f4b6c | 2019-12-14 13:17:11 +0100 | [diff] [blame] | 1143 | [-.runtime]vim16x16.xpm [-.runtime]vim48x48.xpm version.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1144 | gui_x11.obj : gui_x11.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1145 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1146 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1147 | errors.h globals.h [-.runtime]vim32x32.xpm \ |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1148 | [-.runtime]vim16x16.xpm [-.runtime]vim48x48.xpm [-.pixmaps]tb_new.xpm \ |
| 1149 | [-.pixmaps]tb_open.xpm [-.pixmaps]tb_close.xpm [-.pixmaps]tb_save.xpm \ |
| 1150 | [-.pixmaps]tb_print.xpm [-.pixmaps]tb_cut.xpm [-.pixmaps]tb_copy.xpm \ |
| 1151 | [-.pixmaps]tb_paste.xpm [-.pixmaps]tb_find.xpm \ |
| 1152 | [-.pixmaps]tb_find_next.xpm [-.pixmaps]tb_find_prev.xpm \ |
| 1153 | [-.pixmaps]tb_find_help.xpm [-.pixmaps]tb_exit.xpm \ |
| 1154 | [-.pixmaps]tb_undo.xpm [-.pixmaps]tb_redo.xpm [-.pixmaps]tb_help.xpm \ |
| 1155 | [-.pixmaps]tb_macro.xpm [-.pixmaps]tb_make.xpm \ |
| 1156 | [-.pixmaps]tb_save_all.xpm [-.pixmaps]tb_jump.xpm \ |
| 1157 | [-.pixmaps]tb_ctags.xpm [-.pixmaps]tb_load_session.xpm \ |
| 1158 | [-.pixmaps]tb_save_session.xpm [-.pixmaps]tb_new_session.xpm \ |
| 1159 | [-.pixmaps]tb_blank.xpm [-.pixmaps]tb_maximize.xpm \ |
| 1160 | [-.pixmaps]tb_split.xpm [-.pixmaps]tb_minimize.xpm \ |
| 1161 | [-.pixmaps]tb_shell.xpm [-.pixmaps]tb_replace.xpm \ |
| 1162 | [-.pixmaps]tb_vsplit.xpm [-.pixmaps]tb_maxwidth.xpm \ |
| 1163 | [-.pixmaps]tb_minwidth.xpm |
| 1164 | gui_at_sb.obj : gui_at_sb.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1165 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1166 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1167 | errors.h globals.h gui_at_sb.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1168 | gui_at_fs.obj : gui_at_fs.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1169 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1170 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1171 | errors.h globals.h gui_at_sb.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1172 | pty.obj : pty.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1173 | ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1174 | [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1175 | if_perl.obj : [.auto]if_perl.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1176 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1177 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1178 | errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1179 | if_perlsfio.obj : if_perlsfio.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1180 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1181 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1182 | errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1183 | if_python.obj : if_python.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1184 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1185 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1186 | errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1187 | if_tcl.obj : if_tcl.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1188 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1189 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1190 | errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1191 | if_ruby.obj : if_ruby.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1192 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1193 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1194 | errors.h globals.h version.h |
Bram Moolenaar | 82c38fe | 2021-01-04 10:47:26 +0100 | [diff] [blame] | 1195 | if_lua.obj : if_lua.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1196 | errors.h globals.h version.h |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1197 | beval.obj : beval.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1198 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 1199 | gui.h beval.h option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1200 | errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1201 | gui_beval.obj : gui_beval.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1202 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1203 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1204 | errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1205 | netbeans.obj : netbeans.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1206 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1207 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1208 | errors.h globals.h version.h |
Bram Moolenaar | 88c86eb | 2019-01-17 17:13:30 +0100 | [diff] [blame] | 1209 | gui_xmdlg.obj : gui_xmdlg.c [.auto]config.h vim.h feature.h os_unix.h |
| 1210 | gui_xmebw.obj : gui_xmebw.c [.auto]config.h vim.h feature.h os_unix.h |
| 1211 | xdiffi.obj : [.xdiff]xdiffi.c [.xdiff]xinclude.h [.auto]config.h vim.h feature.h os_unix.h |
| 1212 | xemit.obj : [.xdiff]xemit.c [.xdiff]xinclude.h [.auto]config.h vim.h feature.h os_unix.h |
| 1213 | xprepare.obj : [.xdiff]xprepare.c [.xdiff]xinclude.h [.auto]config.h vim.h feature.h os_unix.h |
| 1214 | xutils.obj : [.xdiff]xutils.c [.xdiff]xinclude.h [.auto]config.h vim.h feature.h os_unix.h |
| 1215 | xhistogram.obj : [.xdiff]xhistogram.c [.xdiff]xinclude.h [.auto]config.h vim.h feature.h os_unix.h |
Bram Moolenaar | 82c38fe | 2021-01-04 10:47:26 +0100 | [diff] [blame] | 1216 | xpatience.obj : [.xdiff]xpatience.c [.xdiff]xinclude.h [.auto]config.h vim.h feature.h os_unix.h |