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 | b005cd8 | 2019-09-04 15:54:55 +0200 | [diff] [blame] | 5 | # Last change: 2019 Sep 04 |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6 | # |
Bram Moolenaar | 8d34330 | 2005-07-12 22:46:17 +0000 | [diff] [blame] | 7 | # This has script been tested on VMS 6.2 to 8.2 on DEC Alpha, VAX and IA64 |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 8 | # with MMS and MMK |
| 9 | # |
| 10 | # The following could be built: |
| 11 | # vim.exe: standard (terminal, GUI/Motif, GUI/GTK) |
| 12 | # dvim.exe: debug |
| 13 | # |
| 14 | # Edit the lines in the Configuration section below for fine tuning. |
| 15 | # |
Bram Moolenaar | 3d20ca1 | 2006-11-28 16:43:58 +0000 | [diff] [blame] | 16 | # To build: mms/descrip=Make_vms.mms /ignore=warning |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 17 | # To clean up: mms/descrip=Make_vms.mms clean |
| 18 | # |
| 19 | # Hints and detailed description could be found in INSTALLVMS.TXT file. |
| 20 | # |
| 21 | ###################################################################### |
| 22 | # Configuration section. |
| 23 | ###################################################################### |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 24 | |
| 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 | 4ad6215 | 2019-08-17 14:38:55 +0200 | [diff] [blame] | 310 | SRC = arabic.c arglist.c autocmd.c beval.c blob.c blowfish.c buffer.c \ |
Bram Moolenaar | 66b5142 | 2019-08-18 21:44:12 +0200 | [diff] [blame] | 311 | change.c charset.c cmdexpand.c cmdhist.c crypt.c crypt_zip.c \ |
Bram Moolenaar | 0522ba0 | 2019-08-27 22:48:30 +0200 | [diff] [blame] | 312 | debugger.c dict.c diff.c digraph.c edit.c eval.c evalfunc.c \ |
Bram Moolenaar | b005cd8 | 2019-09-04 15:54:55 +0200 | [diff] [blame] | 313 | evalvars.c ex_cmds.c ex_cmds2.c ex_docmd.c ex_eval.c ex_getln.c \ |
| 314 | if_cscope.c if_xcmdsrv.c fileio.c filepath.c, findfile.c fold.c \ |
| 315 | getchar.c hardcopy.c hashtab.c highlight.c \ |
Bram Moolenaar | 66b5142 | 2019-08-18 21:44:12 +0200 | [diff] [blame] | 316 | indent.c insexpand.c json.c list.c main.c map.c mark.c menu.c mbyte.c \ |
Bram Moolenaar | 4ad6215 | 2019-08-17 14:38:55 +0200 | [diff] [blame] | 317 | memfile.c memline.c message.c misc1.c misc2.c move.c normal.c ops.c \ |
| 318 | option.c popupmnu.c popupwin.c profiler.c quickfix.c regexp.c \ |
Bram Moolenaar | 307c5a5 | 2019-08-25 15:41:00 +0200 | [diff] [blame] | 319 | scriptfile.c \ |
Bram Moolenaar | 4ad6215 | 2019-08-17 14:38:55 +0200 | [diff] [blame] | 320 | search.c session.c sha256.c sign.c spell.c spellfile.c syntax.c tag.c \ |
| 321 | term.c termlib.c testing.c textprop.c ui.c undo.c usercmd.c \ |
| 322 | userfunc.c version.c viminfo.c screen.c window.c os_unix.c os_vms.c \ |
| 323 | pathdef.c \ |
Bram Moolenaar | 85b1176 | 2016-02-27 18:13:23 +0100 | [diff] [blame] | 324 | $(GUI_SRC) $(PERL_SRC) $(PYTHON_SRC) $(TCL_SRC) \ |
Bram Moolenaar | 88c86eb | 2019-01-17 17:13:30 +0100 | [diff] [blame] | 325 | $(RUBY_SRC) $(HANGULIN_SRC) $(MZSCH_SRC) $(XDIFF_SRC) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 326 | |
Bram Moolenaar | 4ad6215 | 2019-08-17 14:38:55 +0200 | [diff] [blame] | 327 | OBJ = arabic.obj arglist.obj autocmd.obj beval.obj blob.obj blowfish.obj \ |
Bram Moolenaar | 66b5142 | 2019-08-18 21:44:12 +0200 | [diff] [blame] | 328 | buffer.obj change.obj charset.obj cmdexpand.obj cmdhist.obj \ |
| 329 | crypt.obj crypt_zip.obj debugger.obj dict.obj diff.obj digraph.obj \ |
Bram Moolenaar | 0522ba0 | 2019-08-27 22:48:30 +0200 | [diff] [blame] | 330 | edit.obj eval.obj evalfunc.obj evalvars.obj ex_cmds.obj ex_cmds2.obj \ |
Bram Moolenaar | b005cd8 | 2019-09-04 15:54:55 +0200 | [diff] [blame] | 331 | ex_docmd.obj ex_eval.obj ex_getln.obj if_cscope.obj if_xcmdsrv.obj \ |
| 332 | fileio.obj filepath.obj \ |
Bram Moolenaar | 66b5142 | 2019-08-18 21:44:12 +0200 | [diff] [blame] | 333 | findfile.obj fold.obj getchar.obj hardcopy.obj hashtab.obj \ |
| 334 | highlight.obj indent.obj insexpand.obj json.obj list.obj main.obj \ |
| 335 | map.obj mark.obj menu.obj memfile.obj memline.obj message.obj \ |
| 336 | misc1.obj misc2.obj move.obj mbyte.obj normal.obj ops.obj option.obj \ |
| 337 | popupmnu.obj popupwin.obj profiler.obj quickfix.obj regexp.obj \ |
Bram Moolenaar | 307c5a5 | 2019-08-25 15:41:00 +0200 | [diff] [blame] | 338 | scriptfile.obj \ |
Bram Moolenaar | 66b5142 | 2019-08-18 21:44:12 +0200 | [diff] [blame] | 339 | search.obj session.obj sha256.obj sign.obj spell.obj spellfile.obj \ |
| 340 | syntax.obj tag.obj term.obj termlib.obj testing.obj textprop.obj \ |
| 341 | ui.obj undo.obj usercmd.obj userfunc.obj screen.obj version.obj \ |
Bram Moolenaar | 8453807 | 2019-07-28 14:15:42 +0200 | [diff] [blame] | 342 | viminfo.obj window.obj os_unix.obj os_vms.obj pathdef.obj if_mzsch.obj \ |
Bram Moolenaar | 85b1176 | 2016-02-27 18:13:23 +0100 | [diff] [blame] | 343 | $(GUI_OBJ) $(PERL_OBJ) $(PYTHON_OBJ) $(TCL_OBJ) \ |
Bram Moolenaar | 88c86eb | 2019-01-17 17:13:30 +0100 | [diff] [blame] | 344 | $(RUBY_OBJ) $(HANGULIN_OBJ) $(MZSCH_OBJ) $(XDIFF_OBJ) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 345 | |
| 346 | # Default target is making the executable |
| 347 | all : [.auto]config.h mmk_compat motif_env gtk_env perl_env python_env tcl_env ruby_env $(TARGET) |
| 348 | ! $@ |
| 349 | |
| 350 | [.auto]config.h : $(CONFIG_H) |
| 351 | copy/nolog $(CONFIG_H) [.auto]config.h |
| 352 | |
| 353 | mmk_compat : |
| 354 | -@ open/write pd pathdef.c |
| 355 | -@ write pd "/* Empty file to satisfy MMK depend. */" |
Bram Moolenaar | cf0dfa2 | 2007-05-10 18:52:16 +0000 | [diff] [blame] | 356 | -@ write pd "/* It will be overwritten later on... */" |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 357 | -@ close pd |
| 358 | clean : |
| 359 | -@ if "''F$SEARCH("*.exe")'" .NES. "" then delete/noconfirm/nolog *.exe;* |
| 360 | -@ if "''F$SEARCH("*.obj")'" .NES. "" then delete/noconfirm/nolog *.obj;* |
| 361 | -@ if "''F$SEARCH("[.auto]config.h")'" .NES. "" then delete/noconfirm/nolog [.auto]config.h;* |
| 362 | -@ if "''F$SEARCH("pathdef.c")'" .NES. "" then delete/noconfirm/nolog pathdef.c;* |
| 363 | -@ if "''F$SEARCH("if_perl.c")'" .NES. "" then delete/noconfirm/nolog if_perl.c;* |
| 364 | -@ if "''F$SEARCH("*.opt")'" .NES. "" then delete/noconfirm/nolog *.opt;* |
| 365 | |
| 366 | # Link the target |
| 367 | $(TARGET) : $(OBJ) |
| 368 | $(LD_DEF) $(LDFLAGS) /exe=$(TARGET) $+ $(ALL_LIBS) |
| 369 | |
| 370 | .c.obj : |
| 371 | $(CC_DEF) $(ALL_CFLAGS) $< |
| 372 | |
| 373 | pathdef.c : check_ccver $(CONFIG_H) |
| 374 | -@ write sys$output "creating PATHDEF.C file." |
| 375 | -@ open/write pd pathdef.c |
| 376 | -@ write pd "/* pathdef.c -- DO NOT EDIT! */" |
| 377 | -@ write pd "/* This file is automatically created by MAKE_VMS.MMS" |
| 378 | -@ write pd " * Change the file MAKE_VMS.MMS Only. */" |
| 379 | -@ write pd "typedef unsigned char char_u;" |
| 380 | -@ write pd "char_u *default_vim_dir = (char_u *)"$(VIMLOC)";" |
| 381 | -@ write pd "char_u *default_vimruntime_dir = (char_u *)"$(VIMRUN)";" |
| 382 | -@ write pd "char_u *all_cflags = (char_u *)""$(CC_DEF)$(ALL_CFLAGS_VER)"";" |
| 383 | -@ write pd "char_u *all_lflags = (char_u *)""$(LD_DEF)$(LDFLAGS) /exe=$(TARGET) *.OBJ $(ALL_LIBS)"";" |
| 384 | -@ write pd "char_u *compiler_version = (char_u *) ""''CC_VER'"";" |
| 385 | -@ write pd "char_u *compiled_user = (char_u *) "$(VIMUSER)";" |
Bram Moolenaar | 3d20ca1 | 2006-11-28 16:43:58 +0000 | [diff] [blame] | 386 | -@ write pd "char_u *compiled_sys = (char_u *) "$(VIMHOST)";" |
| 387 | -@ write pd "char_u *compiled_arch = (char_u *) ""$(MMSARCH_NAME)"";" |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 388 | -@ close pd |
| 389 | |
| 390 | if_perl.c : if_perl.xs |
| 391 | -@ $(PERL) PERL_ROOT:[LIB.ExtUtils]xsubpp -prototypes -typemap - |
| 392 | PERL_ROOT:[LIB.ExtUtils]typemap if_perl.xs >> $@ |
| 393 | |
| 394 | make_vms.mms : |
| 395 | -@ write sys$output "The name of the makefile MUST be <MAKE_VMS.MMS> !!!" |
| 396 | |
| 397 | .IFDEF CCVER |
| 398 | # This part can make some complications if you're using some predefined |
| 399 | # symbols/flags for your compiler. If does, just comment out CCVER variable |
| 400 | check_ccver : |
| 401 | -@ define sys$output cc_ver.tmp |
| 402 | -@ $(CC_DEF)/version |
| 403 | -@ deassign sys$output |
| 404 | -@ open/read file cc_ver.tmp |
| 405 | -@ read file CC_VER |
| 406 | -@ close file |
| 407 | -@ delete/noconfirm/nolog cc_ver.tmp.* |
| 408 | .ELSE |
| 409 | check_ccver : |
| 410 | -@ ! |
| 411 | .ENDIF |
| 412 | |
| 413 | .IFDEF MOTIF |
| 414 | motif_env : |
Bram Moolenaar | 8d34330 | 2005-07-12 22:46:17 +0000 | [diff] [blame] | 415 | .IFDEF XPM |
| 416 | -@ write sys$output "using DECW/Motif/XPM environment." |
| 417 | .ELSE |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 418 | -@ write sys$output "using DECW/Motif environment." |
Bram Moolenaar | 8d34330 | 2005-07-12 22:46:17 +0000 | [diff] [blame] | 419 | .ENDIF |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 420 | -@ write sys$output "creating OS_VMS_MOTIF.OPT file." |
| 421 | -@ open/write opt_file OS_VMS_MOTIF.OPT |
| 422 | -@ write opt_file "sys$share:decw$xmlibshr12.exe/share,-" |
| 423 | -@ write opt_file "sys$share:decw$xtlibshrr5.exe/share,-" |
| 424 | -@ write opt_file "sys$share:decw$xlibshr.exe/share" |
| 425 | -@ close opt_file |
| 426 | .ELSE |
| 427 | motif_env : |
| 428 | -@ ! |
| 429 | .ENDIF |
| 430 | |
| 431 | |
| 432 | .IFDEF GTK |
| 433 | gtk_env : |
| 434 | -@ write sys$output "using GTK environment:" |
| 435 | -@ define/nolog gtk_root /trans=conc $(GTK_DIR) |
| 436 | -@ show logical gtk_root |
| 437 | -@ write sys$output " include path: "$(GUI_INC)"" |
| 438 | -@ write sys$output "creating OS_VMS_GTK.OPT file." |
| 439 | -@ open/write opt_file OS_VMS_GTK.OPT |
| 440 | -@ write opt_file "gtk_root:[glib]libglib.exe /share,-" |
| 441 | -@ write opt_file "gtk_root:[glib.gmodule]libgmodule.exe /share,-" |
| 442 | -@ write opt_file "gtk_root:[gtk.gdk]libgdk.exe /share,-" |
| 443 | -@ write opt_file "gtk_root:[gtk.gtk]libgtk.exe /share,-" |
| 444 | -@ write opt_file "sys$share:decw$xmlibshr12.exe/share,-" |
| 445 | -@ write opt_file "sys$share:decw$xtlibshrr5.exe/share,-" |
| 446 | -@ write opt_file "sys$share:decw$xlibshr.exe/share" |
| 447 | -@ close opt_file |
| 448 | .ELSE |
| 449 | gtk_env : |
| 450 | -@ ! |
| 451 | .ENDIF |
| 452 | |
| 453 | .IFDEF VIM_PERL |
| 454 | perl_env : |
| 455 | -@ write sys$output "using PERL environment:" |
| 456 | -@ show logical PERLSHR |
| 457 | -@ write sys$output " include path: ""$(PERL_INC)""" |
| 458 | -@ show symbol perl |
| 459 | -@ open/write pd if_perl.c |
| 460 | -@ write pd "/* Empty file to satisfy MMK depend. */" |
Bram Moolenaar | cf0dfa2 | 2007-05-10 18:52:16 +0000 | [diff] [blame] | 461 | -@ write pd "/* It will be overwritten later on... */" |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 462 | -@ close pd |
| 463 | -@ write sys$output "creating OS_VMS_PERL.OPT file." |
| 464 | -@ open/write opt_file OS_VMS_PERL.OPT |
| 465 | -@ write opt_file "PERLSHR /share" |
| 466 | -@ close opt_file |
| 467 | .ELSE |
| 468 | perl_env : |
| 469 | -@ ! |
| 470 | .ENDIF |
| 471 | |
| 472 | .IFDEF VIM_PYTHON |
| 473 | python_env : |
| 474 | -@ write sys$output "using PYTHON environment:" |
| 475 | -@ show logical PYTHON_INCLUDE |
| 476 | -@ show logical PYTHON_OLB |
| 477 | -@ write sys$output "creating OS_VMS_PYTHON.OPT file." |
| 478 | -@ open/write opt_file OS_VMS_PYTHON.OPT |
| 479 | -@ write opt_file "PYTHON_OLB:PYTHON.OLB /share" |
| 480 | -@ close opt_file |
| 481 | .ELSE |
| 482 | python_env : |
| 483 | -@ ! |
| 484 | .ENDIF |
| 485 | |
| 486 | .IFDEF VIM_TCL |
| 487 | tcl_env : |
| 488 | -@ write sys$output "using TCL environment:" |
| 489 | -@ show logical TCLSHR |
| 490 | -@ write sys$output " include path: ""$(TCL_INC)""" |
| 491 | -@ write sys$output "creating OS_VMS_TCL.OPT file." |
| 492 | -@ open/write opt_file OS_VMS_TCL.OPT |
| 493 | -@ write opt_file "TCLSHR /share" |
| 494 | -@ close opt_file |
| 495 | .ELSE |
| 496 | tcl_env : |
| 497 | -@ ! |
| 498 | .ENDIF |
| 499 | |
| 500 | .IFDEF VIM_RUBY |
| 501 | ruby_env : |
| 502 | -@ write sys$output "using RUBY environment:" |
| 503 | -@ write sys$output " include path: ""$(RUBY_INC)""" |
| 504 | -@ write sys$output "creating OS_VMS_RUBY.OPT file." |
| 505 | -@ open/write opt_file OS_VMS_RUBY.OPT |
| 506 | -@ write opt_file "RUBYSHR /share" |
| 507 | -@ close opt_file |
| 508 | .ELSE |
| 509 | ruby_env : |
| 510 | -@ ! |
| 511 | .ENDIF |
| 512 | |
Bram Moolenaar | 3b98b83 | 2016-07-02 21:45:17 +0200 | [diff] [blame] | 513 | arabic.obj : arabic.c vim.h |
Bram Moolenaar | 4ad6215 | 2019-08-17 14:38:55 +0200 | [diff] [blame] | 514 | 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] | 515 | 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] | 516 | blowfish.obj : blowfish.c vim.h [.auto]config.h feature.h os_unix.h |
| 517 | 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] | 518 | buffer.obj : buffer.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 519 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 520 | 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] | 521 | globals.h version.h |
Bram Moolenaar | ec28d15 | 2019-05-11 18:36:34 +0200 | [diff] [blame] | 522 | change.obj : change.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 523 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 524 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
| 525 | globals.h version.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 526 | charset.obj : charset.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 527 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 528 | 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] | 529 | globals.h |
Bram Moolenaar | 66b5142 | 2019-08-18 21:44:12 +0200 | [diff] [blame] | 530 | cmdexpand.obj : cmdexpand.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 531 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 532 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
| 533 | globals.h |
Bram Moolenaar | d7663c2 | 2019-08-06 21:59:57 +0200 | [diff] [blame] | 534 | cmdhist.obj : cmdhist.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 535 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 536 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
| 537 | globals.h |
Bram Moolenaar | de5e2c2 | 2016-11-04 20:35:31 +0100 | [diff] [blame] | 538 | crypt.obj : crypt.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 539 | 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] | 540 | 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] | 541 | globals.h |
Bram Moolenaar | de5e2c2 | 2016-11-04 20:35:31 +0100 | [diff] [blame] | 542 | crypt_zip.obj : crypt_zip.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 543 | ascii.h keymap.h term.h macros.h option.h structs.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 544 | 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] | 545 | proto.h globals.h |
Bram Moolenaar | eead75c | 2019-04-21 11:35:00 +0200 | [diff] [blame] | 546 | debugger.obj : debugger.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 547 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 548 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
| 549 | globals.h |
Bram Moolenaar | de5e2c2 | 2016-11-04 20:35:31 +0100 | [diff] [blame] | 550 | dict.obj : dict.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 551 | 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] | 552 | 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] | 553 | globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 554 | 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] | 555 | 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] | 556 | [.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] | 557 | |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 558 | digraph.obj : digraph.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 559 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 560 | 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] | 561 | globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 562 | 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] | 563 | 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] | 564 | [.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] | 565 | |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 566 | 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] | 567 | 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] | 568 | [.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] | 569 | version.h |
Bram Moolenaar | de5e2c2 | 2016-11-04 20:35:31 +0100 | [diff] [blame] | 570 | evalfunc.obj : evalfunc.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 571 | ascii.h keymap.h term.h macros.h option.h structs.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 572 | 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] | 573 | proto.h globals.h version.h |
Bram Moolenaar | 0522ba0 | 2019-08-27 22:48:30 +0200 | [diff] [blame] | 574 | evalvars.obj : evalvars.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 575 | ascii.h keymap.h term.h macros.h option.h structs.h \ |
| 576 | regexp.h gui.h beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h \ |
| 577 | proto.h globals.h version.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 578 | ex_cmds.obj : ex_cmds.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 579 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 580 | 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] | 581 | globals.h version.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 582 | ex_cmds2.obj : ex_cmds2.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 583 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 584 | 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] | 585 | globals.h version.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 586 | ex_docmd.obj : ex_docmd.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 587 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 588 | 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] | 589 | globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 590 | ex_eval.obj : ex_eval.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 591 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 592 | 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] | 593 | globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 594 | ex_getln.obj : ex_getln.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 595 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 596 | 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] | 597 | globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 598 | fileio.obj : fileio.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 599 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 600 | 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] | 601 | globals.h |
Bram Moolenaar | b005cd8 | 2019-09-04 15:54:55 +0200 | [diff] [blame] | 602 | filepath.obj : filepath.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 603 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 604 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
| 605 | globals.h |
Bram Moolenaar | 5fd0f50 | 2019-02-13 23:13:28 +0100 | [diff] [blame] | 606 | findfile.obj : findfile.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 607 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 608 | gui.h 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] | 609 | globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 610 | 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] | 611 | 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] | 612 | [.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] | 613 | |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 614 | getchar.obj : getchar.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 615 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 616 | 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] | 617 | globals.h |
Bram Moolenaar | 58d9823 | 2005-07-23 22:25:46 +0000 | [diff] [blame] | 618 | hardcopy.obj : hardcopy.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 619 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 620 | 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] | 621 | globals.h |
Bram Moolenaar | 76b92b2 | 2006-03-24 22:46:53 +0000 | [diff] [blame] | 622 | 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] | 623 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 624 | 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] | 625 | globals.h |
Bram Moolenaar | f9cc9f2 | 2019-07-14 21:29:22 +0200 | [diff] [blame] | 626 | highlight.obj : highlight.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 627 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 628 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
| 629 | globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 630 | if_cscope.obj : if_cscope.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 631 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 632 | 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] | 633 | globals.h if_cscope.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 634 | if_xcmdsrv.obj : if_xcmdsrv.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 635 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 636 | 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] | 637 | globals.h version.h |
Bram Moolenaar | f878bcf | 2010-07-30 22:29:41 +0200 | [diff] [blame] | 638 | if_mzsch.obj : if_mzsch.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 639 | ascii.h keymap.h term.h macros.h option.h structs.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 640 | 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] | 641 | globals.h if_mzsch.h |
Bram Moolenaar | 4b47162 | 2019-01-31 13:48:09 +0100 | [diff] [blame] | 642 | 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] | 643 | 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] | 644 | 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] | 645 | 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] | 646 | [.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] | 647 | version.h |
Bram Moolenaar | de5e2c2 | 2016-11-04 20:35:31 +0100 | [diff] [blame] | 648 | list.obj : list.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 649 | 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] | 650 | 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] | 651 | globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 652 | 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] | 653 | 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] | 654 | [.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] | 655 | arabic.c |
Bram Moolenaar | b66bab3 | 2019-08-01 14:28:24 +0200 | [diff] [blame] | 656 | map.obj : map.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 657 | ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \ |
| 658 | [.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] | 659 | 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] | 660 | 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] | 661 | [.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] | 662 | |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 663 | memfile.obj : memfile.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 664 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 665 | 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] | 666 | globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 667 | memline.obj : memline.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 668 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 669 | 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] | 670 | globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 671 | 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] | 672 | 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] | 673 | [.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] | 674 | |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 675 | message.obj : message.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 676 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 677 | 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] | 678 | globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 679 | 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] | 680 | 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] | 681 | [.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] | 682 | version.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 683 | 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] | 684 | 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] | 685 | [.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] | 686 | |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 687 | 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] | 688 | 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] | 689 | [.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] | 690 | |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 691 | 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] | 692 | 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] | 693 | [.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] | 694 | |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 695 | normal.obj : normal.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 696 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 697 | 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] | 698 | globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 699 | 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] | 700 | 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] | 701 | [.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] | 702 | |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 703 | option.obj : option.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 704 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 705 | 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] | 706 | globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 707 | os_unix.obj : os_unix.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 708 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 709 | 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] | 710 | globals.h os_unixx.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 711 | os_vms.obj : os_vms.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 712 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 713 | 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] | 714 | globals.h os_unixx.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 715 | pathdef.obj : pathdef.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 716 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 717 | 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] | 718 | globals.h |
Bram Moolenaar | 76b92b2 | 2006-03-24 22:46:53 +0000 | [diff] [blame] | 719 | popupmnu.obj : popupmnu.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | df1bdc9 | 2006-02-23 21:32:16 +0000 | [diff] [blame] | 720 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 721 | 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] | 722 | globals.h |
Bram Moolenaar | 4d784b2 | 2019-05-25 19:51:39 +0200 | [diff] [blame] | 723 | popupwin.obj : popupwin.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 724 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 725 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
| 726 | globals.h |
Bram Moolenaar | fa55cfc | 2019-07-13 22:59:32 +0200 | [diff] [blame] | 727 | profiler.obj : profiler.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 728 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 729 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
| 730 | globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 731 | quickfix.obj : quickfix.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 732 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 733 | 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] | 734 | globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 735 | regexp.obj : regexp.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 736 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 737 | 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] | 738 | globals.h |
Bram Moolenaar | 307c5a5 | 2019-08-25 15:41:00 +0200 | [diff] [blame] | 739 | scriptfile.obj : scriptfile.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 740 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 741 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
| 742 | globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 743 | screen.obj : screen.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 744 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 745 | 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] | 746 | globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 747 | search.obj : search.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 748 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 749 | 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] | 750 | globals.h |
Bram Moolenaar | 8453807 | 2019-07-28 14:15:42 +0200 | [diff] [blame] | 751 | session.obj : session.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 752 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 753 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
| 754 | globals.h |
Bram Moolenaar | de5e2c2 | 2016-11-04 20:35:31 +0100 | [diff] [blame] | 755 | sha256.obj : sha256.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 756 | 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] | 757 | 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] | 758 | globals.h |
Bram Moolenaar | bbea470 | 2019-01-01 13:20:31 +0100 | [diff] [blame] | 759 | sign.obj : sign.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 760 | ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \ |
| 761 | 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] | 762 | globals.h |
Bram Moolenaar | 217ad92 | 2005-03-20 22:37:15 +0000 | [diff] [blame] | 763 | spell.obj : spell.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 | e37368c | 2019-03-22 16:57:45 +0100 | [diff] [blame] | 766 | globals.h |
Bram Moolenaar | de5e2c2 | 2016-11-04 20:35:31 +0100 | [diff] [blame] | 767 | spellfile.obj : spellfile.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 768 | ascii.h keymap.h term.h macros.h option.h structs.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 769 | 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] | 770 | proto.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 771 | syntax.obj : syntax.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 772 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 773 | 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] | 774 | globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 775 | 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] | 776 | 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] | 777 | [.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] | 778 | |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 779 | 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] | 780 | 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] | 781 | [.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] | 782 | |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 783 | 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] | 784 | 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] | 785 | [.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] | 786 | |
Bram Moolenaar | ecaa70e | 2019-07-14 14:55:39 +0200 | [diff] [blame] | 787 | testing.obj : testing.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 788 | ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \ |
| 789 | [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h \ |
| 790 | |
Bram Moolenaar | 88c86eb | 2019-01-17 17:13:30 +0100 | [diff] [blame] | 791 | textprop.obj : textprop.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 792 | 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] | 793 | [.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] | 794 | |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 795 | 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] | 796 | 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] | 797 | [.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] | 798 | |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 799 | 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] | 800 | 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] | 801 | [.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] | 802 | |
Bram Moolenaar | ac9fb18 | 2019-04-27 13:04:13 +0200 | [diff] [blame] | 803 | usercmd.obj : usercmd.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 804 | ascii.h keymap.h term.h macros.h option.h structs.h \ |
| 805 | regexp.h gui.h beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h \ |
| 806 | proto.h globals.h |
| 807 | |
Bram Moolenaar | de5e2c2 | 2016-11-04 20:35:31 +0100 | [diff] [blame] | 808 | userfunc.obj : userfunc.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 809 | ascii.h keymap.h term.h macros.h option.h structs.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 810 | 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] | 811 | proto.h globals.h |
Bram Moolenaar | ac9fb18 | 2019-04-27 13:04:13 +0200 | [diff] [blame] | 812 | |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 813 | version.obj : version.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 814 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 815 | 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] | 816 | globals.h version.h |
Bram Moolenaar | defa067 | 2019-07-21 19:25:37 +0200 | [diff] [blame] | 817 | viminfo.obj : viminfo.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 818 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 819 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
| 820 | globals.h version.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 821 | window.obj : window.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 822 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 823 | 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] | 824 | globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 825 | 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] | 826 | 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] | 827 | [.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] | 828 | |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 829 | gui_gtk.obj : gui_gtk.c gui_gtk_f.h vim.h [.auto]config.h feature.h \ |
| 830 | 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] | 831 | 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] | 832 | proto.h globals.h [-.pixmaps]stock_icons.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 833 | gui_gtk_f.obj : gui_gtk_f.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 834 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 835 | 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] | 836 | globals.h gui_gtk_f.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 837 | gui_motif.obj : gui_motif.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 838 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 839 | 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] | 840 | globals.h [-.pixmaps]alert.xpm [-.pixmaps]error.xpm \ |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 841 | [-.pixmaps]generic.xpm [-.pixmaps]info.xpm [-.pixmaps]quest.xpm |
| 842 | gui_athena.obj : gui_athena.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 843 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 844 | 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] | 845 | globals.h gui_at_sb.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 846 | gui_gtk_x11.obj : gui_gtk_x11.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 847 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 848 | 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] | 849 | globals.h gui_gtk_f.h [-.runtime]vim32x32.xpm \ |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 850 | [-.runtime]vim16x16.xpm [-.runtime]vim48x48.xpm |
| 851 | gui_x11.obj : gui_x11.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 852 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 853 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | e37368c | 2019-03-22 16:57:45 +0100 | [diff] [blame] | 854 | globals.h [-.runtime]vim32x32.xpm \ |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 855 | [-.runtime]vim16x16.xpm [-.runtime]vim48x48.xpm [-.pixmaps]tb_new.xpm \ |
| 856 | [-.pixmaps]tb_open.xpm [-.pixmaps]tb_close.xpm [-.pixmaps]tb_save.xpm \ |
| 857 | [-.pixmaps]tb_print.xpm [-.pixmaps]tb_cut.xpm [-.pixmaps]tb_copy.xpm \ |
| 858 | [-.pixmaps]tb_paste.xpm [-.pixmaps]tb_find.xpm \ |
| 859 | [-.pixmaps]tb_find_next.xpm [-.pixmaps]tb_find_prev.xpm \ |
| 860 | [-.pixmaps]tb_find_help.xpm [-.pixmaps]tb_exit.xpm \ |
| 861 | [-.pixmaps]tb_undo.xpm [-.pixmaps]tb_redo.xpm [-.pixmaps]tb_help.xpm \ |
| 862 | [-.pixmaps]tb_macro.xpm [-.pixmaps]tb_make.xpm \ |
| 863 | [-.pixmaps]tb_save_all.xpm [-.pixmaps]tb_jump.xpm \ |
| 864 | [-.pixmaps]tb_ctags.xpm [-.pixmaps]tb_load_session.xpm \ |
| 865 | [-.pixmaps]tb_save_session.xpm [-.pixmaps]tb_new_session.xpm \ |
| 866 | [-.pixmaps]tb_blank.xpm [-.pixmaps]tb_maximize.xpm \ |
| 867 | [-.pixmaps]tb_split.xpm [-.pixmaps]tb_minimize.xpm \ |
| 868 | [-.pixmaps]tb_shell.xpm [-.pixmaps]tb_replace.xpm \ |
| 869 | [-.pixmaps]tb_vsplit.xpm [-.pixmaps]tb_maxwidth.xpm \ |
| 870 | [-.pixmaps]tb_minwidth.xpm |
| 871 | gui_at_sb.obj : gui_at_sb.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 872 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 873 | 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] | 874 | globals.h gui_at_sb.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 875 | gui_at_fs.obj : gui_at_fs.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 876 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 877 | 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] | 878 | globals.h gui_at_sb.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 879 | 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] | 880 | 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] | 881 | [.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] | 882 | |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 883 | hangulin.obj : hangulin.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 884 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 885 | 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] | 886 | globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 887 | if_perl.obj : [.auto]if_perl.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 888 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 889 | 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] | 890 | globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 891 | if_perlsfio.obj : if_perlsfio.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 892 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 893 | 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] | 894 | globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 895 | if_python.obj : if_python.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 896 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 897 | 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] | 898 | globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 899 | if_tcl.obj : if_tcl.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 900 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 901 | 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] | 902 | globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 903 | if_ruby.obj : if_ruby.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 904 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 905 | 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] | 906 | globals.h version.h |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 907 | beval.obj : beval.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 908 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 909 | gui.h beval.h option.h ex_cmds.h proto.h \ |
Bram Moolenaar | e37368c | 2019-03-22 16:57:45 +0100 | [diff] [blame] | 910 | globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 911 | gui_beval.obj : gui_beval.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 912 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 913 | 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] | 914 | globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 915 | workshop.obj : workshop.c [.auto]config.h integration.h vim.h feature.h \ |
| 916 | 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] | 917 | 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] | 918 | proto.h globals.h version.h workshop.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 919 | wsdebug.obj : wsdebug.c |
| 920 | integration.obj : integration.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 921 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 922 | 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] | 923 | globals.h integration.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 924 | netbeans.obj : netbeans.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 925 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 926 | 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] | 927 | globals.h version.h |
Bram Moolenaar | 88c86eb | 2019-01-17 17:13:30 +0100 | [diff] [blame] | 928 | gui_xmdlg.obj : gui_xmdlg.c [.auto]config.h vim.h feature.h os_unix.h |
| 929 | gui_xmebw.obj : gui_xmebw.c [.auto]config.h vim.h feature.h os_unix.h |
| 930 | xdiffi.obj : [.xdiff]xdiffi.c [.xdiff]xinclude.h [.auto]config.h vim.h feature.h os_unix.h |
| 931 | xemit.obj : [.xdiff]xemit.c [.xdiff]xinclude.h [.auto]config.h vim.h feature.h os_unix.h |
| 932 | xprepare.obj : [.xdiff]xprepare.c [.xdiff]xinclude.h [.auto]config.h vim.h feature.h os_unix.h |
| 933 | xutils.obj : [.xdiff]xutils.c [.xdiff]xinclude.h [.auto]config.h vim.h feature.h os_unix.h |
| 934 | xhistogram.obj : [.xdiff]xhistogram.c [.xdiff]xinclude.h [.auto]config.h vim.h feature.h os_unix.h |
| 935 | xpatience.obj : [.xdiff]xpatience.c [.xdiff]xinclude.h [.auto]config.h vim.h feature.h os_unix.h |