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 | 0c5c3fa | 2019-11-30 22:38:16 +0100 | [diff] [blame] | 5 | # Last change: 2019 Nov 30 |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6 | # |
Bram Moolenaar | 0c5c3fa | 2019-11-30 22:38:16 +0100 | [diff] [blame] | 7 | # This script has been tested on VMS 6.2 to 8.4 on DEC Alpha, VAX and IA64 |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 8 | # with MMS and MMK |
| 9 | # |
| 10 | # The following could be built: |
| 11 | # vim.exe: standard (terminal, GUI/Motif, GUI/GTK) |
| 12 | # dvim.exe: debug |
| 13 | # |
| 14 | # Edit the lines in the Configuration section below for fine tuning. |
| 15 | # |
Bram Moolenaar | 3d20ca1 | 2006-11-28 16:43:58 +0000 | [diff] [blame] | 16 | # To build: mms/descrip=Make_vms.mms /ignore=warning |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 17 | # To clean up: mms/descrip=Make_vms.mms clean |
| 18 | # |
| 19 | # Hints and detailed description could be found in INSTALLVMS.TXT file. |
| 20 | # |
| 21 | ###################################################################### |
| 22 | # Configuration section. |
| 23 | ###################################################################### |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 24 | |
| 25 | # Compiler selection. |
| 26 | # Comment out if you use the VAXC compiler |
| 27 | DECC = YES |
| 28 | |
| 29 | # Build model selection |
| 30 | # TINY - Almost no features enabled, not even multiple windows |
| 31 | # SMALL - Few features enabled, as basic as possible |
| 32 | # NORMAL - A default selection of features enabled |
| 33 | # BIG - Many features enabled, as rich as possible. (default) |
Bram Moolenaar | 84a05ac | 2013-05-06 04:24:17 +0200 | [diff] [blame] | 34 | # HUGE - All possible features enabled. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 35 | # Please select one of these alternatives above. |
Bram Moolenaar | ac98e5d | 2008-09-01 14:51:37 +0000 | [diff] [blame] | 36 | MODEL = HUGE |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 37 | |
| 38 | # GUI or terminal mode executable. |
| 39 | # Comment out if you want just the character terminal mode only. |
Bram Moolenaar | 4c3f536 | 2006-04-11 21:38:50 +0000 | [diff] [blame] | 40 | # GUI with Motif |
Bram Moolenaar | 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 |
Bram Moolenaar | 4b96df5 | 2020-01-26 22:00:26 +0100 | [diff] [blame] | 284 | # It is specially formatted for correct display of unix like includes |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 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 | f87a040 | 2020-04-05 20:21:03 +0200 | [diff] [blame] | 309 | clientserver.c \ |
Bram Moolenaar | 45fffdf | 2020-03-24 21:42:01 +0100 | [diff] [blame] | 310 | clipboard.c \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 311 | cmdexpand.c \ |
| 312 | cmdhist.c \ |
| 313 | crypt.c \ |
| 314 | crypt_zip.c \ |
| 315 | debugger.c \ |
| 316 | dict.c \ |
| 317 | diff.c \ |
| 318 | digraph.c \ |
| 319 | drawline.c \ |
| 320 | drawscreen.c \ |
| 321 | edit.c \ |
| 322 | eval.c \ |
| 323 | evalbuffer.c \ |
| 324 | evalfunc.c \ |
| 325 | evalvars.c \ |
| 326 | evalwindow.c \ |
| 327 | ex_cmds.c \ |
| 328 | ex_cmds2.c \ |
| 329 | ex_docmd.c \ |
| 330 | ex_eval.c \ |
Bram Moolenaar | 261f346 | 2019-09-07 15:45:32 +0200 | [diff] [blame] | 331 | ex_getln.c \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 332 | fileio.c \ |
| 333 | filepath.c, \ |
| 334 | findfile.c \ |
| 335 | fold.c \ |
| 336 | getchar.c \ |
| 337 | hardcopy.c \ |
| 338 | hashtab.c \ |
| 339 | highlight.c \ |
| 340 | if_cscope.c \ |
| 341 | if_xcmdsrv.c \ |
| 342 | indent.c \ |
| 343 | insexpand.c \ |
| 344 | json.c \ |
| 345 | list.c \ |
| 346 | main.c \ |
| 347 | map.c \ |
| 348 | mark.c \ |
| 349 | mbyte.c \ |
| 350 | memfile.c \ |
| 351 | memline.c \ |
| 352 | menu.c \ |
| 353 | message.c \ |
| 354 | misc1.c \ |
| 355 | misc2.c \ |
| 356 | mouse.c \ |
| 357 | move.c \ |
| 358 | normal.c \ |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 359 | ops.c \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 360 | option.c \ |
| 361 | optionstr.c \ |
| 362 | os_unix.c \ |
| 363 | os_vms.c \ |
Bram Moolenaar | 4ad6215 | 2019-08-17 14:38:55 +0200 | [diff] [blame] | 364 | pathdef.c \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 365 | popupmenu.c \ |
| 366 | popupwin.c \ |
| 367 | profiler.c \ |
| 368 | quickfix.c \ |
| 369 | regexp.c \ |
| 370 | register.c \ |
| 371 | screen.c \ |
| 372 | scriptfile.c \ |
| 373 | search.c \ |
| 374 | session.c \ |
| 375 | sha256.c \ |
| 376 | sign.c \ |
| 377 | spell.c \ |
| 378 | spellfile.c \ |
| 379 | spellsuggest.c \ |
| 380 | syntax.c \ |
| 381 | tag.c \ |
| 382 | term.c \ |
| 383 | termlib.c \ |
| 384 | testing.c \ |
Bram Moolenaar | 11abd09 | 2020-05-01 14:26:37 +0200 | [diff] [blame] | 385 | textformat.c \ |
Bram Moolenaar | ed8ce05 | 2020-04-29 21:04:15 +0200 | [diff] [blame] | 386 | textobject.c \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 387 | textprop.c \ |
Bram Moolenaar | 0a8fed6 | 2020-02-14 13:22:17 +0100 | [diff] [blame] | 388 | time.c \ |
Bram Moolenaar | 367d59e | 2020-05-30 17:06:14 +0200 | [diff] [blame] | 389 | typval.c \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 390 | ui.c \ |
| 391 | undo.c \ |
| 392 | usercmd.c \ |
| 393 | userfunc.c \ |
| 394 | version.c \ |
Bram Moolenaar | f2cecb6 | 2020-02-13 21:59:25 +0100 | [diff] [blame] | 395 | vim9compile.c \ |
| 396 | vim9execute.c \ |
| 397 | vim9script.c \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 398 | viminfo.c \ |
| 399 | window.c \ |
| 400 | $(GUI_SRC) \ |
| 401 | $(PERL_SRC) \ |
| 402 | $(PYTHON_SRC) \ |
| 403 | $(TCL_SRC) \ |
| 404 | $(RUBY_SRC) \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 405 | $(MZSCH_SRC) \ |
| 406 | $(XDIFF_SRC) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 407 | |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 408 | OBJ = \ |
| 409 | arabic.obj \ |
| 410 | arglist.obj \ |
| 411 | autocmd.obj \ |
| 412 | beval.obj \ |
| 413 | blob.obj \ |
| 414 | blowfish.obj \ |
| 415 | buffer.obj \ |
| 416 | bufwrite.obj \ |
| 417 | change.obj \ |
| 418 | charset.obj \ |
Bram Moolenaar | 14c01f8 | 2019-10-09 22:53:08 +0200 | [diff] [blame] | 419 | cindent.obj \ |
Bram Moolenaar | f87a040 | 2020-04-05 20:21:03 +0200 | [diff] [blame] | 420 | clientserver.obj \ |
Bram Moolenaar | 45fffdf | 2020-03-24 21:42:01 +0100 | [diff] [blame] | 421 | clipboard.obj \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 422 | cmdexpand.obj \ |
| 423 | cmdhist.obj \ |
| 424 | crypt.obj \ |
| 425 | crypt_zip.obj \ |
| 426 | debugger.obj \ |
| 427 | dict.obj \ |
| 428 | diff.obj \ |
| 429 | digraph.obj \ |
| 430 | drawline.obj \ |
| 431 | drawscreen.obj \ |
| 432 | edit.obj \ |
| 433 | eval.obj \ |
| 434 | evalbuffer.obj \ |
| 435 | evalfunc.obj \ |
| 436 | evalvars.obj \ |
| 437 | evalwindow.obj \ |
| 438 | ex_cmds.obj \ |
| 439 | ex_cmds2.obj \ |
| 440 | ex_docmd.obj \ |
| 441 | ex_eval.obj \ |
| 442 | ex_getln.obj \ |
| 443 | fileio.obj \ |
| 444 | filepath.obj \ |
| 445 | findfile.obj \ |
| 446 | fold.obj \ |
| 447 | getchar.obj \ |
| 448 | hardcopy.obj \ |
| 449 | hashtab.obj \ |
| 450 | highlight.obj \ |
| 451 | if_cscope.obj \ |
| 452 | if_mzsch.obj \ |
| 453 | if_xcmdsrv.obj \ |
| 454 | indent.obj \ |
| 455 | insexpand.obj \ |
| 456 | json.obj \ |
| 457 | list.obj \ |
| 458 | main.obj \ |
| 459 | map.obj \ |
| 460 | mark.obj \ |
| 461 | mbyte.obj \ |
| 462 | memfile.obj \ |
| 463 | memline.obj \ |
| 464 | menu.obj \ |
| 465 | message.obj \ |
| 466 | misc1.obj \ |
| 467 | misc2.obj \ |
| 468 | mouse.obj \ |
| 469 | move.obj \ |
| 470 | normal.obj \ |
| 471 | ops.obj \ |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 472 | option.obj \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 473 | optionstr.obj \ |
| 474 | os_unix.obj \ |
| 475 | os_vms.obj \ |
| 476 | pathdef.obj \ |
| 477 | popupmenu.obj \ |
| 478 | popupwin.obj \ |
| 479 | profiler.obj \ |
| 480 | quickfix.obj \ |
| 481 | regexp.obj \ |
| 482 | register.obj \ |
| 483 | screen.obj \ |
| 484 | scriptfile.obj \ |
| 485 | search.obj \ |
| 486 | session.obj \ |
| 487 | sha256.obj \ |
| 488 | sign.obj \ |
| 489 | spell.obj \ |
| 490 | spellfile.obj \ |
| 491 | spellsuggest.obj \ |
| 492 | syntax.obj \ |
| 493 | tag.obj \ |
| 494 | term.obj \ |
| 495 | termlib.obj \ |
| 496 | testing.obj \ |
Bram Moolenaar | 11abd09 | 2020-05-01 14:26:37 +0200 | [diff] [blame] | 497 | textformat.obj \ |
Bram Moolenaar | ed8ce05 | 2020-04-29 21:04:15 +0200 | [diff] [blame] | 498 | textobject.obj \ |
Bram Moolenaar | 46a426c | 2019-09-27 12:41:56 +0200 | [diff] [blame] | 499 | textprop.obj \ |
Bram Moolenaar | 0a8fed6 | 2020-02-14 13:22:17 +0100 | [diff] [blame] | 500 | time.obj \ |
Bram Moolenaar | 367d59e | 2020-05-30 17:06:14 +0200 | [diff] [blame] | 501 | typval.obj \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 502 | ui.obj \ |
| 503 | undo.obj \ |
| 504 | usercmd.obj \ |
| 505 | userfunc.obj \ |
| 506 | version.obj \ |
Bram Moolenaar | f2cecb6 | 2020-02-13 21:59:25 +0100 | [diff] [blame] | 507 | vim9compile.obj \ |
| 508 | vim9execute.obj \ |
| 509 | vim9script.obj \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 510 | viminfo.obj \ |
| 511 | window.obj \ |
| 512 | $(GUI_OBJ) \ |
| 513 | $(PERL_OBJ) \ |
| 514 | $(PYTHON_OBJ) \ |
| 515 | $(TCL_OBJ) \ |
| 516 | $(RUBY_OBJ) \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 517 | $(MZSCH_OBJ) \ |
| 518 | $(XDIFF_OBJ) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 519 | |
| 520 | # Default target is making the executable |
| 521 | all : [.auto]config.h mmk_compat motif_env gtk_env perl_env python_env tcl_env ruby_env $(TARGET) |
| 522 | ! $@ |
| 523 | |
| 524 | [.auto]config.h : $(CONFIG_H) |
| 525 | copy/nolog $(CONFIG_H) [.auto]config.h |
| 526 | |
| 527 | mmk_compat : |
| 528 | -@ open/write pd pathdef.c |
| 529 | -@ write pd "/* Empty file to satisfy MMK depend. */" |
Bram Moolenaar | cf0dfa2 | 2007-05-10 18:52:16 +0000 | [diff] [blame] | 530 | -@ write pd "/* It will be overwritten later on... */" |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 531 | -@ close pd |
| 532 | clean : |
| 533 | -@ if "''F$SEARCH("*.exe")'" .NES. "" then delete/noconfirm/nolog *.exe;* |
| 534 | -@ if "''F$SEARCH("*.obj")'" .NES. "" then delete/noconfirm/nolog *.obj;* |
| 535 | -@ if "''F$SEARCH("[.auto]config.h")'" .NES. "" then delete/noconfirm/nolog [.auto]config.h;* |
| 536 | -@ if "''F$SEARCH("pathdef.c")'" .NES. "" then delete/noconfirm/nolog pathdef.c;* |
| 537 | -@ if "''F$SEARCH("if_perl.c")'" .NES. "" then delete/noconfirm/nolog if_perl.c;* |
| 538 | -@ if "''F$SEARCH("*.opt")'" .NES. "" then delete/noconfirm/nolog *.opt;* |
| 539 | |
| 540 | # Link the target |
| 541 | $(TARGET) : $(OBJ) |
Bram Moolenaar | 0c5c3fa | 2019-11-30 22:38:16 +0100 | [diff] [blame] | 542 | # make an OPT file - as the obj file list is too long for one command line |
| 543 | -@ DIRECTORY *.OBJ. /BRIEF/COLUMNS=1/NOHEADING/NOTRAILING /SELECT=FILE=(NONODE,NODEVICE,NODIRECTORY,NOVERSION)/OUTPUT=ALL_OBJS_LIST.OPT |
| 544 | $(LD_DEF) $(LDFLAGS) /exe=$(TARGET) ALL_OBJS_LIST.OPT/OPT $(ALL_LIBS) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 545 | |
| 546 | .c.obj : |
| 547 | $(CC_DEF) $(ALL_CFLAGS) $< |
| 548 | |
| 549 | pathdef.c : check_ccver $(CONFIG_H) |
| 550 | -@ write sys$output "creating PATHDEF.C file." |
| 551 | -@ open/write pd pathdef.c |
| 552 | -@ write pd "/* pathdef.c -- DO NOT EDIT! */" |
| 553 | -@ write pd "/* This file is automatically created by MAKE_VMS.MMS" |
| 554 | -@ write pd " * Change the file MAKE_VMS.MMS Only. */" |
| 555 | -@ write pd "typedef unsigned char char_u;" |
| 556 | -@ write pd "char_u *default_vim_dir = (char_u *)"$(VIMLOC)";" |
| 557 | -@ write pd "char_u *default_vimruntime_dir = (char_u *)"$(VIMRUN)";" |
| 558 | -@ write pd "char_u *all_cflags = (char_u *)""$(CC_DEF)$(ALL_CFLAGS_VER)"";" |
Bram Moolenaar | 0c5c3fa | 2019-11-30 22:38:16 +0100 | [diff] [blame] | 559 | -@ write pd "char_u *all_lflags = (char_u *)""$(LD_DEF)$(LDFLAGS) /exe=$(TARGET) ALL_OBJS_LIST.OPT/OPT $(ALL_LIBS)"";" |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 560 | -@ write pd "char_u *compiler_version = (char_u *) ""''CC_VER'"";" |
| 561 | -@ write pd "char_u *compiled_user = (char_u *) "$(VIMUSER)";" |
Bram Moolenaar | 3d20ca1 | 2006-11-28 16:43:58 +0000 | [diff] [blame] | 562 | -@ write pd "char_u *compiled_sys = (char_u *) "$(VIMHOST)";" |
| 563 | -@ write pd "char_u *compiled_arch = (char_u *) ""$(MMSARCH_NAME)"";" |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 564 | -@ close pd |
| 565 | |
| 566 | if_perl.c : if_perl.xs |
Bram Moolenaar | 0c5c3fa | 2019-11-30 22:38:16 +0100 | [diff] [blame] | 567 | -@ $(PERL) PERL_ROOT:[LIB.ExtUtils]xsubpp -prototypes -typemap - PERL_ROOT:[LIB.ExtUtils]typemap if_perl.xs >> $@ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 568 | |
| 569 | make_vms.mms : |
| 570 | -@ write sys$output "The name of the makefile MUST be <MAKE_VMS.MMS> !!!" |
| 571 | |
| 572 | .IFDEF CCVER |
| 573 | # This part can make some complications if you're using some predefined |
| 574 | # symbols/flags for your compiler. If does, just comment out CCVER variable |
| 575 | check_ccver : |
| 576 | -@ define sys$output cc_ver.tmp |
| 577 | -@ $(CC_DEF)/version |
| 578 | -@ deassign sys$output |
| 579 | -@ open/read file cc_ver.tmp |
| 580 | -@ read file CC_VER |
| 581 | -@ close file |
| 582 | -@ delete/noconfirm/nolog cc_ver.tmp.* |
| 583 | .ELSE |
| 584 | check_ccver : |
| 585 | -@ ! |
| 586 | .ENDIF |
| 587 | |
| 588 | .IFDEF MOTIF |
| 589 | motif_env : |
Bram Moolenaar | 8d34330 | 2005-07-12 22:46:17 +0000 | [diff] [blame] | 590 | .IFDEF XPM |
| 591 | -@ write sys$output "using DECW/Motif/XPM environment." |
| 592 | .ELSE |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 593 | -@ write sys$output "using DECW/Motif environment." |
Bram Moolenaar | 8d34330 | 2005-07-12 22:46:17 +0000 | [diff] [blame] | 594 | .ENDIF |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 595 | -@ write sys$output "creating OS_VMS_MOTIF.OPT file." |
| 596 | -@ open/write opt_file OS_VMS_MOTIF.OPT |
| 597 | -@ write opt_file "sys$share:decw$xmlibshr12.exe/share,-" |
| 598 | -@ write opt_file "sys$share:decw$xtlibshrr5.exe/share,-" |
| 599 | -@ write opt_file "sys$share:decw$xlibshr.exe/share" |
| 600 | -@ close opt_file |
| 601 | .ELSE |
| 602 | motif_env : |
| 603 | -@ ! |
| 604 | .ENDIF |
| 605 | |
| 606 | |
| 607 | .IFDEF GTK |
| 608 | gtk_env : |
| 609 | -@ write sys$output "using GTK environment:" |
| 610 | -@ define/nolog gtk_root /trans=conc $(GTK_DIR) |
| 611 | -@ show logical gtk_root |
| 612 | -@ write sys$output " include path: "$(GUI_INC)"" |
| 613 | -@ write sys$output "creating OS_VMS_GTK.OPT file." |
| 614 | -@ open/write opt_file OS_VMS_GTK.OPT |
| 615 | -@ write opt_file "gtk_root:[glib]libglib.exe /share,-" |
| 616 | -@ write opt_file "gtk_root:[glib.gmodule]libgmodule.exe /share,-" |
| 617 | -@ write opt_file "gtk_root:[gtk.gdk]libgdk.exe /share,-" |
| 618 | -@ write opt_file "gtk_root:[gtk.gtk]libgtk.exe /share,-" |
| 619 | -@ write opt_file "sys$share:decw$xmlibshr12.exe/share,-" |
| 620 | -@ write opt_file "sys$share:decw$xtlibshrr5.exe/share,-" |
| 621 | -@ write opt_file "sys$share:decw$xlibshr.exe/share" |
| 622 | -@ close opt_file |
| 623 | .ELSE |
| 624 | gtk_env : |
| 625 | -@ ! |
| 626 | .ENDIF |
| 627 | |
| 628 | .IFDEF VIM_PERL |
| 629 | perl_env : |
| 630 | -@ write sys$output "using PERL environment:" |
| 631 | -@ show logical PERLSHR |
| 632 | -@ write sys$output " include path: ""$(PERL_INC)""" |
| 633 | -@ show symbol perl |
| 634 | -@ open/write pd if_perl.c |
| 635 | -@ write pd "/* Empty file to satisfy MMK depend. */" |
Bram Moolenaar | cf0dfa2 | 2007-05-10 18:52:16 +0000 | [diff] [blame] | 636 | -@ write pd "/* It will be overwritten later on... */" |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 637 | -@ close pd |
| 638 | -@ write sys$output "creating OS_VMS_PERL.OPT file." |
| 639 | -@ open/write opt_file OS_VMS_PERL.OPT |
| 640 | -@ write opt_file "PERLSHR /share" |
| 641 | -@ close opt_file |
| 642 | .ELSE |
| 643 | perl_env : |
| 644 | -@ ! |
| 645 | .ENDIF |
| 646 | |
| 647 | .IFDEF VIM_PYTHON |
| 648 | python_env : |
| 649 | -@ write sys$output "using PYTHON environment:" |
| 650 | -@ show logical PYTHON_INCLUDE |
| 651 | -@ show logical PYTHON_OLB |
| 652 | -@ write sys$output "creating OS_VMS_PYTHON.OPT file." |
| 653 | -@ open/write opt_file OS_VMS_PYTHON.OPT |
| 654 | -@ write opt_file "PYTHON_OLB:PYTHON.OLB /share" |
| 655 | -@ close opt_file |
| 656 | .ELSE |
| 657 | python_env : |
| 658 | -@ ! |
| 659 | .ENDIF |
| 660 | |
| 661 | .IFDEF VIM_TCL |
| 662 | tcl_env : |
| 663 | -@ write sys$output "using TCL environment:" |
| 664 | -@ show logical TCLSHR |
| 665 | -@ write sys$output " include path: ""$(TCL_INC)""" |
| 666 | -@ write sys$output "creating OS_VMS_TCL.OPT file." |
| 667 | -@ open/write opt_file OS_VMS_TCL.OPT |
| 668 | -@ write opt_file "TCLSHR /share" |
| 669 | -@ close opt_file |
| 670 | .ELSE |
| 671 | tcl_env : |
| 672 | -@ ! |
| 673 | .ENDIF |
| 674 | |
| 675 | .IFDEF VIM_RUBY |
| 676 | ruby_env : |
| 677 | -@ write sys$output "using RUBY environment:" |
| 678 | -@ write sys$output " include path: ""$(RUBY_INC)""" |
| 679 | -@ write sys$output "creating OS_VMS_RUBY.OPT file." |
| 680 | -@ open/write opt_file OS_VMS_RUBY.OPT |
| 681 | -@ write opt_file "RUBYSHR /share" |
| 682 | -@ close opt_file |
| 683 | .ELSE |
| 684 | ruby_env : |
| 685 | -@ ! |
| 686 | .ENDIF |
| 687 | |
Bram Moolenaar | 3b98b83 | 2016-07-02 21:45:17 +0200 | [diff] [blame] | 688 | arabic.obj : arabic.c vim.h |
Bram Moolenaar | 4ad6215 | 2019-08-17 14:38:55 +0200 | [diff] [blame] | 689 | 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] | 690 | 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] | 691 | blowfish.obj : blowfish.c vim.h [.auto]config.h feature.h os_unix.h |
| 692 | 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] | 693 | buffer.obj : buffer.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 694 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 695 | 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] | 696 | globals.h version.h |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 697 | bufwrite.obj : bufwrite.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 698 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 699 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | f5f4b6c | 2019-12-14 13:17:11 +0100 | [diff] [blame] | 700 | globals.h |
Bram Moolenaar | ec28d15 | 2019-05-11 18:36:34 +0200 | [diff] [blame] | 701 | change.obj : change.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 702 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 703 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | f5f4b6c | 2019-12-14 13:17:11 +0100 | [diff] [blame] | 704 | globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 705 | charset.obj : charset.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 706 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 707 | 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] | 708 | globals.h |
Bram Moolenaar | 14c01f8 | 2019-10-09 22:53:08 +0200 | [diff] [blame] | 709 | cindent.obj : cindent.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 710 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 711 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
| 712 | globals.h |
Bram Moolenaar | f87a040 | 2020-04-05 20:21:03 +0200 | [diff] [blame] | 713 | clientserver.obj : clientserver.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 714 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 715 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
| 716 | globals.h |
Bram Moolenaar | 45fffdf | 2020-03-24 21:42:01 +0100 | [diff] [blame] | 717 | clipboard.obj : clipboard.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 718 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 719 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
| 720 | globals.h |
Bram Moolenaar | 66b5142 | 2019-08-18 21:44:12 +0200 | [diff] [blame] | 721 | cmdexpand.obj : cmdexpand.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 722 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 723 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
| 724 | globals.h |
Bram Moolenaar | d7663c2 | 2019-08-06 21:59:57 +0200 | [diff] [blame] | 725 | cmdhist.obj : cmdhist.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 |
Bram Moolenaar | de5e2c2 | 2016-11-04 20:35:31 +0100 | [diff] [blame] | 729 | crypt.obj : crypt.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 730 | 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] | 731 | 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] | 732 | globals.h |
Bram Moolenaar | de5e2c2 | 2016-11-04 20:35:31 +0100 | [diff] [blame] | 733 | crypt_zip.obj : crypt_zip.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 734 | ascii.h keymap.h term.h macros.h option.h structs.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 735 | 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] | 736 | proto.h globals.h |
Bram Moolenaar | eead75c | 2019-04-21 11:35:00 +0200 | [diff] [blame] | 737 | debugger.obj : debugger.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 738 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 739 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
| 740 | globals.h |
Bram Moolenaar | de5e2c2 | 2016-11-04 20:35:31 +0100 | [diff] [blame] | 741 | dict.obj : dict.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 742 | 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] | 743 | 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] | 744 | globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 745 | 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] | 746 | 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] | 747 | [.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] | 748 | digraph.obj : digraph.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 749 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 750 | 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] | 751 | globals.h |
Bram Moolenaar | 7528d1f | 2019-09-19 23:06:20 +0200 | [diff] [blame] | 752 | drawline.obj : drawline.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 753 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 754 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
| 755 | globals.h |
| 756 | drawscreen.obj : drawscreen.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 757 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 758 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
| 759 | globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 760 | 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] | 761 | 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] | 762 | [.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] | 763 | 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] | 764 | ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \ |
Bram Moolenaar | f5f4b6c | 2019-12-14 13:17:11 +0100 | [diff] [blame] | 765 | [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h |
Bram Moolenaar | 261f346 | 2019-09-07 15:45:32 +0200 | [diff] [blame] | 766 | evalbuffer.obj : evalbuffer.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 767 | ascii.h keymap.h term.h macros.h option.h structs.h \ |
| 768 | regexp.h gui.h beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h \ |
Bram Moolenaar | f5f4b6c | 2019-12-14 13:17:11 +0100 | [diff] [blame] | 769 | proto.h globals.h |
Bram Moolenaar | de5e2c2 | 2016-11-04 20:35:31 +0100 | [diff] [blame] | 770 | evalfunc.obj : evalfunc.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 771 | ascii.h keymap.h term.h macros.h option.h structs.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 772 | 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] | 773 | proto.h globals.h version.h |
Bram Moolenaar | 0522ba0 | 2019-08-27 22:48:30 +0200 | [diff] [blame] | 774 | evalvars.obj : evalvars.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 775 | ascii.h keymap.h term.h macros.h option.h structs.h \ |
| 776 | regexp.h gui.h beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h \ |
| 777 | proto.h globals.h version.h |
Bram Moolenaar | 261f346 | 2019-09-07 15:45:32 +0200 | [diff] [blame] | 778 | evalwindow.obj : evalwindow.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 779 | ascii.h keymap.h term.h macros.h option.h structs.h \ |
| 780 | regexp.h gui.h beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h \ |
Bram Moolenaar | f5f4b6c | 2019-12-14 13:17:11 +0100 | [diff] [blame] | 781 | proto.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 782 | ex_cmds.obj : ex_cmds.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 783 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 784 | 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] | 785 | globals.h version.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 786 | ex_cmds2.obj : ex_cmds2.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 787 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 788 | 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] | 789 | globals.h version.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 790 | ex_docmd.obj : ex_docmd.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 791 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 792 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | 0ba89ec | 2019-12-09 21:48:11 +0100 | [diff] [blame] | 793 | globals.h ex_cmdidxs.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 794 | ex_eval.obj : ex_eval.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 795 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 796 | 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] | 797 | globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 798 | ex_getln.obj : ex_getln.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 799 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 800 | 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] | 801 | globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 802 | fileio.obj : fileio.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 803 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 804 | 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] | 805 | globals.h |
Bram Moolenaar | b005cd8 | 2019-09-04 15:54:55 +0200 | [diff] [blame] | 806 | filepath.obj : filepath.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 807 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 808 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
| 809 | globals.h |
Bram Moolenaar | 5fd0f50 | 2019-02-13 23:13:28 +0100 | [diff] [blame] | 810 | findfile.obj : findfile.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 811 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 812 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | e37368c | 2019-03-22 16:57:45 +0100 | [diff] [blame] | 813 | globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 814 | 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] | 815 | 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] | 816 | [.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] | 817 | getchar.obj : getchar.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 818 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 819 | 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] | 820 | globals.h |
Bram Moolenaar | 58d9823 | 2005-07-23 22:25:46 +0000 | [diff] [blame] | 821 | hardcopy.obj : hardcopy.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 | f5f4b6c | 2019-12-14 13:17:11 +0100 | [diff] [blame] | 824 | globals.h version.h |
Bram Moolenaar | 76b92b2 | 2006-03-24 22:46:53 +0000 | [diff] [blame] | 825 | 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] | 826 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 827 | 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] | 828 | globals.h |
Bram Moolenaar | f9cc9f2 | 2019-07-14 21:29:22 +0200 | [diff] [blame] | 829 | highlight.obj : highlight.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 830 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 831 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
| 832 | globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 833 | if_cscope.obj : if_cscope.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 if_cscope.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 837 | if_xcmdsrv.obj : if_xcmdsrv.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 version.h |
Bram Moolenaar | f878bcf | 2010-07-30 22:29:41 +0200 | [diff] [blame] | 841 | if_mzsch.obj : if_mzsch.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 842 | ascii.h keymap.h term.h macros.h option.h structs.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 843 | 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] | 844 | globals.h if_mzsch.h |
Bram Moolenaar | 4b47162 | 2019-01-31 13:48:09 +0100 | [diff] [blame] | 845 | 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] | 846 | 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] | 847 | 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] | 848 | ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \ |
Bram Moolenaar | f5f4b6c | 2019-12-14 13:17:11 +0100 | [diff] [blame] | 849 | [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h |
Bram Moolenaar | de5e2c2 | 2016-11-04 20:35:31 +0100 | [diff] [blame] | 850 | list.obj : list.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 851 | 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] | 852 | 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] | 853 | globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 854 | 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] | 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 | arabic.c |
Bram Moolenaar | b66bab3 | 2019-08-01 14:28:24 +0200 | [diff] [blame] | 858 | map.obj : map.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 859 | ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \ |
Bram Moolenaar | 0c5c3fa | 2019-11-30 22:38:16 +0100 | [diff] [blame] | 860 | [.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] | 861 | 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] | 862 | 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] | 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 | memfile.obj : memfile.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 865 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 866 | 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] | 867 | globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 868 | memline.obj : memline.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 869 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 870 | 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] | 871 | globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 872 | 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] | 873 | 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] | 874 | [.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] | 875 | message.obj : message.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 |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 879 | 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] | 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 | version.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 883 | 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] | 884 | ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \ |
Bram Moolenaar | 7528d1f | 2019-09-19 23:06:20 +0200 | [diff] [blame] | 885 | [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 886 | mouse.obj : mouse.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 887 | ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \ |
| 888 | [.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] | 889 | 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] | 890 | 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] | 891 | [.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] | 892 | 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] | 893 | 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] | 894 | [.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] | 895 | normal.obj : normal.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 | 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] | 900 | 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] | 901 | [.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] | 902 | option.obj : option.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 903 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 904 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | 0eddca4 | 2019-09-12 22:26:43 +0200 | [diff] [blame] | 905 | globals.h optiondefs.h |
Bram Moolenaar | dac1347 | 2019-09-16 21:06:21 +0200 | [diff] [blame] | 906 | optionstr.obj : optionstr.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 907 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 908 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
| 909 | globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 910 | os_unix.obj : os_unix.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 911 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 912 | 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] | 913 | globals.h os_unixx.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 914 | os_vms.obj : os_vms.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 915 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 916 | 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] | 917 | globals.h os_unixx.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 918 | pathdef.obj : pathdef.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 919 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 920 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | e37368c | 2019-03-22 16:57:45 +0100 | [diff] [blame] | 921 | globals.h |
Bram Moolenaar | 30e8e73 | 2019-09-27 13:08:36 +0200 | [diff] [blame] | 922 | 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] | 923 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 924 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | e37368c | 2019-03-22 16:57:45 +0100 | [diff] [blame] | 925 | globals.h |
Bram Moolenaar | 4d784b2 | 2019-05-25 19:51:39 +0200 | [diff] [blame] | 926 | popupwin.obj : popupwin.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 927 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 928 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
| 929 | globals.h |
Bram Moolenaar | fa55cfc | 2019-07-13 22:59:32 +0200 | [diff] [blame] | 930 | profiler.obj : profiler.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 931 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 932 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
| 933 | globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 934 | quickfix.obj : quickfix.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 935 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 936 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | e37368c | 2019-03-22 16:57:45 +0100 | [diff] [blame] | 937 | globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 938 | regexp.obj : regexp.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 939 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 940 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | e37368c | 2019-03-22 16:57:45 +0100 | [diff] [blame] | 941 | globals.h |
Bram Moolenaar | 4aea03e | 2019-09-25 22:37:17 +0200 | [diff] [blame] | 942 | register.obj : register.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 943 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 944 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
| 945 | globals.h |
Bram Moolenaar | 307c5a5 | 2019-08-25 15:41:00 +0200 | [diff] [blame] | 946 | scriptfile.obj : scriptfile.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 947 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 948 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
| 949 | globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 950 | screen.obj : screen.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 951 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 952 | 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] | 953 | globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 954 | search.obj : search.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 955 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 956 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | e37368c | 2019-03-22 16:57:45 +0100 | [diff] [blame] | 957 | globals.h |
Bram Moolenaar | 8453807 | 2019-07-28 14:15:42 +0200 | [diff] [blame] | 958 | session.obj : session.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 959 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 960 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
| 961 | globals.h |
Bram Moolenaar | de5e2c2 | 2016-11-04 20:35:31 +0100 | [diff] [blame] | 962 | sha256.obj : sha256.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 963 | 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] | 964 | 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] | 965 | globals.h |
Bram Moolenaar | bbea470 | 2019-01-01 13:20:31 +0100 | [diff] [blame] | 966 | sign.obj : sign.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 967 | ascii.h keymap.h term.h macros.h option.h structs.h regexp.h gui.h \ |
| 968 | 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] | 969 | globals.h |
Bram Moolenaar | 217ad92 | 2005-03-20 22:37:15 +0000 | [diff] [blame] | 970 | spell.obj : spell.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 971 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 972 | 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] | 973 | globals.h |
Bram Moolenaar | de5e2c2 | 2016-11-04 20:35:31 +0100 | [diff] [blame] | 974 | spellfile.obj : spellfile.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 975 | ascii.h keymap.h term.h macros.h option.h structs.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 976 | 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] | 977 | proto.h globals.h |
Bram Moolenaar | 46a426c | 2019-09-27 12:41:56 +0200 | [diff] [blame] | 978 | spellsuggest.obj : spellsuggest.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 979 | ascii.h keymap.h term.h macros.h option.h structs.h \ |
| 980 | regexp.h gui.h beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h \ |
| 981 | proto.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 982 | syntax.obj : syntax.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 983 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 984 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | e37368c | 2019-03-22 16:57:45 +0100 | [diff] [blame] | 985 | globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 986 | 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] | 987 | 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] | 988 | [.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] | 989 | 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] | 990 | 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] | 991 | [.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] | 992 | 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] | 993 | 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] | 994 | [.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] | 995 | testing.obj : testing.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 996 | 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] | 997 | [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h |
Bram Moolenaar | 11abd09 | 2020-05-01 14:26:37 +0200 | [diff] [blame] | 998 | textformat.obj : textformat.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 999 | ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \ |
| 1000 | [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h |
Bram Moolenaar | ed8ce05 | 2020-04-29 21:04:15 +0200 | [diff] [blame] | 1001 | textobject.obj : textobject.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1002 | ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \ |
| 1003 | [.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] | 1004 | textprop.obj : textprop.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1005 | 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] | 1006 | [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h |
Bram Moolenaar | 0a8fed6 | 2020-02-14 13:22:17 +0100 | [diff] [blame] | 1007 | time.obj : time.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1008 | ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \ |
| 1009 | [.proto]gui_beval.pro option.h ex_cmds.h proto.h globals.h |
Bram Moolenaar | 367d59e | 2020-05-30 17:06:14 +0200 | [diff] [blame] | 1010 | typval.obj : typval.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1011 | ascii.h keymap.h term.h macros.h structs.h regexp.h gui.h beval.h \ |
| 1012 | [.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] | 1013 | 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] | 1014 | 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] | 1015 | [.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] | 1016 | 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] | 1017 | 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] | 1018 | [.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] | 1019 | usercmd.obj : usercmd.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1020 | ascii.h keymap.h term.h macros.h option.h structs.h \ |
| 1021 | regexp.h gui.h beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h \ |
| 1022 | proto.h globals.h |
Bram Moolenaar | de5e2c2 | 2016-11-04 20:35:31 +0100 | [diff] [blame] | 1023 | userfunc.obj : userfunc.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1024 | ascii.h keymap.h term.h macros.h option.h structs.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1025 | 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] | 1026 | proto.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1027 | version.obj : version.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 version.h |
Bram Moolenaar | defa067 | 2019-07-21 19:25:37 +0200 | [diff] [blame] | 1031 | viminfo.obj : viminfo.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1032 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 1033 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
| 1034 | globals.h version.h |
Bram Moolenaar | f2cecb6 | 2020-02-13 21:59:25 +0100 | [diff] [blame] | 1035 | vim9compile.obj : vim9compile.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1036 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 1037 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
| 1038 | globals.h version.h |
| 1039 | vim9execute.obj : vim9execute.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1040 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 1041 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
| 1042 | globals.h version.h |
| 1043 | vim9script.obj : vim9script.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1044 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 1045 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
| 1046 | globals.h version.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1047 | window.obj : window.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 |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1051 | 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] | 1052 | 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] | 1053 | [.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] | 1054 | gui_gtk.obj : gui_gtk.c gui_gtk_f.h vim.h [.auto]config.h feature.h \ |
| 1055 | 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] | 1056 | 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] | 1057 | proto.h globals.h [-.pixmaps]stock_icons.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1058 | gui_gtk_f.obj : gui_gtk_f.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 gui_gtk_f.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1062 | gui_motif.obj : gui_motif.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 [-.pixmaps]alert.xpm [-.pixmaps]error.xpm \ |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1066 | [-.pixmaps]generic.xpm [-.pixmaps]info.xpm [-.pixmaps]quest.xpm |
| 1067 | gui_athena.obj : gui_athena.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1068 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1069 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | e37368c | 2019-03-22 16:57:45 +0100 | [diff] [blame] | 1070 | globals.h gui_at_sb.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1071 | gui_gtk_x11.obj : gui_gtk_x11.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1072 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1073 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | e37368c | 2019-03-22 16:57:45 +0100 | [diff] [blame] | 1074 | globals.h gui_gtk_f.h [-.runtime]vim32x32.xpm \ |
Bram Moolenaar | f5f4b6c | 2019-12-14 13:17:11 +0100 | [diff] [blame] | 1075 | [-.runtime]vim16x16.xpm [-.runtime]vim48x48.xpm version.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1076 | gui_x11.obj : gui_x11.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1077 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1078 | 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] | 1079 | globals.h [-.runtime]vim32x32.xpm \ |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1080 | [-.runtime]vim16x16.xpm [-.runtime]vim48x48.xpm [-.pixmaps]tb_new.xpm \ |
| 1081 | [-.pixmaps]tb_open.xpm [-.pixmaps]tb_close.xpm [-.pixmaps]tb_save.xpm \ |
| 1082 | [-.pixmaps]tb_print.xpm [-.pixmaps]tb_cut.xpm [-.pixmaps]tb_copy.xpm \ |
| 1083 | [-.pixmaps]tb_paste.xpm [-.pixmaps]tb_find.xpm \ |
| 1084 | [-.pixmaps]tb_find_next.xpm [-.pixmaps]tb_find_prev.xpm \ |
| 1085 | [-.pixmaps]tb_find_help.xpm [-.pixmaps]tb_exit.xpm \ |
| 1086 | [-.pixmaps]tb_undo.xpm [-.pixmaps]tb_redo.xpm [-.pixmaps]tb_help.xpm \ |
| 1087 | [-.pixmaps]tb_macro.xpm [-.pixmaps]tb_make.xpm \ |
| 1088 | [-.pixmaps]tb_save_all.xpm [-.pixmaps]tb_jump.xpm \ |
| 1089 | [-.pixmaps]tb_ctags.xpm [-.pixmaps]tb_load_session.xpm \ |
| 1090 | [-.pixmaps]tb_save_session.xpm [-.pixmaps]tb_new_session.xpm \ |
| 1091 | [-.pixmaps]tb_blank.xpm [-.pixmaps]tb_maximize.xpm \ |
| 1092 | [-.pixmaps]tb_split.xpm [-.pixmaps]tb_minimize.xpm \ |
| 1093 | [-.pixmaps]tb_shell.xpm [-.pixmaps]tb_replace.xpm \ |
| 1094 | [-.pixmaps]tb_vsplit.xpm [-.pixmaps]tb_maxwidth.xpm \ |
| 1095 | [-.pixmaps]tb_minwidth.xpm |
| 1096 | gui_at_sb.obj : gui_at_sb.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1097 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1098 | 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] | 1099 | globals.h gui_at_sb.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1100 | gui_at_fs.obj : gui_at_fs.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1101 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1102 | 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] | 1103 | globals.h gui_at_sb.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1104 | 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] | 1105 | 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] | 1106 | [.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] | 1107 | if_perl.obj : [.auto]if_perl.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1108 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1109 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | e37368c | 2019-03-22 16:57:45 +0100 | [diff] [blame] | 1110 | globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1111 | if_perlsfio.obj : if_perlsfio.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1112 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1113 | 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] | 1114 | globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1115 | if_python.obj : if_python.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1116 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1117 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | e37368c | 2019-03-22 16:57:45 +0100 | [diff] [blame] | 1118 | globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1119 | if_tcl.obj : if_tcl.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1120 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1121 | 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] | 1122 | globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1123 | if_ruby.obj : if_ruby.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1124 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1125 | 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] | 1126 | globals.h version.h |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1127 | beval.obj : beval.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1128 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
| 1129 | gui.h beval.h option.h ex_cmds.h proto.h \ |
Bram Moolenaar | e37368c | 2019-03-22 16:57:45 +0100 | [diff] [blame] | 1130 | globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1131 | gui_beval.obj : gui_beval.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1132 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1133 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | e37368c | 2019-03-22 16:57:45 +0100 | [diff] [blame] | 1134 | globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1135 | netbeans.obj : netbeans.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1136 | ascii.h keymap.h term.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1137 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | e37368c | 2019-03-22 16:57:45 +0100 | [diff] [blame] | 1138 | globals.h version.h |
Bram Moolenaar | 88c86eb | 2019-01-17 17:13:30 +0100 | [diff] [blame] | 1139 | gui_xmdlg.obj : gui_xmdlg.c [.auto]config.h vim.h feature.h os_unix.h |
| 1140 | gui_xmebw.obj : gui_xmebw.c [.auto]config.h vim.h feature.h os_unix.h |
| 1141 | xdiffi.obj : [.xdiff]xdiffi.c [.xdiff]xinclude.h [.auto]config.h vim.h feature.h os_unix.h |
| 1142 | xemit.obj : [.xdiff]xemit.c [.xdiff]xinclude.h [.auto]config.h vim.h feature.h os_unix.h |
| 1143 | xprepare.obj : [.xdiff]xprepare.c [.xdiff]xinclude.h [.auto]config.h vim.h feature.h os_unix.h |
| 1144 | xutils.obj : [.xdiff]xutils.c [.xdiff]xinclude.h [.auto]config.h vim.h feature.h os_unix.h |
| 1145 | xhistogram.obj : [.xdiff]xhistogram.c [.xdiff]xinclude.h [.auto]config.h vim.h feature.h os_unix.h |
| 1146 | xpatience.obj : [.xdiff]xpatience.c [.xdiff]xinclude.h [.auto]config.h vim.h feature.h os_unix.h |