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 = \ |
Yegappan Lakshmanan | cbae580 | 2021-08-06 21:51:55 +0200 | [diff] [blame] | 309 | alloc.c \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 310 | arabic.c \ |
| 311 | arglist.c \ |
| 312 | autocmd.c \ |
| 313 | beval.c \ |
| 314 | blob.c \ |
| 315 | blowfish.c \ |
| 316 | buffer.c \ |
| 317 | bufwrite.c \ |
| 318 | change.c \ |
| 319 | charset.c \ |
Bram Moolenaar | 14c01f8 | 2019-10-09 22:53:08 +0200 | [diff] [blame] | 320 | cindent.c \ |
Bram Moolenaar | f87a040 | 2020-04-05 20:21:03 +0200 | [diff] [blame] | 321 | clientserver.c \ |
Bram Moolenaar | 45fffdf | 2020-03-24 21:42:01 +0100 | [diff] [blame] | 322 | clipboard.c \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 323 | cmdexpand.c \ |
| 324 | cmdhist.c \ |
| 325 | crypt.c \ |
| 326 | crypt_zip.c \ |
| 327 | debugger.c \ |
| 328 | dict.c \ |
| 329 | diff.c \ |
| 330 | digraph.c \ |
| 331 | drawline.c \ |
| 332 | drawscreen.c \ |
| 333 | edit.c \ |
| 334 | eval.c \ |
| 335 | evalbuffer.c \ |
| 336 | evalfunc.c \ |
| 337 | evalvars.c \ |
| 338 | evalwindow.c \ |
| 339 | ex_cmds.c \ |
| 340 | ex_cmds2.c \ |
| 341 | ex_docmd.c \ |
| 342 | ex_eval.c \ |
Bram Moolenaar | 261f346 | 2019-09-07 15:45:32 +0200 | [diff] [blame] | 343 | ex_getln.c \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 344 | fileio.c \ |
| 345 | filepath.c, \ |
| 346 | findfile.c \ |
Yegappan Lakshmanan | 01c798c | 2021-06-02 17:07:18 +0200 | [diff] [blame] | 347 | float.c \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 348 | fold.c \ |
| 349 | getchar.c \ |
Bram Moolenaar | f15c8b6 | 2020-06-01 14:34:43 +0200 | [diff] [blame] | 350 | gui_xim.c \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 351 | hardcopy.c \ |
| 352 | hashtab.c \ |
Bram Moolenaar | f868ba8 | 2020-07-21 21:07:20 +0200 | [diff] [blame] | 353 | help.c \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 354 | highlight.c \ |
| 355 | if_cscope.c \ |
| 356 | if_xcmdsrv.c \ |
| 357 | indent.c \ |
| 358 | insexpand.c \ |
| 359 | json.c \ |
| 360 | list.c \ |
Bram Moolenaar | 054f14b | 2020-07-22 19:11:19 +0200 | [diff] [blame] | 361 | locale.c \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 362 | main.c \ |
| 363 | map.c \ |
| 364 | mark.c \ |
Bram Moolenaar | 06cf97e | 2020-06-28 13:17:26 +0200 | [diff] [blame] | 365 | match.c \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 366 | mbyte.c \ |
| 367 | memfile.c \ |
| 368 | memline.c \ |
| 369 | menu.c \ |
| 370 | message.c \ |
| 371 | misc1.c \ |
| 372 | misc2.c \ |
| 373 | mouse.c \ |
| 374 | move.c \ |
| 375 | normal.c \ |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 376 | ops.c \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 377 | option.c \ |
| 378 | optionstr.c \ |
| 379 | os_unix.c \ |
| 380 | os_vms.c \ |
Bram Moolenaar | 4ad6215 | 2019-08-17 14:38:55 +0200 | [diff] [blame] | 381 | pathdef.c \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 382 | popupmenu.c \ |
| 383 | popupwin.c \ |
| 384 | profiler.c \ |
| 385 | quickfix.c \ |
| 386 | regexp.c \ |
| 387 | register.c \ |
| 388 | screen.c \ |
| 389 | scriptfile.c \ |
| 390 | search.c \ |
| 391 | session.c \ |
| 392 | sha256.c \ |
| 393 | sign.c \ |
| 394 | spell.c \ |
| 395 | spellfile.c \ |
| 396 | spellsuggest.c \ |
Yegappan Lakshmanan | a243813 | 2021-07-10 21:29:18 +0200 | [diff] [blame] | 397 | strings.c \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 398 | syntax.c \ |
| 399 | tag.c \ |
| 400 | term.c \ |
| 401 | termlib.c \ |
| 402 | testing.c \ |
Bram Moolenaar | 11abd09 | 2020-05-01 14:26:37 +0200 | [diff] [blame] | 403 | textformat.c \ |
Bram Moolenaar | ed8ce05 | 2020-04-29 21:04:15 +0200 | [diff] [blame] | 404 | textobject.c \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 405 | textprop.c \ |
Bram Moolenaar | 0a8fed6 | 2020-02-14 13:22:17 +0100 | [diff] [blame] | 406 | time.c \ |
Bram Moolenaar | 367d59e | 2020-05-30 17:06:14 +0200 | [diff] [blame] | 407 | typval.c \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 408 | ui.c \ |
| 409 | undo.c \ |
| 410 | usercmd.c \ |
| 411 | userfunc.c \ |
| 412 | version.c \ |
Bram Moolenaar | f2cecb6 | 2020-02-13 21:59:25 +0100 | [diff] [blame] | 413 | vim9compile.c \ |
| 414 | vim9execute.c \ |
| 415 | vim9script.c \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 416 | vim9type.c \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 417 | viminfo.c \ |
| 418 | window.c \ |
| 419 | $(GUI_SRC) \ |
| 420 | $(PERL_SRC) \ |
| 421 | $(PYTHON_SRC) \ |
| 422 | $(TCL_SRC) \ |
| 423 | $(RUBY_SRC) \ |
Bram Moolenaar | 82c38fe | 2021-01-04 10:47:26 +0100 | [diff] [blame] | 424 | $(LUA_SRC) \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 425 | $(MZSCH_SRC) \ |
| 426 | $(XDIFF_SRC) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 427 | |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 428 | OBJ = \ |
Yegappan Lakshmanan | cbae580 | 2021-08-06 21:51:55 +0200 | [diff] [blame] | 429 | alloc.obj \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 430 | arabic.obj \ |
| 431 | arglist.obj \ |
| 432 | autocmd.obj \ |
| 433 | beval.obj \ |
| 434 | blob.obj \ |
| 435 | blowfish.obj \ |
| 436 | buffer.obj \ |
| 437 | bufwrite.obj \ |
| 438 | change.obj \ |
| 439 | charset.obj \ |
Bram Moolenaar | 14c01f8 | 2019-10-09 22:53:08 +0200 | [diff] [blame] | 440 | cindent.obj \ |
Bram Moolenaar | f87a040 | 2020-04-05 20:21:03 +0200 | [diff] [blame] | 441 | clientserver.obj \ |
Bram Moolenaar | 45fffdf | 2020-03-24 21:42:01 +0100 | [diff] [blame] | 442 | clipboard.obj \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 443 | cmdexpand.obj \ |
| 444 | cmdhist.obj \ |
| 445 | crypt.obj \ |
| 446 | crypt_zip.obj \ |
| 447 | debugger.obj \ |
| 448 | dict.obj \ |
| 449 | diff.obj \ |
| 450 | digraph.obj \ |
| 451 | drawline.obj \ |
| 452 | drawscreen.obj \ |
| 453 | edit.obj \ |
| 454 | eval.obj \ |
| 455 | evalbuffer.obj \ |
| 456 | evalfunc.obj \ |
| 457 | evalvars.obj \ |
| 458 | evalwindow.obj \ |
| 459 | ex_cmds.obj \ |
| 460 | ex_cmds2.obj \ |
| 461 | ex_docmd.obj \ |
| 462 | ex_eval.obj \ |
| 463 | ex_getln.obj \ |
| 464 | fileio.obj \ |
| 465 | filepath.obj \ |
| 466 | findfile.obj \ |
Yegappan Lakshmanan | 01c798c | 2021-06-02 17:07:18 +0200 | [diff] [blame] | 467 | float.obj \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 468 | fold.obj \ |
| 469 | getchar.obj \ |
Bram Moolenaar | f15c8b6 | 2020-06-01 14:34:43 +0200 | [diff] [blame] | 470 | gui_xim.obj \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 471 | hardcopy.obj \ |
| 472 | hashtab.obj \ |
Bram Moolenaar | f868ba8 | 2020-07-21 21:07:20 +0200 | [diff] [blame] | 473 | help.obj \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 474 | highlight.obj \ |
| 475 | if_cscope.obj \ |
| 476 | if_mzsch.obj \ |
| 477 | if_xcmdsrv.obj \ |
| 478 | indent.obj \ |
| 479 | insexpand.obj \ |
| 480 | json.obj \ |
| 481 | list.obj \ |
Bram Moolenaar | 054f14b | 2020-07-22 19:11:19 +0200 | [diff] [blame] | 482 | locale.obj \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 483 | main.obj \ |
| 484 | map.obj \ |
| 485 | mark.obj \ |
Bram Moolenaar | 06cf97e | 2020-06-28 13:17:26 +0200 | [diff] [blame] | 486 | match.obj \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 487 | mbyte.obj \ |
| 488 | memfile.obj \ |
| 489 | memline.obj \ |
| 490 | menu.obj \ |
| 491 | message.obj \ |
| 492 | misc1.obj \ |
| 493 | misc2.obj \ |
| 494 | mouse.obj \ |
| 495 | move.obj \ |
| 496 | normal.obj \ |
| 497 | ops.obj \ |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 498 | option.obj \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 499 | optionstr.obj \ |
| 500 | os_unix.obj \ |
| 501 | os_vms.obj \ |
| 502 | pathdef.obj \ |
| 503 | popupmenu.obj \ |
| 504 | popupwin.obj \ |
| 505 | profiler.obj \ |
| 506 | quickfix.obj \ |
| 507 | regexp.obj \ |
| 508 | register.obj \ |
| 509 | screen.obj \ |
| 510 | scriptfile.obj \ |
| 511 | search.obj \ |
| 512 | session.obj \ |
| 513 | sha256.obj \ |
| 514 | sign.obj \ |
| 515 | spell.obj \ |
| 516 | spellfile.obj \ |
| 517 | spellsuggest.obj \ |
Yegappan Lakshmanan | a243813 | 2021-07-10 21:29:18 +0200 | [diff] [blame] | 518 | strings.obj \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 519 | syntax.obj \ |
| 520 | tag.obj \ |
| 521 | term.obj \ |
| 522 | termlib.obj \ |
| 523 | testing.obj \ |
Bram Moolenaar | 11abd09 | 2020-05-01 14:26:37 +0200 | [diff] [blame] | 524 | textformat.obj \ |
Bram Moolenaar | ed8ce05 | 2020-04-29 21:04:15 +0200 | [diff] [blame] | 525 | textobject.obj \ |
Bram Moolenaar | 46a426c | 2019-09-27 12:41:56 +0200 | [diff] [blame] | 526 | textprop.obj \ |
Bram Moolenaar | 0a8fed6 | 2020-02-14 13:22:17 +0100 | [diff] [blame] | 527 | time.obj \ |
Bram Moolenaar | 367d59e | 2020-05-30 17:06:14 +0200 | [diff] [blame] | 528 | typval.obj \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 529 | ui.obj \ |
| 530 | undo.obj \ |
| 531 | usercmd.obj \ |
| 532 | userfunc.obj \ |
| 533 | version.obj \ |
Bram Moolenaar | f2cecb6 | 2020-02-13 21:59:25 +0100 | [diff] [blame] | 534 | vim9compile.obj \ |
| 535 | vim9execute.obj \ |
| 536 | vim9script.obj \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 537 | vim9type.obj \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 538 | viminfo.obj \ |
| 539 | window.obj \ |
| 540 | $(GUI_OBJ) \ |
| 541 | $(PERL_OBJ) \ |
| 542 | $(PYTHON_OBJ) \ |
| 543 | $(TCL_OBJ) \ |
| 544 | $(RUBY_OBJ) \ |
Bram Moolenaar | 82c38fe | 2021-01-04 10:47:26 +0100 | [diff] [blame] | 545 | $(LUA_OBJ) \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 546 | $(MZSCH_OBJ) \ |
| 547 | $(XDIFF_OBJ) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 548 | |
| 549 | # Default target is making the executable |
Bram Moolenaar | 82c38fe | 2021-01-04 10:47:26 +0100 | [diff] [blame] | 550 | 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] | 551 | ! $@ |
| 552 | |
| 553 | [.auto]config.h : $(CONFIG_H) |
| 554 | copy/nolog $(CONFIG_H) [.auto]config.h |
| 555 | |
| 556 | mmk_compat : |
| 557 | -@ open/write pd pathdef.c |
| 558 | -@ write pd "/* Empty file to satisfy MMK depend. */" |
Bram Moolenaar | cf0dfa2 | 2007-05-10 18:52:16 +0000 | [diff] [blame] | 559 | -@ write pd "/* It will be overwritten later on... */" |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 560 | -@ close pd |
| 561 | clean : |
| 562 | -@ if "''F$SEARCH("*.exe")'" .NES. "" then delete/noconfirm/nolog *.exe;* |
| 563 | -@ if "''F$SEARCH("*.obj")'" .NES. "" then delete/noconfirm/nolog *.obj;* |
| 564 | -@ if "''F$SEARCH("[.auto]config.h")'" .NES. "" then delete/noconfirm/nolog [.auto]config.h;* |
| 565 | -@ if "''F$SEARCH("pathdef.c")'" .NES. "" then delete/noconfirm/nolog pathdef.c;* |
| 566 | -@ if "''F$SEARCH("if_perl.c")'" .NES. "" then delete/noconfirm/nolog if_perl.c;* |
| 567 | -@ if "''F$SEARCH("*.opt")'" .NES. "" then delete/noconfirm/nolog *.opt;* |
Bram Moolenaar | 467676d | 2020-12-30 13:14:45 +0100 | [diff] [blame] | 568 | -@ if "''F$SEARCH("*.dmp")'" .NES. "" then delete/noconfirm/nolog *.dmp;* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 569 | |
| 570 | # Link the target |
| 571 | $(TARGET) : $(OBJ) |
Bram Moolenaar | 0c5c3fa | 2019-11-30 22:38:16 +0100 | [diff] [blame] | 572 | # make an OPT file - as the obj file list is too long for one command line |
| 573 | -@ DIRECTORY *.OBJ. /BRIEF/COLUMNS=1/NOHEADING/NOTRAILING /SELECT=FILE=(NONODE,NODEVICE,NODIRECTORY,NOVERSION)/OUTPUT=ALL_OBJS_LIST.OPT |
| 574 | $(LD_DEF) $(LDFLAGS) /exe=$(TARGET) ALL_OBJS_LIST.OPT/OPT $(ALL_LIBS) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 575 | |
| 576 | .c.obj : |
| 577 | $(CC_DEF) $(ALL_CFLAGS) $< |
| 578 | |
| 579 | pathdef.c : check_ccver $(CONFIG_H) |
| 580 | -@ write sys$output "creating PATHDEF.C file." |
| 581 | -@ open/write pd pathdef.c |
| 582 | -@ write pd "/* pathdef.c -- DO NOT EDIT! */" |
| 583 | -@ write pd "/* This file is automatically created by MAKE_VMS.MMS" |
| 584 | -@ write pd " * Change the file MAKE_VMS.MMS Only. */" |
| 585 | -@ write pd "typedef unsigned char char_u;" |
| 586 | -@ write pd "char_u *default_vim_dir = (char_u *)"$(VIMLOC)";" |
| 587 | -@ write pd "char_u *default_vimruntime_dir = (char_u *)"$(VIMRUN)";" |
| 588 | -@ 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] | 589 | -@ 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] | 590 | -@ write pd "char_u *compiler_version = (char_u *) ""''CC_VER'"";" |
| 591 | -@ write pd "char_u *compiled_user = (char_u *) "$(VIMUSER)";" |
Bram Moolenaar | 3d20ca1 | 2006-11-28 16:43:58 +0000 | [diff] [blame] | 592 | -@ write pd "char_u *compiled_sys = (char_u *) "$(VIMHOST)";" |
| 593 | -@ write pd "char_u *compiled_arch = (char_u *) ""$(MMSARCH_NAME)"";" |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 594 | -@ close pd |
| 595 | |
| 596 | if_perl.c : if_perl.xs |
Bram Moolenaar | 0c5c3fa | 2019-11-30 22:38:16 +0100 | [diff] [blame] | 597 | -@ $(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] | 598 | |
| 599 | make_vms.mms : |
| 600 | -@ write sys$output "The name of the makefile MUST be <MAKE_VMS.MMS> !!!" |
| 601 | |
| 602 | .IFDEF CCVER |
| 603 | # This part can make some complications if you're using some predefined |
| 604 | # symbols/flags for your compiler. If does, just comment out CCVER variable |
| 605 | check_ccver : |
| 606 | -@ define sys$output cc_ver.tmp |
| 607 | -@ $(CC_DEF)/version |
| 608 | -@ deassign sys$output |
| 609 | -@ open/read file cc_ver.tmp |
| 610 | -@ read file CC_VER |
| 611 | -@ close file |
| 612 | -@ delete/noconfirm/nolog cc_ver.tmp.* |
| 613 | .ELSE |
| 614 | check_ccver : |
| 615 | -@ ! |
| 616 | .ENDIF |
| 617 | |
| 618 | .IFDEF MOTIF |
| 619 | motif_env : |
Bram Moolenaar | 8d34330 | 2005-07-12 22:46:17 +0000 | [diff] [blame] | 620 | .IFDEF XPM |
| 621 | -@ write sys$output "using DECW/Motif/XPM environment." |
Bram Moolenaar | 467676d | 2020-12-30 13:14:45 +0100 | [diff] [blame] | 622 | -@ write sys$output "creating OS_VMS_XPM.OPT file." |
| 623 | -@ open/write opt_file OS_VMS_XPM.OPT |
| 624 | .IFDEF MMSVAX |
| 625 | -@ write opt_file "[.xpm.vms.vax]libxpm.olb/lib" |
| 626 | .ENDIF |
| 627 | .IFDEF MMSALPHA |
| 628 | -@ write opt_file "[.xpm.vms.axp]libxpm.olb/lib" |
| 629 | .ENDIF |
| 630 | .IFDEF MMSIA64 |
| 631 | -@ write opt_file "[.xpm.vms.ia64]libxpm.olb/lib" |
Bram Moolenaar | 82c38fe | 2021-01-04 10:47:26 +0100 | [diff] [blame] | 632 | .ENDIF |
Bram Moolenaar | 467676d | 2020-12-30 13:14:45 +0100 | [diff] [blame] | 633 | -@ close opt_file |
Bram Moolenaar | 8d34330 | 2005-07-12 22:46:17 +0000 | [diff] [blame] | 634 | .ELSE |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 635 | -@ write sys$output "using DECW/Motif environment." |
Bram Moolenaar | 8d34330 | 2005-07-12 22:46:17 +0000 | [diff] [blame] | 636 | .ENDIF |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 637 | -@ write sys$output "creating OS_VMS_MOTIF.OPT file." |
| 638 | -@ open/write opt_file OS_VMS_MOTIF.OPT |
| 639 | -@ write opt_file "sys$share:decw$xmlibshr12.exe/share,-" |
| 640 | -@ write opt_file "sys$share:decw$xtlibshrr5.exe/share,-" |
| 641 | -@ write opt_file "sys$share:decw$xlibshr.exe/share" |
| 642 | -@ close opt_file |
| 643 | .ELSE |
| 644 | motif_env : |
| 645 | -@ ! |
| 646 | .ENDIF |
| 647 | |
| 648 | |
| 649 | .IFDEF GTK |
| 650 | gtk_env : |
| 651 | -@ write sys$output "using GTK environment:" |
| 652 | -@ define/nolog gtk_root /trans=conc $(GTK_DIR) |
| 653 | -@ show logical gtk_root |
| 654 | -@ write sys$output " include path: "$(GUI_INC)"" |
| 655 | -@ write sys$output "creating OS_VMS_GTK.OPT file." |
| 656 | -@ open/write opt_file OS_VMS_GTK.OPT |
| 657 | -@ write opt_file "gtk_root:[glib]libglib.exe /share,-" |
| 658 | -@ write opt_file "gtk_root:[glib.gmodule]libgmodule.exe /share,-" |
| 659 | -@ write opt_file "gtk_root:[gtk.gdk]libgdk.exe /share,-" |
| 660 | -@ write opt_file "gtk_root:[gtk.gtk]libgtk.exe /share,-" |
| 661 | -@ write opt_file "sys$share:decw$xmlibshr12.exe/share,-" |
| 662 | -@ write opt_file "sys$share:decw$xtlibshrr5.exe/share,-" |
| 663 | -@ write opt_file "sys$share:decw$xlibshr.exe/share" |
| 664 | -@ close opt_file |
| 665 | .ELSE |
| 666 | gtk_env : |
| 667 | -@ ! |
| 668 | .ENDIF |
| 669 | |
| 670 | .IFDEF VIM_PERL |
| 671 | perl_env : |
| 672 | -@ write sys$output "using PERL environment:" |
| 673 | -@ show logical PERLSHR |
| 674 | -@ write sys$output " include path: ""$(PERL_INC)""" |
| 675 | -@ show symbol perl |
| 676 | -@ open/write pd if_perl.c |
| 677 | -@ write pd "/* Empty file to satisfy MMK depend. */" |
Bram Moolenaar | cf0dfa2 | 2007-05-10 18:52:16 +0000 | [diff] [blame] | 678 | -@ write pd "/* It will be overwritten later on... */" |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 679 | -@ close pd |
| 680 | -@ write sys$output "creating OS_VMS_PERL.OPT file." |
| 681 | -@ open/write opt_file OS_VMS_PERL.OPT |
| 682 | -@ write opt_file "PERLSHR /share" |
| 683 | -@ close opt_file |
| 684 | .ELSE |
| 685 | perl_env : |
| 686 | -@ ! |
| 687 | .ENDIF |
| 688 | |
| 689 | .IFDEF VIM_PYTHON |
| 690 | python_env : |
| 691 | -@ write sys$output "using PYTHON environment:" |
| 692 | -@ show logical PYTHON_INCLUDE |
| 693 | -@ show logical PYTHON_OLB |
| 694 | -@ write sys$output "creating OS_VMS_PYTHON.OPT file." |
| 695 | -@ open/write opt_file OS_VMS_PYTHON.OPT |
| 696 | -@ write opt_file "PYTHON_OLB:PYTHON.OLB /share" |
| 697 | -@ close opt_file |
| 698 | .ELSE |
| 699 | python_env : |
| 700 | -@ ! |
| 701 | .ENDIF |
| 702 | |
| 703 | .IFDEF VIM_TCL |
| 704 | tcl_env : |
| 705 | -@ write sys$output "using TCL environment:" |
| 706 | -@ show logical TCLSHR |
| 707 | -@ write sys$output " include path: ""$(TCL_INC)""" |
| 708 | -@ write sys$output "creating OS_VMS_TCL.OPT file." |
| 709 | -@ open/write opt_file OS_VMS_TCL.OPT |
| 710 | -@ write opt_file "TCLSHR /share" |
| 711 | -@ close opt_file |
| 712 | .ELSE |
| 713 | tcl_env : |
| 714 | -@ ! |
| 715 | .ENDIF |
| 716 | |
| 717 | .IFDEF VIM_RUBY |
| 718 | ruby_env : |
| 719 | -@ write sys$output "using RUBY environment:" |
| 720 | -@ write sys$output " include path: ""$(RUBY_INC)""" |
| 721 | -@ write sys$output "creating OS_VMS_RUBY.OPT file." |
| 722 | -@ open/write opt_file OS_VMS_RUBY.OPT |
| 723 | -@ write opt_file "RUBYSHR /share" |
| 724 | -@ close opt_file |
| 725 | .ELSE |
| 726 | ruby_env : |
| 727 | -@ ! |
| 728 | .ENDIF |
| 729 | |
Bram Moolenaar | 82c38fe | 2021-01-04 10:47:26 +0100 | [diff] [blame] | 730 | .IFDEF VIM_LUA |
| 731 | lua_env : |
| 732 | -@ write sys$output "using LUA environment:" |
| 733 | -@ write sys$output " include path: ""$(LUA_INC)""" |
| 734 | -@ write sys$output "creating OS_VMS_LUA.OPT file." |
| 735 | -@ open/write opt_file OS_VMS_LUA.OPT |
| 736 | -@ write opt_file "LUA$ROOT:[LIB]LUA$SHR.EXE /share" |
| 737 | -@ close opt_file |
| 738 | .ELSE |
| 739 | lua_env : |
| 740 | -@ ! |
| 741 | .ENDIF |
| 742 | |
Yegappan Lakshmanan | cbae580 | 2021-08-06 21:51:55 +0200 | [diff] [blame] | 743 | alloc.obj : alloc.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 744 | ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \ |
| 745 | [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
Bram Moolenaar | 3b98b83 | 2016-07-02 21:45:17 +0200 | [diff] [blame] | 746 | arabic.obj : arabic.c vim.h |
Bram Moolenaar | 4ad6215 | 2019-08-17 14:38:55 +0200 | [diff] [blame] | 747 | 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] | 748 | 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] | 749 | 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] | 750 | 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] | 751 | buffer.obj : buffer.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 752 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 753 | 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] | 754 | errors.h globals.h version.h |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 755 | bufwrite.obj : bufwrite.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 756 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 757 | 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] | 758 | errors.h globals.h |
Bram Moolenaar | ec28d15 | 2019-05-11 18:36:34 +0200 | [diff] [blame] | 759 | change.obj : change.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 760 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 761 | 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] | 762 | errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 763 | charset.obj : charset.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 764 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 765 | 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] | 766 | errors.h globals.h |
Bram Moolenaar | 14c01f8 | 2019-10-09 22:53:08 +0200 | [diff] [blame] | 767 | cindent.obj : cindent.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 768 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 769 | gui.h 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] | 770 | errors.h globals.h |
Bram Moolenaar | f87a040 | 2020-04-05 20:21:03 +0200 | [diff] [blame] | 771 | clientserver.obj : clientserver.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 772 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 773 | 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] | 774 | errors.h globals.h |
Bram Moolenaar | 45fffdf | 2020-03-24 21:42:01 +0100 | [diff] [blame] | 775 | clipboard.obj : clipboard.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 776 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 777 | 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] | 778 | errors.h globals.h |
Bram Moolenaar | 66b5142 | 2019-08-18 21:44:12 +0200 | [diff] [blame] | 779 | cmdexpand.obj : cmdexpand.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 780 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 781 | 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] | 782 | errors.h globals.h |
Bram Moolenaar | d7663c2 | 2019-08-06 21:59:57 +0200 | [diff] [blame] | 783 | cmdhist.obj : cmdhist.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 784 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 785 | 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] | 786 | errors.h globals.h |
Bram Moolenaar | de5e2c2 | 2016-11-04 20:35:31 +0100 | [diff] [blame] | 787 | crypt.obj : crypt.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 788 | 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] | 789 | 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] | 790 | errors.h globals.h |
Bram Moolenaar | de5e2c2 | 2016-11-04 20:35:31 +0100 | [diff] [blame] | 791 | crypt_zip.obj : crypt_zip.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 792 | ascii.h keymap.h term.h macros.h option.h structs.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 793 | 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] | 794 | proto.h errors.h globals.h |
Bram Moolenaar | eead75c | 2019-04-21 11:35:00 +0200 | [diff] [blame] | 795 | debugger.obj : debugger.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 796 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 797 | 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] | 798 | errors.h globals.h |
Bram Moolenaar | de5e2c2 | 2016-11-04 20:35:31 +0100 | [diff] [blame] | 799 | dict.obj : dict.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 800 | 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] | 801 | 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] | 802 | errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 803 | 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] | 804 | 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] | 805 | [.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] | 806 | digraph.obj : digraph.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 807 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 808 | 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] | 809 | errors.h globals.h |
Bram Moolenaar | 7528d1f | 2019-09-19 23:06:20 +0200 | [diff] [blame] | 810 | drawline.obj : drawline.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 811 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 812 | 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] | 813 | errors.h globals.h |
Bram Moolenaar | 7528d1f | 2019-09-19 23:06:20 +0200 | [diff] [blame] | 814 | drawscreen.obj : drawscreen.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 815 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 816 | 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] | 817 | errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 818 | 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] | 819 | 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] | 820 | [.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] | 821 | 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] | 822 | 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] | 823 | [.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] | 824 | evalbuffer.obj : evalbuffer.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 825 | ascii.h keymap.h term.h macros.h option.h structs.h \ |
| 826 | 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] | 827 | proto.h errors.h globals.h |
Bram Moolenaar | de5e2c2 | 2016-11-04 20:35:31 +0100 | [diff] [blame] | 828 | evalfunc.obj : evalfunc.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 829 | ascii.h keymap.h term.h macros.h option.h structs.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 830 | 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] | 831 | proto.h errors.h globals.h version.h |
Bram Moolenaar | 0522ba0 | 2019-08-27 22:48:30 +0200 | [diff] [blame] | 832 | evalvars.obj : evalvars.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 833 | ascii.h keymap.h term.h macros.h option.h structs.h \ |
| 834 | 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] | 835 | proto.h errors.h globals.h version.h |
Bram Moolenaar | 261f346 | 2019-09-07 15:45:32 +0200 | [diff] [blame] | 836 | evalwindow.obj : evalwindow.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 837 | ascii.h keymap.h term.h macros.h option.h structs.h \ |
| 838 | 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] | 839 | proto.h errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 840 | ex_cmds.obj : ex_cmds.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 841 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 842 | 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] | 843 | errors.h globals.h version.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 844 | ex_cmds2.obj : ex_cmds2.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 845 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 846 | 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] | 847 | errors.h globals.h version.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 848 | ex_docmd.obj : ex_docmd.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 849 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 850 | 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] | 851 | errors.h globals.h ex_cmdidxs.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 852 | ex_eval.obj : ex_eval.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 853 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 854 | 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] | 855 | errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 856 | ex_getln.obj : ex_getln.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 857 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 858 | 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] | 859 | errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 860 | fileio.obj : fileio.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 861 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 862 | 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] | 863 | errors.h globals.h |
Bram Moolenaar | b005cd8 | 2019-09-04 15:54:55 +0200 | [diff] [blame] | 864 | filepath.obj : filepath.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 865 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 866 | 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] | 867 | errors.h globals.h |
Bram Moolenaar | 5fd0f50 | 2019-02-13 23:13:28 +0100 | [diff] [blame] | 868 | findfile.obj : findfile.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 869 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 870 | 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] | 871 | errors.h globals.h |
Yegappan Lakshmanan | 01c798c | 2021-06-02 17:07:18 +0200 | [diff] [blame] | 872 | float.obj : float.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 873 | ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \ |
| 874 | [.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] | 875 | 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] | 876 | 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] | 877 | [.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] | 878 | getchar.obj : getchar.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 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 | f15c8b6 | 2020-06-01 14:34:43 +0200 | [diff] [blame] | 882 | gui_xim.obj : gui_xim.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 | 58d9823 | 2005-07-23 22:25:46 +0000 | [diff] [blame] | 886 | hardcopy.obj : hardcopy.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 887 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 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 version.h |
Bram Moolenaar | 76b92b2 | 2006-03-24 22:46:53 +0000 | [diff] [blame] | 890 | 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] | 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 |
Bram Moolenaar | f868ba8 | 2020-07-21 21:07:20 +0200 | [diff] [blame] | 894 | help.obj : help.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 895 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 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 |
Bram Moolenaar | f9cc9f2 | 2019-07-14 21:29:22 +0200 | [diff] [blame] | 898 | highlight.obj : highlight.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 899 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 900 | 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] | 901 | errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 902 | if_cscope.obj : if_cscope.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 903 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 904 | 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] | 905 | errors.h globals.h if_cscope.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 906 | if_xcmdsrv.obj : if_xcmdsrv.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 907 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 908 | 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] | 909 | errors.h globals.h version.h |
Bram Moolenaar | f878bcf | 2010-07-30 22:29:41 +0200 | [diff] [blame] | 910 | if_mzsch.obj : if_mzsch.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 911 | ascii.h keymap.h term.h macros.h option.h structs.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 912 | 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] | 913 | errors.h globals.h if_mzsch.h |
Bram Moolenaar | 4b47162 | 2019-01-31 13:48:09 +0100 | [diff] [blame] | 914 | 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] | 915 | 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] | 916 | 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] | 917 | 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] | 918 | [.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] | 919 | list.obj : list.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 920 | 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] | 921 | 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] | 922 | errors.h globals.h |
Bram Moolenaar | 054f14b | 2020-07-22 19:11:19 +0200 | [diff] [blame] | 923 | locale.obj : locale.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 924 | ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \ |
| 925 | 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] | 926 | errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 927 | 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] | 928 | 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] | 929 | [.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] | 930 | arabic.c |
Bram Moolenaar | b66bab3 | 2019-08-01 14:28:24 +0200 | [diff] [blame] | 931 | map.obj : map.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 932 | 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] | 933 | [.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] | 934 | 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] | 935 | 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] | 936 | [.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] | 937 | match.obj : match.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 938 | 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] | 939 | [.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] | 940 | memfile.obj : memfile.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 941 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 942 | 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] | 943 | errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 944 | memline.obj : memline.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 945 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 946 | 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] | 947 | errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 948 | 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] | 949 | 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] | 950 | [.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] | 951 | message.obj : message.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 952 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 953 | 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] | 954 | errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 955 | 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] | 956 | 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] | 957 | [.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] | 958 | version.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 959 | 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] | 960 | 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] | 961 | [.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] | 962 | mouse.obj : mouse.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 963 | 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] | 964 | [.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] | 965 | 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] | 966 | 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] | 967 | [.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] | 968 | 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] | 969 | 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] | 970 | [.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] | 971 | normal.obj : normal.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 972 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 973 | 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] | 974 | errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 975 | 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] | 976 | 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] | 977 | [.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] | 978 | option.obj : option.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 optiondefs.h |
Bram Moolenaar | dac1347 | 2019-09-16 21:06:21 +0200 | [diff] [blame] | 982 | optionstr.obj : optionstr.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 983 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 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 | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 986 | os_unix.obj : os_unix.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 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 os_unixx.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 990 | os_vms.obj : os_vms.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 991 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 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 os_unixx.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 994 | pathdef.obj : pathdef.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 995 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 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 | 30e8e73 | 2019-09-27 13:08:36 +0200 | [diff] [blame] | 998 | 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] | 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 | 4d784b2 | 2019-05-25 19:51:39 +0200 | [diff] [blame] | 1002 | popupwin.obj : popupwin.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1003 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 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 | fa55cfc | 2019-07-13 22:59:32 +0200 | [diff] [blame] | 1006 | profiler.obj : profiler.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 | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1010 | quickfix.obj : quickfix.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1011 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 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 | regexp.obj : regexp.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 | 4aea03e | 2019-09-25 22:37:17 +0200 | [diff] [blame] | 1018 | register.obj : register.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1019 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 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 | 307c5a5 | 2019-08-25 15:41:00 +0200 | [diff] [blame] | 1022 | scriptfile.obj : scriptfile.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 | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1026 | screen.obj : screen.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1027 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1028 | 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] | 1029 | errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1030 | search.obj : search.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1031 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1032 | 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] | 1033 | errors.h globals.h |
Bram Moolenaar | 8453807 | 2019-07-28 14:15:42 +0200 | [diff] [blame] | 1034 | session.obj : session.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1035 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 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 | sha256.obj : sha256.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1039 | 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] | 1040 | 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] | 1041 | errors.h globals.h |
Bram Moolenaar | bbea470 | 2019-01-01 13:20:31 +0100 | [diff] [blame] | 1042 | sign.obj : sign.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1043 | ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \ |
| 1044 | 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] | 1045 | errors.h globals.h |
Bram Moolenaar | 217ad92 | 2005-03-20 22:37:15 +0000 | [diff] [blame] | 1046 | spell.obj : spell.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 | de5e2c2 | 2016-11-04 20:35:31 +0100 | [diff] [blame] | 1050 | spellfile.obj : spellfile.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1051 | ascii.h keymap.h term.h macros.h option.h structs.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1052 | 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] | 1053 | proto.h errors.h globals.h |
Bram Moolenaar | 46a426c | 2019-09-27 12:41:56 +0200 | [diff] [blame] | 1054 | spellsuggest.obj : spellsuggest.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1055 | ascii.h keymap.h term.h macros.h option.h structs.h \ |
| 1056 | 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] | 1057 | proto.h errors.h globals.h |
Yegappan Lakshmanan | a243813 | 2021-07-10 21:29:18 +0200 | [diff] [blame] | 1058 | strings.obj : strings.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1059 | ascii.h keymap.h term.h macros.h option.h structs.h \ |
| 1060 | regexp.h gui.h beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h \ |
| 1061 | proto.h errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1062 | syntax.obj : syntax.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1063 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1064 | 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] | 1065 | errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1066 | 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] | 1067 | 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] | 1068 | [.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] | 1069 | 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] | 1070 | 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] | 1071 | [.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] | 1072 | 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] | 1073 | 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] | 1074 | [.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] | 1075 | testing.obj : testing.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1076 | 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] | 1077 | [.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] | 1078 | textformat.obj : textformat.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1079 | 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] | 1080 | [.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] | 1081 | textobject.obj : textobject.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1082 | 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] | 1083 | [.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] | 1084 | textprop.obj : textprop.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1085 | 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] | 1086 | [.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] | 1087 | time.obj : time.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1088 | 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] | 1089 | [.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] | 1090 | typval.obj : typval.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1091 | 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] | 1092 | [.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] | 1093 | 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] | 1094 | 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] | 1095 | [.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] | 1096 | 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] | 1097 | 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] | 1098 | [.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] | 1099 | usercmd.obj : usercmd.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1100 | ascii.h keymap.h term.h macros.h option.h structs.h \ |
| 1101 | 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] | 1102 | proto.h errors.h globals.h |
Bram Moolenaar | de5e2c2 | 2016-11-04 20:35:31 +0100 | [diff] [blame] | 1103 | userfunc.obj : userfunc.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1104 | ascii.h keymap.h term.h macros.h option.h structs.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1105 | 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] | 1106 | proto.h errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1107 | version.obj : version.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1108 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 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 |
Bram Moolenaar | defa067 | 2019-07-21 19:25:37 +0200 | [diff] [blame] | 1111 | viminfo.obj : viminfo.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 \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1114 | errors.h globals.h version.h |
Bram Moolenaar | f2cecb6 | 2020-02-13 21:59:25 +0100 | [diff] [blame] | 1115 | vim9compile.obj : vim9compile.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1116 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 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 version.h |
Bram Moolenaar | f2cecb6 | 2020-02-13 21:59:25 +0100 | [diff] [blame] | 1119 | vim9execute.obj : vim9execute.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1120 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 1121 | 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] | 1122 | errors.h globals.h version.h |
Bram Moolenaar | f2cecb6 | 2020-02-13 21:59:25 +0100 | [diff] [blame] | 1123 | vim9script.obj : vim9script.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1124 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 1125 | 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] | 1126 | errors.h globals.h version.h |
| 1127 | vim9type.obj : vim9type.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1128 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 1129 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
| 1130 | errors.h globals.h version.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1131 | window.obj : window.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1132 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1133 | 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] | 1134 | errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1135 | 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] | 1136 | 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] | 1137 | [.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] | 1138 | gui_gtk.obj : gui_gtk.c gui_gtk_f.h vim.h [.auto]config.h feature.h \ |
| 1139 | 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] | 1140 | 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] | 1141 | proto.h errors.h globals.h [-.pixmaps]stock_icons.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1142 | gui_gtk_f.obj : gui_gtk_f.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1143 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1144 | 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] | 1145 | errors.h globals.h gui_gtk_f.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1146 | gui_motif.obj : gui_motif.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1147 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1148 | 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] | 1149 | errors.h globals.h [-.pixmaps]alert.xpm [-.pixmaps]error.xpm \ |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1150 | [-.pixmaps]generic.xpm [-.pixmaps]info.xpm [-.pixmaps]quest.xpm |
| 1151 | gui_athena.obj : gui_athena.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1152 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1153 | 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] | 1154 | errors.h globals.h gui_at_sb.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1155 | gui_gtk_x11.obj : gui_gtk_x11.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1156 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1157 | 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] | 1158 | errors.h globals.h gui_gtk_f.h [-.runtime]vim32x32.xpm \ |
Bram Moolenaar | f5f4b6c | 2019-12-14 13:17:11 +0100 | [diff] [blame] | 1159 | [-.runtime]vim16x16.xpm [-.runtime]vim48x48.xpm version.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1160 | gui_x11.obj : gui_x11.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1161 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1162 | 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] | 1163 | errors.h globals.h [-.runtime]vim32x32.xpm \ |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1164 | [-.runtime]vim16x16.xpm [-.runtime]vim48x48.xpm [-.pixmaps]tb_new.xpm \ |
| 1165 | [-.pixmaps]tb_open.xpm [-.pixmaps]tb_close.xpm [-.pixmaps]tb_save.xpm \ |
| 1166 | [-.pixmaps]tb_print.xpm [-.pixmaps]tb_cut.xpm [-.pixmaps]tb_copy.xpm \ |
| 1167 | [-.pixmaps]tb_paste.xpm [-.pixmaps]tb_find.xpm \ |
| 1168 | [-.pixmaps]tb_find_next.xpm [-.pixmaps]tb_find_prev.xpm \ |
| 1169 | [-.pixmaps]tb_find_help.xpm [-.pixmaps]tb_exit.xpm \ |
| 1170 | [-.pixmaps]tb_undo.xpm [-.pixmaps]tb_redo.xpm [-.pixmaps]tb_help.xpm \ |
| 1171 | [-.pixmaps]tb_macro.xpm [-.pixmaps]tb_make.xpm \ |
| 1172 | [-.pixmaps]tb_save_all.xpm [-.pixmaps]tb_jump.xpm \ |
| 1173 | [-.pixmaps]tb_ctags.xpm [-.pixmaps]tb_load_session.xpm \ |
| 1174 | [-.pixmaps]tb_save_session.xpm [-.pixmaps]tb_new_session.xpm \ |
| 1175 | [-.pixmaps]tb_blank.xpm [-.pixmaps]tb_maximize.xpm \ |
| 1176 | [-.pixmaps]tb_split.xpm [-.pixmaps]tb_minimize.xpm \ |
| 1177 | [-.pixmaps]tb_shell.xpm [-.pixmaps]tb_replace.xpm \ |
| 1178 | [-.pixmaps]tb_vsplit.xpm [-.pixmaps]tb_maxwidth.xpm \ |
| 1179 | [-.pixmaps]tb_minwidth.xpm |
| 1180 | gui_at_sb.obj : gui_at_sb.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1181 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1182 | 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] | 1183 | errors.h globals.h gui_at_sb.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1184 | gui_at_fs.obj : gui_at_fs.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1185 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1186 | 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] | 1187 | errors.h globals.h gui_at_sb.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1188 | 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] | 1189 | 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] | 1190 | [.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] | 1191 | if_perl.obj : [.auto]if_perl.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 |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1195 | if_perlsfio.obj : if_perlsfio.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1196 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1197 | 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] | 1198 | errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1199 | if_python.obj : if_python.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1200 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1201 | 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] | 1202 | errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1203 | if_tcl.obj : if_tcl.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1204 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1205 | 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] | 1206 | errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1207 | if_ruby.obj : if_ruby.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1208 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1209 | 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] | 1210 | errors.h globals.h version.h |
Bram Moolenaar | 82c38fe | 2021-01-04 10:47:26 +0100 | [diff] [blame] | 1211 | if_lua.obj : if_lua.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1212 | errors.h globals.h version.h |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1213 | beval.obj : beval.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1214 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 1215 | gui.h beval.h option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1216 | errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1217 | gui_beval.obj : gui_beval.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1218 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1219 | 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] | 1220 | errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1221 | netbeans.obj : netbeans.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1222 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1223 | 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] | 1224 | errors.h globals.h version.h |
Bram Moolenaar | 88c86eb | 2019-01-17 17:13:30 +0100 | [diff] [blame] | 1225 | gui_xmdlg.obj : gui_xmdlg.c [.auto]config.h vim.h feature.h os_unix.h |
| 1226 | gui_xmebw.obj : gui_xmebw.c [.auto]config.h vim.h feature.h os_unix.h |
| 1227 | xdiffi.obj : [.xdiff]xdiffi.c [.xdiff]xinclude.h [.auto]config.h vim.h feature.h os_unix.h |
| 1228 | xemit.obj : [.xdiff]xemit.c [.xdiff]xinclude.h [.auto]config.h vim.h feature.h os_unix.h |
| 1229 | xprepare.obj : [.xdiff]xprepare.c [.xdiff]xinclude.h [.auto]config.h vim.h feature.h os_unix.h |
| 1230 | xutils.obj : [.xdiff]xutils.c [.xdiff]xinclude.h [.auto]config.h vim.h feature.h os_unix.h |
| 1231 | 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] | 1232 | xpatience.obj : [.xdiff]xpatience.c [.xdiff]xinclude.h [.auto]config.h vim.h feature.h os_unix.h |