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