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