Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1 | # |
| 2 | # Makefile for Vim on OpenVMS |
| 3 | # |
Zoltan Arpadffy | 4d8cb68 | 2024-01-04 21:01:13 +0100 | [diff] [blame] | 4 | # Maintainer: Zoltan Arpadffy <zoltan.arpadffy@gmail.com> |
| 5 | # Last change: 2024 Jan 03 |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6 | # |
Zoltan Arpadffy | 1c8e233 | 2023-12-05 16:04:23 +0100 | [diff] [blame] | 7 | # This script has been tested on VMS 6.2 to 9.2 on VAX, ALPHA, IA64 and X86_64 |
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 |
Martin Tournoij | 7904fa4 | 2022-10-04 16:28:45 +0100 | [diff] [blame] | 30 | # TINY - No optional features enabled |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 31 | # NORMAL - A default selection of features enabled |
Bram Moolenaar | 84a05ac | 2013-05-06 04:24:17 +0200 | [diff] [blame] | 32 | # HUGE - All possible features enabled. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 33 | # Please select one of these alternatives above. |
Bram Moolenaar | ac98e5d | 2008-09-01 14:51:37 +0000 | [diff] [blame] | 34 | MODEL = HUGE |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 35 | |
| 36 | # GUI or terminal mode executable. |
| 37 | # Comment out if you want just the character terminal mode only. |
Bram Moolenaar | 4c3f536 | 2006-04-11 21:38:50 +0000 | [diff] [blame] | 38 | # GUI with Motif |
Bram Moolenaar | 82c38fe | 2021-01-04 10:47:26 +0100 | [diff] [blame] | 39 | # GUI = YES |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 40 | |
| 41 | # GUI with GTK |
| 42 | # If you have GTK installed you might want to enable this option. |
Bram Moolenaar | 3d20ca1 | 2006-11-28 16:43:58 +0000 | [diff] [blame] | 43 | # NOTE: you will need to properly define GTK_DIR below |
Bram Moolenaar | 82c38fe | 2021-01-04 10:47:26 +0100 | [diff] [blame] | 44 | # NOTE: since Vim 7.3 GTK 2+ is used that is not ported to VMS, |
| 45 | # therefore this option should not be used |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 46 | # GTK = YES |
| 47 | |
Bram Moolenaar | 8d34330 | 2005-07-12 22:46:17 +0000 | [diff] [blame] | 48 | # GUI/Motif with XPM |
| 49 | # If you have XPM installed you might want to build Motif version with toolbar |
Bram Moolenaar | 82c38fe | 2021-01-04 10:47:26 +0100 | [diff] [blame] | 50 | # XPM = YES |
Bram Moolenaar | 8d34330 | 2005-07-12 22:46:17 +0000 | [diff] [blame] | 51 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 52 | # Comment out if you want the compiler version with :ver command. |
| 53 | # NOTE: This part can make some complications if you're using some |
| 54 | # predefined symbols/flags for your compiler. If does, just leave behind |
Bram Moolenaar | 84a05ac | 2013-05-06 04:24:17 +0200 | [diff] [blame] | 55 | # the comment variable CCVER. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 56 | CCVER = YES |
| 57 | |
| 58 | # Uncomment if want a debug version. Resulting executable is DVIM.EXE |
| 59 | # Development purpose only! Normally, it should not be defined. !!! |
Bram Moolenaar | 82c38fe | 2021-01-04 10:47:26 +0100 | [diff] [blame] | 60 | # DEBUG = YES |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 61 | |
| 62 | # Languages support for Perl, Python, TCL etc. |
| 63 | # If you don't need it really, leave them behind the comment. |
| 64 | # You will need related libraries, include files etc. |
| 65 | # VIM_TCL = YES |
| 66 | # VIM_PERL = YES |
| 67 | # VIM_PYTHON = YES |
Zoltan Arpadffy | 4d8cb68 | 2024-01-04 21:01:13 +0100 | [diff] [blame] | 68 | # VIM_PYTHON3= YES |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 69 | # VIM_RUBY = YES |
Bram Moolenaar | 82c38fe | 2021-01-04 10:47:26 +0100 | [diff] [blame] | 70 | # VIM_LUA = 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 |
Zoltan Arpadffy | 1c8e233 | 2023-12-05 16:04:23 +0100 | [diff] [blame] | 85 | # VIM_ICONV = YES |
| 86 | |
| 87 | # If you modified the source code and plan to distribute the build |
| 88 | # please, let the users know that. |
| 89 | # MODIFIED_BY = "name surname <your@email.com>" |
Bram Moolenaar | 206f011 | 2014-03-12 16:51:55 +0100 | [diff] [blame] | 90 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 91 | ###################################################################### |
| 92 | # Directory, library and include files configuration section. |
| 93 | # Normally you need not to change anything below. ! |
| 94 | # These may need to be defined if things are not in standard locations |
| 95 | # |
| 96 | # You can find some explanation in INSTALLVMS.TXT |
| 97 | ###################################################################### |
| 98 | |
| 99 | # Compiler setup |
| 100 | |
Bram Moolenaar | 3d20ca1 | 2006-11-28 16:43:58 +0000 | [diff] [blame] | 101 | .IFDEF MMSVAX |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 102 | .IFDEF DECC # VAX with DECC |
Bram Moolenaar | 206f011 | 2014-03-12 16:51:55 +0100 | [diff] [blame] | 103 | CC_DEF = cc # /decc # some versions require /decc switch but when it is not required /ver might fail |
Bram Moolenaar | 467676d | 2020-12-30 13:14:45 +0100 | [diff] [blame] | 104 | PREFIX = /prefix=all/name=(upper,short) |
Bram Moolenaar | 206f011 | 2014-03-12 16:51:55 +0100 | [diff] [blame] | 105 | OPTIMIZE= /noopt # do not optimize on VAX. The compiler has hard time with crypto functions |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 106 | .ELSE # VAX with VAXC |
| 107 | CC_DEF = cc |
| 108 | PREFIX = |
Bram Moolenaar | 206f011 | 2014-03-12 16:51:55 +0100 | [diff] [blame] | 109 | OPTIMIZE= /noopt |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 110 | CCVER = |
| 111 | .ENDIF |
Zoltan Arpadffy | 1c8e233 | 2023-12-05 16:04:23 +0100 | [diff] [blame] | 112 | .ELSE # AXP, IA64, X86 with DECC |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 113 | CC_DEF = cc |
Bram Moolenaar | 467676d | 2020-12-30 13:14:45 +0100 | [diff] [blame] | 114 | PREFIX = /prefix=all/name=(upper,short) |
Bram Moolenaar | 206f011 | 2014-03-12 16:51:55 +0100 | [diff] [blame] | 115 | OPTIMIZE= /opt |
Zoltan Arpadffy | 6fdb628 | 2023-12-19 20:53:07 +0100 | [diff] [blame] | 116 | .IFDEF MMSX86_64 |
Zoltan Arpadffy | 4d8cb68 | 2024-01-04 21:01:13 +0100 | [diff] [blame] | 117 | ARCH_DEF= # ,__CRTL_VER_OVERRIDE=80400000 |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 118 | .ENDIF |
Zoltan Arpadffy | 1c8e233 | 2023-12-05 16:04:23 +0100 | [diff] [blame] | 119 | .ENDIF |
Bram Moolenaar | 206f011 | 2014-03-12 16:51:55 +0100 | [diff] [blame] | 120 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 121 | LD_DEF = link |
| 122 | C_INC = [.proto] |
| 123 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 124 | .IFDEF DEBUG |
| 125 | DEBUG_DEF = ,"DEBUG" |
| 126 | TARGET = dvim.exe |
| 127 | CFLAGS = /debug/noopt$(PREFIX) |
| 128 | LDFLAGS = /debug |
| 129 | .ELSE |
| 130 | TARGET = vim.exe |
Bram Moolenaar | 206f011 | 2014-03-12 16:51:55 +0100 | [diff] [blame] | 131 | CFLAGS = $(OPTIMIZE)$(PREFIX) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 132 | LDFLAGS = |
| 133 | .ENDIF |
| 134 | |
| 135 | # Predefined VIM directories |
| 136 | # Please, use $VIM and $VIMRUNTIME logicals instead |
| 137 | VIMLOC = "" |
| 138 | VIMRUN = "" |
| 139 | |
| 140 | CONFIG_H = os_vms_conf.h |
| 141 | |
Bram Moolenaar | 4c3f536 | 2006-04-11 21:38:50 +0000 | [diff] [blame] | 142 | # GTK or XPM but not both |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 143 | .IFDEF GTK |
| 144 | .IFDEF GUI |
| 145 | .ELSE |
| 146 | GUI = YES |
| 147 | .ENDIF |
Bram Moolenaar | 4c3f536 | 2006-04-11 21:38:50 +0000 | [diff] [blame] | 148 | .IFDEF XPM |
| 149 | XPM = "" |
| 150 | .ENDIF |
| 151 | .ENDIF |
| 152 | |
| 153 | .IFDEF XPM |
| 154 | .IFDEF GUI |
| 155 | .ELSE |
| 156 | GUI = YES |
| 157 | .ENDIF |
| 158 | .IFDEF GTK |
| 159 | GTK = "" |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 160 | .ENDIF |
Bram Moolenaar | 8d34330 | 2005-07-12 22:46:17 +0000 | [diff] [blame] | 161 | .ENDIF |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 162 | |
| 163 | .IFDEF GUI |
| 164 | # X/Motif/GTK executable (also works in terminal mode ) |
| 165 | |
| 166 | .IFDEF GTK |
Bram Moolenaar | 910f66f | 2006-04-05 20:41:53 +0000 | [diff] [blame] | 167 | # NOTE: you need to set up your GTK_DIR (GTK root directory), because it is |
| 168 | # unique on every system - logicals are not accepted |
Bram Moolenaar | 8d34330 | 2005-07-12 22:46:17 +0000 | [diff] [blame] | 169 | # please note: directory should end with . in order to /trans=conc work |
Bram Moolenaar | 3d20ca1 | 2006-11-28 16:43:58 +0000 | [diff] [blame] | 170 | # This value for GTK_DIR is an example. |
Bram Moolenaar | 88c86eb | 2019-01-17 17:13:30 +0100 | [diff] [blame] | 171 | GTK_DIR = DKA0:[WORK.GTK1210.] |
Zoltan Arpadffy | 1c8e233 | 2023-12-05 16:04:23 +0100 | [diff] [blame] | 172 | DEFS = ,"HAVE_CONFIG_H","FEAT_GUI_GTK" |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 173 | LIBS = ,OS_VMS_GTK.OPT/OPT |
Zoltan Arpadffy | 1c8e233 | 2023-12-05 16:04:23 +0100 | [diff] [blame] | 174 | GUI_FLAG = /float=ieee/ieee=denorm/WARNINGS=(DISABLE=MACROREDEF) |
Bram Moolenaar | 8d34330 | 2005-07-12 22:46:17 +0000 | [diff] [blame] | 175 | GUI_SRC = gui.c gui_gtk.c gui_gtk_f.c gui_gtk_x11.c gui_beval.c pty.c |
| 176 | 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] | 177 | GUI_INC = ,"/gtk_root/gtk","/gtk_root/glib" |
| 178 | # GUI_INC_VER is used just for :ver information |
| 179 | # this string should escape from C and DCL in the same time |
| 180 | GUI_INC_VER= ,\""/gtk_root/gtk\"",\""/gtk_root/glib\"" |
Bram Moolenaar | 8d34330 | 2005-07-12 22:46:17 +0000 | [diff] [blame] | 181 | .ELSE |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 182 | MOTIF = YES |
Bram Moolenaar | 8d34330 | 2005-07-12 22:46:17 +0000 | [diff] [blame] | 183 | .IFDEF XPM |
Zoltan Arpadffy | 1c8e233 | 2023-12-05 16:04:23 +0100 | [diff] [blame] | 184 | DEFS = ,"HAVE_CONFIG_H","FEAT_GUI_MOTIF","HAVE_XPM" |
Bram Moolenaar | 88c86eb | 2019-01-17 17:13:30 +0100 | [diff] [blame] | 185 | XPM_INC = ,[.xpm.include] |
Bram Moolenaar | 467676d | 2020-12-30 13:14:45 +0100 | [diff] [blame] | 186 | XPM_LIB = ,OS_VMS_XPM.OPT/OPT |
Bram Moolenaar | 8d34330 | 2005-07-12 22:46:17 +0000 | [diff] [blame] | 187 | .ELSE |
Zoltan Arpadffy | 1c8e233 | 2023-12-05 16:04:23 +0100 | [diff] [blame] | 188 | DEFS = ,"HAVE_CONFIG_H","FEAT_GUI_MOTIF" |
Bram Moolenaar | 82c38fe | 2021-01-04 10:47:26 +0100 | [diff] [blame] | 189 | XPM_INC = |
Bram Moolenaar | 8d34330 | 2005-07-12 22:46:17 +0000 | [diff] [blame] | 190 | .ENDIF |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 191 | LIBS = ,OS_VMS_MOTIF.OPT/OPT |
Zoltan Arpadffy | 1c8e233 | 2023-12-05 16:04:23 +0100 | [diff] [blame] | 192 | GUI_FLAG = /WARNINGS=(DISABLE=MACROREDEF) |
Bram Moolenaar | 8d34330 | 2005-07-12 22:46:17 +0000 | [diff] [blame] | 193 | GUI_SRC = gui.c gui_motif.c gui_x11.c gui_beval.c gui_xmdlg.c gui_xmebw.c |
| 194 | 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] | 195 | GUI_INC = |
| 196 | .ENDIF |
| 197 | |
| 198 | # You need to define these variables if you do not have DECW files |
| 199 | # at standard location |
| 200 | GUI_INC_DIR = ,decw$include: |
| 201 | # GUI_LIB_DIR = ,sys$library: |
| 202 | |
| 203 | .ELSE |
| 204 | # Character terminal only executable |
Zoltan Arpadffy | 1c8e233 | 2023-12-05 16:04:23 +0100 | [diff] [blame] | 205 | DEFS = ,"HAVE_CONFIG_H" |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 206 | LIBS = |
| 207 | .ENDIF |
| 208 | |
| 209 | .IFDEF VIM_PERL |
| 210 | # Perl related setup. |
| 211 | PERL = perl |
| 212 | PERL_DEF = ,"FEAT_PERL" |
| 213 | PERL_SRC = if_perlsfio.c if_perl.xs |
| 214 | PERL_OBJ = if_perlsfio.obj if_perl.obj |
| 215 | PERL_LIB = ,OS_VMS_PERL.OPT/OPT |
| 216 | PERL_INC = ,dka0:[perlbuild.perl.lib.vms_axp.5_6_1.core] |
| 217 | .ENDIF |
| 218 | |
| 219 | .IFDEF VIM_PYTHON |
| 220 | # Python related setup. |
| 221 | PYTHON_DEF = ,"FEAT_PYTHON" |
| 222 | PYTHON_SRC = if_python.c |
| 223 | PYTHON_OBJ = if_python.obj |
| 224 | PYTHON_LIB = ,OS_VMS_PYTHON.OPT/OPT |
| 225 | PYTHON_INC = ,PYTHON_INCLUDE |
| 226 | .ENDIF |
| 227 | |
Zoltan Arpadffy | 4d8cb68 | 2024-01-04 21:01:13 +0100 | [diff] [blame] | 228 | .IFDEF VIM_PYTHON3 |
| 229 | # Python related setup. |
| 230 | PYTHON3_DEF = ,"FEAT_PYTHON3" |
| 231 | PYTHON3_SRC = if_python3.c |
| 232 | PYTHON3_OBJ = if_python3.obj |
| 233 | PYTHON3_LIB = ,OS_VMS_PYTHON3.OPT/OPT |
| 234 | PYTHON3_INC = ,PYTHON3_INCLUDE |
| 235 | .ENDIF |
| 236 | |
| 237 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 238 | .IFDEF VIM_TCL |
| 239 | # TCL related setup. |
| 240 | TCL_DEF = ,"FEAT_TCL" |
| 241 | TCL_SRC = if_tcl.c |
| 242 | TCL_OBJ = if_tcl.obj |
| 243 | TCL_LIB = ,OS_VMS_TCL.OPT/OPT |
| 244 | TCL_INC = ,dka0:[tcl80.generic] |
| 245 | .ENDIF |
| 246 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 247 | .IFDEF VIM_RUBY |
| 248 | # RUBY related setup. |
| 249 | RUBY_DEF = ,"FEAT_RUBY" |
| 250 | RUBY_SRC = if_ruby.c |
| 251 | RUBY_OBJ = if_ruby.obj |
| 252 | RUBY_LIB = ,OS_VMS_RUBY.OPT/OPT |
| 253 | RUBY_INC = |
| 254 | .ENDIF |
| 255 | |
Bram Moolenaar | 82c38fe | 2021-01-04 10:47:26 +0100 | [diff] [blame] | 256 | .IFDEF VIM_LUA |
| 257 | # LUA related setup. |
| 258 | LUA_DEF = ,"FEAT_LUA" |
| 259 | LUA_SRC = if_lua.c |
| 260 | LUA_OBJ = if_lua.obj |
| 261 | LUA_LIB = ,OS_VMS_LUA.OPT/OPT |
| 262 | LUA_INC = ,LUA$ROOT:[INCLUDE] |
| 263 | .ENDIF |
| 264 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 265 | .IFDEF VIM_XIM |
| 266 | # XIM related setup. |
| 267 | .IFDEF GUI |
| 268 | XIM_DEF = ,"FEAT_XIM" |
| 269 | .ENDIF |
| 270 | .ENDIF |
| 271 | |
Bram Moolenaar | f878bcf | 2010-07-30 22:29:41 +0200 | [diff] [blame] | 272 | .IFDEF VIM_MZSCHEME |
| 273 | # MZSCHEME related setup |
Zoltan Arpadffy | 4d8cb68 | 2024-01-04 21:01:13 +0100 | [diff] [blame] | 274 | MZSCHEME_DEF = ,"FEAT_MZSCHEME" |
| 275 | MZSCHEME_SRC = if_mzsch.c |
| 276 | MZSCHEME_OBJ = if_mzsch.obj |
Bram Moolenaar | f878bcf | 2010-07-30 22:29:41 +0200 | [diff] [blame] | 277 | .ENDIF |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 278 | |
Bram Moolenaar | 206f011 | 2014-03-12 16:51:55 +0100 | [diff] [blame] | 279 | .IFDEF VIM_ICONV |
| 280 | # ICONV related setup |
| 281 | ICONV_DEF = ,"USE_ICONV" |
| 282 | .ENDIF |
| 283 | |
Bram Moolenaar | 88c86eb | 2019-01-17 17:13:30 +0100 | [diff] [blame] | 284 | # XDIFF related setup. |
| 285 | XDIFF_SRC = xdiffi.c,xemit.c,xprepare.c,xutils.c,xhistogram.c,xpatience.c |
Bram Moolenaar | 82c38fe | 2021-01-04 10:47:26 +0100 | [diff] [blame] | 286 | XDIFF_OBJ = xdiffi.obj,xemit.obj,xprepare.obj,xutils.obj,xhistogram.obj,xpatience.obj |
Bram Moolenaar | 88c86eb | 2019-01-17 17:13:30 +0100 | [diff] [blame] | 287 | XDIFF_INC = ,[.xdiff] |
| 288 | |
Zoltan Arpadffy | 4d8cb68 | 2024-01-04 21:01:13 +0100 | [diff] [blame] | 289 | .IFDEF MODIFIED_BY |
Zoltan Arpadffy | 1c8e233 | 2023-12-05 16:04:23 +0100 | [diff] [blame] | 290 | DEF_MODIFIED = YES |
| 291 | .ELSE |
| 292 | DEF_MODIFIED = NO |
| 293 | .ENDIF |
| 294 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 295 | ###################################################################### |
| 296 | # End of configuration section. |
| 297 | # Please, do not change anything below without programming experience. |
| 298 | ###################################################################### |
| 299 | |
Zoltan Arpadffy | 1c8e233 | 2023-12-05 16:04:23 +0100 | [diff] [blame] | 300 | MODEL_DEF = "FEAT_$(MODEL)" |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 301 | |
| 302 | # These go into pathdef.c |
| 303 | VIMUSER = "''F$EDIT(F$GETJPI(" ","USERNAME"),"TRIM")'" |
| 304 | VIMHOST = "''F$TRNLNM("SYS$NODE")'''F$TRNLNM("UCX$INET_HOST")'.''F$TRNLNM("UCX$INET_DOMAIN")'" |
| 305 | |
| 306 | .SUFFIXES : .obj .c |
| 307 | |
Zoltan Arpadffy | 4d8cb68 | 2024-01-04 21:01:13 +0100 | [diff] [blame] | 308 | ALL_CFLAGS = /def=($(MODEL_DEF)$(DEFS)$(DEBUG_DEF)$(PERL_DEF)$(PYTHON_DEF)$(PYTHON3_DEF) - |
| 309 | $(TCL_DEF)$(RUBY_DEF)$(LUA_DEF)$(XIM_DEF)$(TAG_DEF)$(MZSCHEME_DEF) - |
Zoltan Arpadffy | 1c8e233 | 2023-12-05 16:04:23 +0100 | [diff] [blame] | 310 | $(ICONV_DEF)$(ARCH_DEF)) - |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 311 | $(CFLAGS)$(GUI_FLAG) - |
Zoltan Arpadffy | 4d8cb68 | 2024-01-04 21:01:13 +0100 | [diff] [blame] | 312 | /include=($(C_INC)$(GUI_INC_DIR)$(GUI_INC)$(PERL_INC)$(PYTHON_INC)$(PYTHON3_INC) - |
Bram Moolenaar | 88c86eb | 2019-01-17 17:13:30 +0100 | [diff] [blame] | 313 | $(TCL_INC)$(XDIFF_INC)$(XPM_INC)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 314 | |
| 315 | # CFLAGS displayed in :ver information |
Bram Moolenaar | 4b96df5 | 2020-01-26 22:00:26 +0100 | [diff] [blame] | 316 | # It is specially formatted for correct display of unix like includes |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 317 | # as $(GUI_INC) - replaced with $(GUI_INC_VER) |
| 318 | # Otherwise should not be any other difference. |
Zoltan Arpadffy | 4d8cb68 | 2024-01-04 21:01:13 +0100 | [diff] [blame] | 319 | ALL_CFLAGS_VER = /def=($(MODEL_DEF)$(DEFS)$(DEBUG_DEF)$(PERL_DEF)$(PYTHON_DEF)$(PYTHON3_DEF) - |
| 320 | $(TCL_DEF)$(RUBY_DEF)$(LUA_DEF)$(XIM_DEF)$(TAG_DEF)$(MZSCHEME_DEF) - |
Zoltan Arpadffy | 1c8e233 | 2023-12-05 16:04:23 +0100 | [diff] [blame] | 321 | $(ICONV_DEF)$(ARCH_DEF)) - |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 322 | $(CFLAGS)$(GUI_FLAG) - |
Zoltan Arpadffy | 4d8cb68 | 2024-01-04 21:01:13 +0100 | [diff] [blame] | 323 | /include=($(C_INC)$(GUI_INC_DIR)$(GUI_INC_VER)$(PERL_INC)$(PYTHON_INC)$(PYTHON3_INC) - |
Bram Moolenaar | 88c86eb | 2019-01-17 17:13:30 +0100 | [diff] [blame] | 324 | $(TCL_INC)$(XDIFF_INC)$(XPM_INC)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 325 | |
Bram Moolenaar | 467676d | 2020-12-30 13:14:45 +0100 | [diff] [blame] | 326 | ALL_LIBS = $(LIBS) $(GUI_LIB_DIR) $(GUI_LIB) $(XPM_LIB)\ |
Zoltan Arpadffy | 4d8cb68 | 2024-01-04 21:01:13 +0100 | [diff] [blame] | 327 | $(PERL_LIB) $(PYTHON_LIB) $(PYTHON3_LIB) $(TCL_LIB) $(RUBY_LIB) $(LUA_LIB) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 328 | |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 329 | SRC = \ |
Yegappan Lakshmanan | cbae580 | 2021-08-06 21:51:55 +0200 | [diff] [blame] | 330 | alloc.c \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 331 | arabic.c \ |
| 332 | arglist.c \ |
| 333 | autocmd.c \ |
| 334 | beval.c \ |
| 335 | blob.c \ |
| 336 | blowfish.c \ |
| 337 | buffer.c \ |
| 338 | bufwrite.c \ |
| 339 | change.c \ |
Zoltan Arpadffy | 1c8e233 | 2023-12-05 16:04:23 +0100 | [diff] [blame] | 340 | channel.c \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 341 | charset.c \ |
Bram Moolenaar | 14c01f8 | 2019-10-09 22:53:08 +0200 | [diff] [blame] | 342 | cindent.c \ |
Bram Moolenaar | f87a040 | 2020-04-05 20:21:03 +0200 | [diff] [blame] | 343 | clientserver.c \ |
Bram Moolenaar | 45fffdf | 2020-03-24 21:42:01 +0100 | [diff] [blame] | 344 | clipboard.c \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 345 | cmdexpand.c \ |
| 346 | cmdhist.c \ |
| 347 | crypt.c \ |
| 348 | crypt_zip.c \ |
| 349 | debugger.c \ |
| 350 | dict.c \ |
| 351 | diff.c \ |
| 352 | digraph.c \ |
| 353 | drawline.c \ |
| 354 | drawscreen.c \ |
| 355 | edit.c \ |
| 356 | eval.c \ |
| 357 | evalbuffer.c \ |
| 358 | evalfunc.c \ |
| 359 | evalvars.c \ |
| 360 | evalwindow.c \ |
| 361 | ex_cmds.c \ |
| 362 | ex_cmds2.c \ |
| 363 | ex_docmd.c \ |
| 364 | ex_eval.c \ |
Bram Moolenaar | 261f346 | 2019-09-07 15:45:32 +0200 | [diff] [blame] | 365 | ex_getln.c \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 366 | fileio.c \ |
| 367 | filepath.c, \ |
| 368 | findfile.c \ |
Yegappan Lakshmanan | 01c798c | 2021-06-02 17:07:18 +0200 | [diff] [blame] | 369 | float.c \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 370 | fold.c \ |
| 371 | getchar.c \ |
Yegappan Lakshmanan | 25536f4 | 2024-05-22 16:45:04 +0200 | [diff] [blame] | 372 | gc.c \ |
Bram Moolenaar | f15c8b6 | 2020-06-01 14:34:43 +0200 | [diff] [blame] | 373 | gui_xim.c \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 374 | hardcopy.c \ |
| 375 | hashtab.c \ |
Bram Moolenaar | f868ba8 | 2020-07-21 21:07:20 +0200 | [diff] [blame] | 376 | help.c \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 377 | highlight.c \ |
| 378 | if_cscope.c \ |
| 379 | if_xcmdsrv.c \ |
| 380 | indent.c \ |
| 381 | insexpand.c \ |
Zoltan Arpadffy | 1c8e233 | 2023-12-05 16:04:23 +0100 | [diff] [blame] | 382 | job.c \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 383 | json.c \ |
Jonathon | 7c7a4e6 | 2025-01-12 09:58:00 +0100 | [diff] [blame] | 384 | linematch.c \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 385 | list.c \ |
Bram Moolenaar | 054f14b | 2020-07-22 19:11:19 +0200 | [diff] [blame] | 386 | locale.c \ |
Bram Moolenaar | 4c5678f | 2022-11-30 18:12:19 +0000 | [diff] [blame] | 387 | logfile.c \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 388 | main.c \ |
| 389 | map.c \ |
| 390 | mark.c \ |
Bram Moolenaar | 06cf97e | 2020-06-28 13:17:26 +0200 | [diff] [blame] | 391 | match.c \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 392 | mbyte.c \ |
| 393 | memfile.c \ |
| 394 | memline.c \ |
| 395 | menu.c \ |
| 396 | message.c \ |
| 397 | misc1.c \ |
| 398 | misc2.c \ |
| 399 | mouse.c \ |
| 400 | move.c \ |
| 401 | normal.c \ |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 402 | ops.c \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 403 | option.c \ |
| 404 | optionstr.c \ |
| 405 | os_unix.c \ |
| 406 | os_vms.c \ |
Bram Moolenaar | 4ad6215 | 2019-08-17 14:38:55 +0200 | [diff] [blame] | 407 | pathdef.c \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 408 | popupmenu.c \ |
| 409 | popupwin.c \ |
| 410 | profiler.c \ |
Zoltan Arpadffy | 1c8e233 | 2023-12-05 16:04:23 +0100 | [diff] [blame] | 411 | pty.c \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 412 | quickfix.c \ |
| 413 | regexp.c \ |
| 414 | register.c \ |
| 415 | screen.c \ |
| 416 | scriptfile.c \ |
| 417 | search.c \ |
| 418 | session.c \ |
| 419 | sha256.c \ |
| 420 | sign.c \ |
Zoltan Arpadffy | 1c8e233 | 2023-12-05 16:04:23 +0100 | [diff] [blame] | 421 | sound.c \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 422 | spell.c \ |
| 423 | spellfile.c \ |
| 424 | spellsuggest.c \ |
Yegappan Lakshmanan | a243813 | 2021-07-10 21:29:18 +0200 | [diff] [blame] | 425 | strings.c \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 426 | syntax.c \ |
| 427 | tag.c \ |
| 428 | term.c \ |
Zoltan Arpadffy | 1c8e233 | 2023-12-05 16:04:23 +0100 | [diff] [blame] | 429 | terminal.c \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 430 | termlib.c \ |
| 431 | testing.c \ |
Bram Moolenaar | 11abd09 | 2020-05-01 14:26:37 +0200 | [diff] [blame] | 432 | textformat.c \ |
Bram Moolenaar | ed8ce05 | 2020-04-29 21:04:15 +0200 | [diff] [blame] | 433 | textobject.c \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 434 | textprop.c \ |
Bram Moolenaar | 0a8fed6 | 2020-02-14 13:22:17 +0100 | [diff] [blame] | 435 | time.c \ |
Bram Moolenaar | 367d59e | 2020-05-30 17:06:14 +0200 | [diff] [blame] | 436 | typval.c \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 437 | ui.c \ |
| 438 | undo.c \ |
| 439 | usercmd.c \ |
| 440 | userfunc.c \ |
| 441 | version.c \ |
Bram Moolenaar | c1c365c | 2022-12-04 20:13:24 +0000 | [diff] [blame] | 442 | vim9class.c \ |
Bram Moolenaar | dc7c366 | 2021-12-20 15:04:29 +0000 | [diff] [blame] | 443 | vim9cmds.c \ |
Bram Moolenaar | f2cecb6 | 2020-02-13 21:59:25 +0100 | [diff] [blame] | 444 | vim9compile.c \ |
| 445 | vim9execute.c \ |
Bram Moolenaar | dc7c366 | 2021-12-20 15:04:29 +0000 | [diff] [blame] | 446 | vim9expr.c \ |
| 447 | vim9instr.c \ |
Bram Moolenaar | f2cecb6 | 2020-02-13 21:59:25 +0100 | [diff] [blame] | 448 | vim9script.c \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 449 | vim9type.c \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 450 | viminfo.c \ |
| 451 | window.c \ |
| 452 | $(GUI_SRC) \ |
Zoltan Arpadffy | 4d8cb68 | 2024-01-04 21:01:13 +0100 | [diff] [blame] | 453 | $(XDIFF_SRC) \ |
| 454 | $(LUA_SRC) \ |
| 455 | $(MZSCHEME_SRC) \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 456 | $(PERL_SRC) \ |
| 457 | $(PYTHON_SRC) \ |
Zoltan Arpadffy | 4d8cb68 | 2024-01-04 21:01:13 +0100 | [diff] [blame] | 458 | $(PYTHON3_SRC) \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 459 | $(TCL_SRC) \ |
Zoltan Arpadffy | 4d8cb68 | 2024-01-04 21:01:13 +0100 | [diff] [blame] | 460 | $(RUBY_SRC) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 461 | |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 462 | OBJ = \ |
Yegappan Lakshmanan | cbae580 | 2021-08-06 21:51:55 +0200 | [diff] [blame] | 463 | alloc.obj \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 464 | arabic.obj \ |
| 465 | arglist.obj \ |
| 466 | autocmd.obj \ |
| 467 | beval.obj \ |
| 468 | blob.obj \ |
| 469 | blowfish.obj \ |
| 470 | buffer.obj \ |
| 471 | bufwrite.obj \ |
| 472 | change.obj \ |
Zoltan Arpadffy | 1c8e233 | 2023-12-05 16:04:23 +0100 | [diff] [blame] | 473 | channel.obj \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 474 | charset.obj \ |
Bram Moolenaar | 14c01f8 | 2019-10-09 22:53:08 +0200 | [diff] [blame] | 475 | cindent.obj \ |
Bram Moolenaar | f87a040 | 2020-04-05 20:21:03 +0200 | [diff] [blame] | 476 | clientserver.obj \ |
Bram Moolenaar | 45fffdf | 2020-03-24 21:42:01 +0100 | [diff] [blame] | 477 | clipboard.obj \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 478 | cmdexpand.obj \ |
| 479 | cmdhist.obj \ |
| 480 | crypt.obj \ |
| 481 | crypt_zip.obj \ |
| 482 | debugger.obj \ |
| 483 | dict.obj \ |
| 484 | diff.obj \ |
| 485 | digraph.obj \ |
| 486 | drawline.obj \ |
| 487 | drawscreen.obj \ |
| 488 | edit.obj \ |
| 489 | eval.obj \ |
| 490 | evalbuffer.obj \ |
| 491 | evalfunc.obj \ |
| 492 | evalvars.obj \ |
| 493 | evalwindow.obj \ |
| 494 | ex_cmds.obj \ |
| 495 | ex_cmds2.obj \ |
| 496 | ex_docmd.obj \ |
| 497 | ex_eval.obj \ |
| 498 | ex_getln.obj \ |
| 499 | fileio.obj \ |
| 500 | filepath.obj \ |
| 501 | findfile.obj \ |
Yegappan Lakshmanan | 01c798c | 2021-06-02 17:07:18 +0200 | [diff] [blame] | 502 | float.obj \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 503 | fold.obj \ |
| 504 | getchar.obj \ |
Yegappan Lakshmanan | 25536f4 | 2024-05-22 16:45:04 +0200 | [diff] [blame] | 505 | gc.obj \ |
Bram Moolenaar | f15c8b6 | 2020-06-01 14:34:43 +0200 | [diff] [blame] | 506 | gui_xim.obj \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 507 | hardcopy.obj \ |
| 508 | hashtab.obj \ |
Bram Moolenaar | f868ba8 | 2020-07-21 21:07:20 +0200 | [diff] [blame] | 509 | help.obj \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 510 | highlight.obj \ |
| 511 | if_cscope.obj \ |
| 512 | if_mzsch.obj \ |
| 513 | if_xcmdsrv.obj \ |
| 514 | indent.obj \ |
| 515 | insexpand.obj \ |
Zoltan Arpadffy | 1c8e233 | 2023-12-05 16:04:23 +0100 | [diff] [blame] | 516 | job.obj \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 517 | json.obj \ |
Jonathon | 7c7a4e6 | 2025-01-12 09:58:00 +0100 | [diff] [blame] | 518 | linematch.obj \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 519 | list.obj \ |
Bram Moolenaar | 054f14b | 2020-07-22 19:11:19 +0200 | [diff] [blame] | 520 | locale.obj \ |
Bram Moolenaar | 4c5678f | 2022-11-30 18:12:19 +0000 | [diff] [blame] | 521 | logfile.obj \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 522 | main.obj \ |
| 523 | map.obj \ |
| 524 | mark.obj \ |
Bram Moolenaar | 06cf97e | 2020-06-28 13:17:26 +0200 | [diff] [blame] | 525 | match.obj \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 526 | mbyte.obj \ |
| 527 | memfile.obj \ |
| 528 | memline.obj \ |
| 529 | menu.obj \ |
| 530 | message.obj \ |
| 531 | misc1.obj \ |
| 532 | misc2.obj \ |
| 533 | mouse.obj \ |
| 534 | move.obj \ |
| 535 | normal.obj \ |
| 536 | ops.obj \ |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 537 | option.obj \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 538 | optionstr.obj \ |
| 539 | os_unix.obj \ |
| 540 | os_vms.obj \ |
| 541 | pathdef.obj \ |
| 542 | popupmenu.obj \ |
| 543 | popupwin.obj \ |
| 544 | profiler.obj \ |
Zoltan Arpadffy | 1c8e233 | 2023-12-05 16:04:23 +0100 | [diff] [blame] | 545 | pty.obj \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 546 | quickfix.obj \ |
| 547 | regexp.obj \ |
| 548 | register.obj \ |
| 549 | screen.obj \ |
| 550 | scriptfile.obj \ |
| 551 | search.obj \ |
| 552 | session.obj \ |
| 553 | sha256.obj \ |
| 554 | sign.obj \ |
Zoltan Arpadffy | 1c8e233 | 2023-12-05 16:04:23 +0100 | [diff] [blame] | 555 | sound.obj \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 556 | spell.obj \ |
| 557 | spellfile.obj \ |
| 558 | spellsuggest.obj \ |
Yegappan Lakshmanan | a243813 | 2021-07-10 21:29:18 +0200 | [diff] [blame] | 559 | strings.obj \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 560 | syntax.obj \ |
| 561 | tag.obj \ |
| 562 | term.obj \ |
Zoltan Arpadffy | 1c8e233 | 2023-12-05 16:04:23 +0100 | [diff] [blame] | 563 | terminal.obj \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 564 | termlib.obj \ |
| 565 | testing.obj \ |
Bram Moolenaar | 11abd09 | 2020-05-01 14:26:37 +0200 | [diff] [blame] | 566 | textformat.obj \ |
Bram Moolenaar | ed8ce05 | 2020-04-29 21:04:15 +0200 | [diff] [blame] | 567 | textobject.obj \ |
Bram Moolenaar | 46a426c | 2019-09-27 12:41:56 +0200 | [diff] [blame] | 568 | textprop.obj \ |
Bram Moolenaar | 0a8fed6 | 2020-02-14 13:22:17 +0100 | [diff] [blame] | 569 | time.obj \ |
Bram Moolenaar | 367d59e | 2020-05-30 17:06:14 +0200 | [diff] [blame] | 570 | typval.obj \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 571 | ui.obj \ |
| 572 | undo.obj \ |
| 573 | usercmd.obj \ |
| 574 | userfunc.obj \ |
| 575 | version.obj \ |
Bram Moolenaar | c1c365c | 2022-12-04 20:13:24 +0000 | [diff] [blame] | 576 | vim9class.obj \ |
Bram Moolenaar | dc7c366 | 2021-12-20 15:04:29 +0000 | [diff] [blame] | 577 | vim9cmds.obj \ |
Bram Moolenaar | f2cecb6 | 2020-02-13 21:59:25 +0100 | [diff] [blame] | 578 | vim9compile.obj \ |
| 579 | vim9execute.obj \ |
Bram Moolenaar | dc7c366 | 2021-12-20 15:04:29 +0000 | [diff] [blame] | 580 | vim9expr.obj \ |
| 581 | vim9instr.obj \ |
Bram Moolenaar | f2cecb6 | 2020-02-13 21:59:25 +0100 | [diff] [blame] | 582 | vim9script.obj \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 583 | vim9type.obj \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 584 | viminfo.obj \ |
| 585 | window.obj \ |
| 586 | $(GUI_OBJ) \ |
Zoltan Arpadffy | 4d8cb68 | 2024-01-04 21:01:13 +0100 | [diff] [blame] | 587 | $(XDIFF_OBJ) \ |
| 588 | $(LUA_OBJ) \ |
| 589 | $(MZSCHEME_OBJ) \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 590 | $(PERL_OBJ) \ |
| 591 | $(PYTHON_OBJ) \ |
Zoltan Arpadffy | 4d8cb68 | 2024-01-04 21:01:13 +0100 | [diff] [blame] | 592 | $(PYTHON3_OBJ) \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 593 | $(TCL_OBJ) \ |
Zoltan Arpadffy | 4d8cb68 | 2024-01-04 21:01:13 +0100 | [diff] [blame] | 594 | $(RUBY_OBJ) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 595 | |
| 596 | # Default target is making the executable |
Bram Moolenaar | 82c38fe | 2021-01-04 10:47:26 +0100 | [diff] [blame] | 597 | all : [.auto]config.h mmk_compat motif_env gtk_env perl_env python_env tcl_env ruby_env lua_env $(TARGET) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 598 | ! $@ |
| 599 | |
| 600 | [.auto]config.h : $(CONFIG_H) |
| 601 | copy/nolog $(CONFIG_H) [.auto]config.h |
Zoltan Arpadffy | 1c8e233 | 2023-12-05 16:04:23 +0100 | [diff] [blame] | 602 | -@ open/append ac [.auto]config.h |
| 603 | -@ hash[0,8]=35 |
| 604 | -@ quotes[0,8]=34 |
| 605 | -@ if ""$(DEF_MODIFIED)"" .EQS. "YES" then write ac ''hash',"define MODIFIED_BY ",''quotes',$(MODIFIED_BY),''quotes' |
| 606 | -@ close ac |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 607 | |
| 608 | mmk_compat : |
| 609 | -@ open/write pd pathdef.c |
| 610 | -@ write pd "/* Empty file to satisfy MMK depend. */" |
Bram Moolenaar | cf0dfa2 | 2007-05-10 18:52:16 +0000 | [diff] [blame] | 611 | -@ write pd "/* It will be overwritten later on... */" |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 612 | -@ close pd |
| 613 | clean : |
| 614 | -@ if "''F$SEARCH("*.exe")'" .NES. "" then delete/noconfirm/nolog *.exe;* |
| 615 | -@ if "''F$SEARCH("*.obj")'" .NES. "" then delete/noconfirm/nolog *.obj;* |
| 616 | -@ if "''F$SEARCH("[.auto]config.h")'" .NES. "" then delete/noconfirm/nolog [.auto]config.h;* |
| 617 | -@ if "''F$SEARCH("pathdef.c")'" .NES. "" then delete/noconfirm/nolog pathdef.c;* |
| 618 | -@ if "''F$SEARCH("if_perl.c")'" .NES. "" then delete/noconfirm/nolog if_perl.c;* |
| 619 | -@ if "''F$SEARCH("*.opt")'" .NES. "" then delete/noconfirm/nolog *.opt;* |
Bram Moolenaar | 467676d | 2020-12-30 13:14:45 +0100 | [diff] [blame] | 620 | -@ if "''F$SEARCH("*.dmp")'" .NES. "" then delete/noconfirm/nolog *.dmp;* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 621 | |
| 622 | # Link the target |
| 623 | $(TARGET) : $(OBJ) |
Bram Moolenaar | 0c5c3fa | 2019-11-30 22:38:16 +0100 | [diff] [blame] | 624 | # make an OPT file - as the obj file list is too long for one command line |
| 625 | -@ DIRECTORY *.OBJ. /BRIEF/COLUMNS=1/NOHEADING/NOTRAILING /SELECT=FILE=(NONODE,NODEVICE,NODIRECTORY,NOVERSION)/OUTPUT=ALL_OBJS_LIST.OPT |
| 626 | $(LD_DEF) $(LDFLAGS) /exe=$(TARGET) ALL_OBJS_LIST.OPT/OPT $(ALL_LIBS) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 627 | |
| 628 | .c.obj : |
| 629 | $(CC_DEF) $(ALL_CFLAGS) $< |
| 630 | |
| 631 | pathdef.c : check_ccver $(CONFIG_H) |
| 632 | -@ write sys$output "creating PATHDEF.C file." |
| 633 | -@ open/write pd pathdef.c |
| 634 | -@ write pd "/* pathdef.c -- DO NOT EDIT! */" |
| 635 | -@ write pd "/* This file is automatically created by MAKE_VMS.MMS" |
| 636 | -@ write pd " * Change the file MAKE_VMS.MMS Only. */" |
| 637 | -@ write pd "typedef unsigned char char_u;" |
| 638 | -@ write pd "char_u *default_vim_dir = (char_u *)"$(VIMLOC)";" |
| 639 | -@ write pd "char_u *default_vimruntime_dir = (char_u *)"$(VIMRUN)";" |
| 640 | -@ 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] | 641 | -@ 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] | 642 | -@ write pd "char_u *compiler_version = (char_u *) ""''CC_VER'"";" |
| 643 | -@ write pd "char_u *compiled_user = (char_u *) "$(VIMUSER)";" |
Bram Moolenaar | 3d20ca1 | 2006-11-28 16:43:58 +0000 | [diff] [blame] | 644 | -@ write pd "char_u *compiled_sys = (char_u *) "$(VIMHOST)";" |
| 645 | -@ write pd "char_u *compiled_arch = (char_u *) ""$(MMSARCH_NAME)"";" |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 646 | -@ close pd |
| 647 | |
| 648 | if_perl.c : if_perl.xs |
Bram Moolenaar | 0c5c3fa | 2019-11-30 22:38:16 +0100 | [diff] [blame] | 649 | -@ $(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] | 650 | |
| 651 | make_vms.mms : |
| 652 | -@ write sys$output "The name of the makefile MUST be <MAKE_VMS.MMS> !!!" |
| 653 | |
| 654 | .IFDEF CCVER |
| 655 | # This part can make some complications if you're using some predefined |
| 656 | # symbols/flags for your compiler. If does, just comment out CCVER variable |
| 657 | check_ccver : |
| 658 | -@ define sys$output cc_ver.tmp |
| 659 | -@ $(CC_DEF)/version |
| 660 | -@ deassign sys$output |
| 661 | -@ open/read file cc_ver.tmp |
| 662 | -@ read file CC_VER |
| 663 | -@ close file |
| 664 | -@ delete/noconfirm/nolog cc_ver.tmp.* |
| 665 | .ELSE |
| 666 | check_ccver : |
| 667 | -@ ! |
| 668 | .ENDIF |
| 669 | |
| 670 | .IFDEF MOTIF |
| 671 | motif_env : |
Bram Moolenaar | 8d34330 | 2005-07-12 22:46:17 +0000 | [diff] [blame] | 672 | .IFDEF XPM |
| 673 | -@ write sys$output "using DECW/Motif/XPM environment." |
Bram Moolenaar | 467676d | 2020-12-30 13:14:45 +0100 | [diff] [blame] | 674 | -@ write sys$output "creating OS_VMS_XPM.OPT file." |
| 675 | -@ open/write opt_file OS_VMS_XPM.OPT |
| 676 | .IFDEF MMSVAX |
| 677 | -@ write opt_file "[.xpm.vms.vax]libxpm.olb/lib" |
| 678 | .ENDIF |
| 679 | .IFDEF MMSALPHA |
| 680 | -@ write opt_file "[.xpm.vms.axp]libxpm.olb/lib" |
| 681 | .ENDIF |
| 682 | .IFDEF MMSIA64 |
| 683 | -@ write opt_file "[.xpm.vms.ia64]libxpm.olb/lib" |
Bram Moolenaar | 82c38fe | 2021-01-04 10:47:26 +0100 | [diff] [blame] | 684 | .ENDIF |
Bram Moolenaar | 467676d | 2020-12-30 13:14:45 +0100 | [diff] [blame] | 685 | -@ close opt_file |
Bram Moolenaar | 8d34330 | 2005-07-12 22:46:17 +0000 | [diff] [blame] | 686 | .ELSE |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 687 | -@ write sys$output "using DECW/Motif environment." |
Bram Moolenaar | 8d34330 | 2005-07-12 22:46:17 +0000 | [diff] [blame] | 688 | .ENDIF |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 689 | -@ write sys$output "creating OS_VMS_MOTIF.OPT file." |
| 690 | -@ open/write opt_file OS_VMS_MOTIF.OPT |
| 691 | -@ write opt_file "sys$share:decw$xmlibshr12.exe/share,-" |
| 692 | -@ write opt_file "sys$share:decw$xtlibshrr5.exe/share,-" |
| 693 | -@ write opt_file "sys$share:decw$xlibshr.exe/share" |
| 694 | -@ close opt_file |
| 695 | .ELSE |
| 696 | motif_env : |
| 697 | -@ ! |
| 698 | .ENDIF |
| 699 | |
| 700 | |
| 701 | .IFDEF GTK |
| 702 | gtk_env : |
| 703 | -@ write sys$output "using GTK environment:" |
| 704 | -@ define/nolog gtk_root /trans=conc $(GTK_DIR) |
| 705 | -@ show logical gtk_root |
| 706 | -@ write sys$output " include path: "$(GUI_INC)"" |
| 707 | -@ write sys$output "creating OS_VMS_GTK.OPT file." |
| 708 | -@ open/write opt_file OS_VMS_GTK.OPT |
| 709 | -@ write opt_file "gtk_root:[glib]libglib.exe /share,-" |
| 710 | -@ write opt_file "gtk_root:[glib.gmodule]libgmodule.exe /share,-" |
| 711 | -@ write opt_file "gtk_root:[gtk.gdk]libgdk.exe /share,-" |
| 712 | -@ write opt_file "gtk_root:[gtk.gtk]libgtk.exe /share,-" |
| 713 | -@ write opt_file "sys$share:decw$xmlibshr12.exe/share,-" |
| 714 | -@ write opt_file "sys$share:decw$xtlibshrr5.exe/share,-" |
| 715 | -@ write opt_file "sys$share:decw$xlibshr.exe/share" |
| 716 | -@ close opt_file |
| 717 | .ELSE |
| 718 | gtk_env : |
| 719 | -@ ! |
| 720 | .ENDIF |
| 721 | |
| 722 | .IFDEF VIM_PERL |
| 723 | perl_env : |
| 724 | -@ write sys$output "using PERL environment:" |
| 725 | -@ show logical PERLSHR |
| 726 | -@ write sys$output " include path: ""$(PERL_INC)""" |
| 727 | -@ show symbol perl |
| 728 | -@ open/write pd if_perl.c |
| 729 | -@ write pd "/* Empty file to satisfy MMK depend. */" |
Bram Moolenaar | cf0dfa2 | 2007-05-10 18:52:16 +0000 | [diff] [blame] | 730 | -@ write pd "/* It will be overwritten later on... */" |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 731 | -@ close pd |
| 732 | -@ write sys$output "creating OS_VMS_PERL.OPT file." |
| 733 | -@ open/write opt_file OS_VMS_PERL.OPT |
| 734 | -@ write opt_file "PERLSHR /share" |
| 735 | -@ close opt_file |
| 736 | .ELSE |
| 737 | perl_env : |
| 738 | -@ ! |
| 739 | .ENDIF |
| 740 | |
| 741 | .IFDEF VIM_PYTHON |
| 742 | python_env : |
| 743 | -@ write sys$output "using PYTHON environment:" |
| 744 | -@ show logical PYTHON_INCLUDE |
| 745 | -@ show logical PYTHON_OLB |
| 746 | -@ write sys$output "creating OS_VMS_PYTHON.OPT file." |
| 747 | -@ open/write opt_file OS_VMS_PYTHON.OPT |
| 748 | -@ write opt_file "PYTHON_OLB:PYTHON.OLB /share" |
| 749 | -@ close opt_file |
| 750 | .ELSE |
| 751 | python_env : |
| 752 | -@ ! |
| 753 | .ENDIF |
| 754 | |
Zoltan Arpadffy | 4d8cb68 | 2024-01-04 21:01:13 +0100 | [diff] [blame] | 755 | .IFDEF VIM_PYTHON3 |
| 756 | python3_env : |
| 757 | -@ write sys$output "using PYTHON3 environment:" |
| 758 | -@ show logical PYTHON3_INCLUDE |
| 759 | -@ show logical PYTHON3_OLB |
| 760 | -@ write sys$output "creating OS_VMS_PYTHON3.OPT file." |
| 761 | -@ open/write opt_file OS_VMS_PYTHON3.OPT |
| 762 | -@ write opt_file "PYTHON3_OLB:PYTHON3.OLB /share" |
| 763 | -@ close opt_file |
| 764 | .ELSE |
| 765 | python3_env : |
| 766 | -@ ! |
| 767 | .ENDIF |
| 768 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 769 | .IFDEF VIM_TCL |
| 770 | tcl_env : |
| 771 | -@ write sys$output "using TCL environment:" |
| 772 | -@ show logical TCLSHR |
| 773 | -@ write sys$output " include path: ""$(TCL_INC)""" |
| 774 | -@ write sys$output "creating OS_VMS_TCL.OPT file." |
| 775 | -@ open/write opt_file OS_VMS_TCL.OPT |
| 776 | -@ write opt_file "TCLSHR /share" |
| 777 | -@ close opt_file |
| 778 | .ELSE |
| 779 | tcl_env : |
| 780 | -@ ! |
| 781 | .ENDIF |
| 782 | |
| 783 | .IFDEF VIM_RUBY |
| 784 | ruby_env : |
| 785 | -@ write sys$output "using RUBY environment:" |
| 786 | -@ write sys$output " include path: ""$(RUBY_INC)""" |
| 787 | -@ write sys$output "creating OS_VMS_RUBY.OPT file." |
| 788 | -@ open/write opt_file OS_VMS_RUBY.OPT |
| 789 | -@ write opt_file "RUBYSHR /share" |
| 790 | -@ close opt_file |
| 791 | .ELSE |
| 792 | ruby_env : |
| 793 | -@ ! |
| 794 | .ENDIF |
| 795 | |
Bram Moolenaar | 82c38fe | 2021-01-04 10:47:26 +0100 | [diff] [blame] | 796 | .IFDEF VIM_LUA |
| 797 | lua_env : |
| 798 | -@ write sys$output "using LUA environment:" |
| 799 | -@ write sys$output " include path: ""$(LUA_INC)""" |
| 800 | -@ write sys$output "creating OS_VMS_LUA.OPT file." |
| 801 | -@ open/write opt_file OS_VMS_LUA.OPT |
| 802 | -@ write opt_file "LUA$ROOT:[LIB]LUA$SHR.EXE /share" |
| 803 | -@ close opt_file |
| 804 | .ELSE |
| 805 | lua_env : |
| 806 | -@ ! |
| 807 | .ENDIF |
| 808 | |
Yegappan Lakshmanan | cbae580 | 2021-08-06 21:51:55 +0200 | [diff] [blame] | 809 | alloc.obj : alloc.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 810 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h gui.h beval.h \ |
Yegappan Lakshmanan | cbae580 | 2021-08-06 21:51:55 +0200 | [diff] [blame] | 811 | [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
Bram Moolenaar | 3b98b83 | 2016-07-02 21:45:17 +0200 | [diff] [blame] | 812 | arabic.obj : arabic.c vim.h |
Bram Moolenaar | 4ad6215 | 2019-08-17 14:38:55 +0200 | [diff] [blame] | 813 | 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] | 814 | 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] | 815 | blowfish.obj : blowfish.c vim.h [.auto]config.h feature.h os_unix.h |
Bram Moolenaar | 82c38fe | 2021-01-04 10:47:26 +0100 | [diff] [blame] | 816 | 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] | 817 | buffer.obj : buffer.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 818 | ascii.h keymap.h termdefs.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 | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 820 | errors.h globals.h version.h |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 821 | bufwrite.obj : bufwrite.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 822 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
Bram Moolenaar | 473952e | 2019-09-28 16:30:04 +0200 | [diff] [blame] | 823 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 824 | errors.h globals.h |
Bram Moolenaar | ec28d15 | 2019-05-11 18:36:34 +0200 | [diff] [blame] | 825 | change.obj : change.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 826 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
Bram Moolenaar | ec28d15 | 2019-05-11 18:36:34 +0200 | [diff] [blame] | 827 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 828 | errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 829 | charset.obj : charset.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 830 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 831 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 832 | errors.h globals.h |
Zoltan Arpadffy | 1c8e233 | 2023-12-05 16:04:23 +0100 | [diff] [blame] | 833 | channel.obj : channel.c vim.h [.auto]config.h feature.h |
Bram Moolenaar | 14c01f8 | 2019-10-09 22:53:08 +0200 | [diff] [blame] | 834 | cindent.obj : cindent.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 835 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
Bram Moolenaar | 14c01f8 | 2019-10-09 22:53:08 +0200 | [diff] [blame] | 836 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 837 | errors.h globals.h |
Bram Moolenaar | f87a040 | 2020-04-05 20:21:03 +0200 | [diff] [blame] | 838 | clientserver.obj : clientserver.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 839 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
Bram Moolenaar | f87a040 | 2020-04-05 20:21:03 +0200 | [diff] [blame] | 840 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 841 | errors.h globals.h |
Bram Moolenaar | 45fffdf | 2020-03-24 21:42:01 +0100 | [diff] [blame] | 842 | clipboard.obj : clipboard.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 843 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
Bram Moolenaar | 45fffdf | 2020-03-24 21:42:01 +0100 | [diff] [blame] | 844 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 845 | errors.h globals.h |
Bram Moolenaar | 66b5142 | 2019-08-18 21:44:12 +0200 | [diff] [blame] | 846 | cmdexpand.obj : cmdexpand.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 847 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
Bram Moolenaar | 66b5142 | 2019-08-18 21:44:12 +0200 | [diff] [blame] | 848 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 849 | errors.h globals.h |
Bram Moolenaar | d7663c2 | 2019-08-06 21:59:57 +0200 | [diff] [blame] | 850 | cmdhist.obj : cmdhist.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 851 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
Bram Moolenaar | d7663c2 | 2019-08-06 21:59:57 +0200 | [diff] [blame] | 852 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 853 | errors.h globals.h |
Bram Moolenaar | de5e2c2 | 2016-11-04 20:35:31 +0100 | [diff] [blame] | 854 | crypt.obj : crypt.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 855 | ascii.h keymap.h termdefs.h macros.h option.h structs.h regexp.h gui.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 856 | beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 857 | errors.h globals.h |
Bram Moolenaar | de5e2c2 | 2016-11-04 20:35:31 +0100 | [diff] [blame] | 858 | crypt_zip.obj : crypt_zip.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 859 | ascii.h keymap.h termdefs.h macros.h option.h structs.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 860 | regexp.h gui.h beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 861 | proto.h errors.h globals.h |
Bram Moolenaar | eead75c | 2019-04-21 11:35:00 +0200 | [diff] [blame] | 862 | debugger.obj : debugger.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 863 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
Bram Moolenaar | eead75c | 2019-04-21 11:35:00 +0200 | [diff] [blame] | 864 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 865 | errors.h globals.h |
Bram Moolenaar | de5e2c2 | 2016-11-04 20:35:31 +0100 | [diff] [blame] | 866 | dict.obj : dict.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 867 | ascii.h keymap.h termdefs.h macros.h option.h structs.h regexp.h gui.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 868 | beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 869 | errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 870 | diff.obj : diff.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 871 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h gui.h beval.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 872 | [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 873 | digraph.obj : digraph.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 874 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 875 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 876 | errors.h globals.h |
Bram Moolenaar | 7528d1f | 2019-09-19 23:06:20 +0200 | [diff] [blame] | 877 | drawline.obj : drawline.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 878 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
Bram Moolenaar | 7528d1f | 2019-09-19 23:06:20 +0200 | [diff] [blame] | 879 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 880 | errors.h globals.h |
Bram Moolenaar | 7528d1f | 2019-09-19 23:06:20 +0200 | [diff] [blame] | 881 | drawscreen.obj : drawscreen.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 882 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
Bram Moolenaar | 7528d1f | 2019-09-19 23:06:20 +0200 | [diff] [blame] | 883 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 884 | errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 885 | edit.obj : edit.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 886 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h gui.h beval.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 887 | [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 888 | eval.obj : eval.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 889 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h gui.h beval.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 890 | [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
Bram Moolenaar | 261f346 | 2019-09-07 15:45:32 +0200 | [diff] [blame] | 891 | evalbuffer.obj : evalbuffer.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 892 | ascii.h keymap.h termdefs.h macros.h option.h structs.h \ |
Bram Moolenaar | 261f346 | 2019-09-07 15:45:32 +0200 | [diff] [blame] | 893 | regexp.h gui.h beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 894 | proto.h errors.h globals.h |
Bram Moolenaar | de5e2c2 | 2016-11-04 20:35:31 +0100 | [diff] [blame] | 895 | evalfunc.obj : evalfunc.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 896 | ascii.h keymap.h termdefs.h macros.h option.h structs.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 897 | regexp.h gui.h beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 898 | proto.h errors.h globals.h version.h |
Bram Moolenaar | 0522ba0 | 2019-08-27 22:48:30 +0200 | [diff] [blame] | 899 | evalvars.obj : evalvars.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 900 | ascii.h keymap.h termdefs.h macros.h option.h structs.h \ |
Bram Moolenaar | 0522ba0 | 2019-08-27 22:48:30 +0200 | [diff] [blame] | 901 | regexp.h gui.h beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 902 | proto.h errors.h globals.h version.h |
Bram Moolenaar | 261f346 | 2019-09-07 15:45:32 +0200 | [diff] [blame] | 903 | evalwindow.obj : evalwindow.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 904 | ascii.h keymap.h termdefs.h macros.h option.h structs.h \ |
Bram Moolenaar | 261f346 | 2019-09-07 15:45:32 +0200 | [diff] [blame] | 905 | regexp.h gui.h beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 906 | proto.h errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 907 | ex_cmds.obj : ex_cmds.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 908 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 909 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 910 | errors.h globals.h version.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 911 | ex_cmds2.obj : ex_cmds2.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 912 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 913 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 914 | errors.h globals.h version.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 915 | ex_docmd.obj : ex_docmd.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 916 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 917 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 918 | errors.h globals.h ex_cmdidxs.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 919 | ex_eval.obj : ex_eval.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 920 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 921 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 922 | errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 923 | ex_getln.obj : ex_getln.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 924 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 925 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 926 | errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 927 | fileio.obj : fileio.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 928 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 929 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 930 | errors.h globals.h |
Bram Moolenaar | b005cd8 | 2019-09-04 15:54:55 +0200 | [diff] [blame] | 931 | filepath.obj : filepath.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 932 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
Bram Moolenaar | b005cd8 | 2019-09-04 15:54:55 +0200 | [diff] [blame] | 933 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 934 | errors.h globals.h |
Bram Moolenaar | 5fd0f50 | 2019-02-13 23:13:28 +0100 | [diff] [blame] | 935 | findfile.obj : findfile.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 936 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
Bram Moolenaar | 5fd0f50 | 2019-02-13 23:13:28 +0100 | [diff] [blame] | 937 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 938 | errors.h globals.h |
Yegappan Lakshmanan | 01c798c | 2021-06-02 17:07:18 +0200 | [diff] [blame] | 939 | float.obj : float.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 940 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h gui.h beval.h \ |
Yegappan Lakshmanan | 01c798c | 2021-06-02 17:07:18 +0200 | [diff] [blame] | 941 | [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 942 | fold.obj : fold.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 943 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h gui.h beval.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 944 | [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 945 | getchar.obj : getchar.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 946 | ascii.h keymap.h termdefs.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 | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 948 | errors.h globals.h |
Yegappan Lakshmanan | 25536f4 | 2024-05-22 16:45:04 +0200 | [diff] [blame] | 949 | gc.obj : gc.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 950 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
| 951 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
| 952 | errors.h globals.h |
Bram Moolenaar | f15c8b6 | 2020-06-01 14:34:43 +0200 | [diff] [blame] | 953 | gui_xim.obj : gui_xim.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 954 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
Bram Moolenaar | f15c8b6 | 2020-06-01 14:34:43 +0200 | [diff] [blame] | 955 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 956 | errors.h globals.h |
Bram Moolenaar | 58d9823 | 2005-07-23 22:25:46 +0000 | [diff] [blame] | 957 | hardcopy.obj : hardcopy.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 958 | ascii.h keymap.h termdefs.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 | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 960 | errors.h globals.h version.h |
Bram Moolenaar | 76b92b2 | 2006-03-24 22:46:53 +0000 | [diff] [blame] | 961 | hashtab.obj : hashtab.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 962 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 963 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 964 | errors.h globals.h |
Bram Moolenaar | f868ba8 | 2020-07-21 21:07:20 +0200 | [diff] [blame] | 965 | help.obj : help.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 966 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
Bram Moolenaar | f868ba8 | 2020-07-21 21:07:20 +0200 | [diff] [blame] | 967 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 968 | errors.h globals.h |
Bram Moolenaar | f9cc9f2 | 2019-07-14 21:29:22 +0200 | [diff] [blame] | 969 | highlight.obj : highlight.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 970 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
Bram Moolenaar | f9cc9f2 | 2019-07-14 21:29:22 +0200 | [diff] [blame] | 971 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 972 | errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 973 | if_cscope.obj : if_cscope.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 974 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 975 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
ichizok | 4050305 | 2022-01-13 18:09:11 +0000 | [diff] [blame] | 976 | errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 977 | if_xcmdsrv.obj : if_xcmdsrv.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 978 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 979 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 980 | errors.h globals.h version.h |
Bram Moolenaar | f878bcf | 2010-07-30 22:29:41 +0200 | [diff] [blame] | 981 | if_mzsch.obj : if_mzsch.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 982 | ascii.h keymap.h termdefs.h macros.h option.h structs.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 983 | regexp.h gui.h beval.h [.proto]gui_beval.pro ex_cmds.h proto.h \ |
Bram Moolenaar | 82c38fe | 2021-01-04 10:47:26 +0100 | [diff] [blame] | 984 | errors.h globals.h if_mzsch.h |
Bram Moolenaar | 4b47162 | 2019-01-31 13:48:09 +0100 | [diff] [blame] | 985 | 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] | 986 | insexpand.obj : insexpand.c vim.h [.auto]config.h feature.h os_unix.h |
Zoltan Arpadffy | 1c8e233 | 2023-12-05 16:04:23 +0100 | [diff] [blame] | 987 | job.obj : job.c vim.h [.auto]config.h feature.h os_unix.h |
Bram Moolenaar | 520e1e4 | 2016-01-23 19:46:28 +0100 | [diff] [blame] | 988 | json.obj : json.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 989 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h gui.h beval.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 990 | [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
Jonathon | 7c7a4e6 | 2025-01-12 09:58:00 +0100 | [diff] [blame] | 991 | linematch.obj : linematch.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 992 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h gui.h beval.h \ |
| 993 | [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
Bram Moolenaar | de5e2c2 | 2016-11-04 20:35:31 +0100 | [diff] [blame] | 994 | list.obj : list.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 995 | ascii.h keymap.h termdefs.h macros.h option.h structs.h regexp.h gui.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 996 | beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 997 | errors.h globals.h |
Bram Moolenaar | 054f14b | 2020-07-22 19:11:19 +0200 | [diff] [blame] | 998 | locale.obj : locale.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 999 | ascii.h keymap.h termdefs.h macros.h option.h structs.h regexp.h gui.h \ |
Bram Moolenaar | 054f14b | 2020-07-22 19:11:19 +0200 | [diff] [blame] | 1000 | beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1001 | errors.h globals.h |
Bram Moolenaar | 4c5678f | 2022-11-30 18:12:19 +0000 | [diff] [blame] | 1002 | logfile.obj : logfile.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1003 | ascii.h keymap.h termdefs.h macros.h option.h structs.h regexp.h gui.h \ |
| 1004 | beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \ |
| 1005 | errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1006 | main.obj : main.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 1007 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h gui.h beval.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1008 | [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h \ |
Bram Moolenaar | e37368c | 2019-03-22 16:57:45 +0100 | [diff] [blame] | 1009 | arabic.c |
Bram Moolenaar | b66bab3 | 2019-08-01 14:28:24 +0200 | [diff] [blame] | 1010 | map.obj : map.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 1011 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h gui.h beval.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1012 | [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1013 | mark.obj : mark.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 1014 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h gui.h beval.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1015 | [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
Bram Moolenaar | 06cf97e | 2020-06-28 13:17:26 +0200 | [diff] [blame] | 1016 | match.obj : match.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 1017 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h gui.h beval.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1018 | [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1019 | memfile.obj : memfile.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 1020 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1021 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1022 | errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1023 | memline.obj : memline.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 1024 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1025 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1026 | errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1027 | menu.obj : menu.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 1028 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h gui.h beval.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1029 | [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1030 | message.obj : message.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 1031 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1032 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1033 | errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1034 | misc1.obj : misc1.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 1035 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h gui.h beval.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1036 | [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h \ |
Bram Moolenaar | e37368c | 2019-03-22 16:57:45 +0100 | [diff] [blame] | 1037 | version.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1038 | misc2.obj : misc2.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 1039 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h gui.h beval.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1040 | [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
Bram Moolenaar | b20b9e1 | 2019-09-21 20:48:04 +0200 | [diff] [blame] | 1041 | mouse.obj : mouse.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 1042 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h gui.h beval.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1043 | [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1044 | move.obj : move.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 1045 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h gui.h beval.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1046 | [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1047 | mbyte.obj : mbyte.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 1048 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h gui.h beval.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1049 | [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1050 | normal.obj : normal.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 1051 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1052 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
ichizok | 672776d | 2022-01-31 12:27:18 +0000 | [diff] [blame] | 1053 | errors.h globals.h nv_cmdidxs.h nv_cmds.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1054 | ops.obj : ops.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 1055 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h gui.h beval.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1056 | [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1057 | option.obj : option.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 1058 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1059 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1060 | errors.h globals.h optiondefs.h |
Bram Moolenaar | dac1347 | 2019-09-16 21:06:21 +0200 | [diff] [blame] | 1061 | optionstr.obj : optionstr.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 1062 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
Bram Moolenaar | dac1347 | 2019-09-16 21:06:21 +0200 | [diff] [blame] | 1063 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1064 | errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1065 | os_unix.obj : os_unix.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 1066 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1067 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1068 | errors.h globals.h os_unixx.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1069 | os_vms.obj : os_vms.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 1070 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1071 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1072 | errors.h globals.h os_unixx.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1073 | pathdef.obj : pathdef.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 1074 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1075 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1076 | errors.h globals.h |
Bram Moolenaar | 30e8e73 | 2019-09-27 13:08:36 +0200 | [diff] [blame] | 1077 | popupmenu.obj : popupmenu.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 1078 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1079 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1080 | errors.h globals.h |
Bram Moolenaar | 4d784b2 | 2019-05-25 19:51:39 +0200 | [diff] [blame] | 1081 | popupwin.obj : popupwin.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 1082 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
Bram Moolenaar | 4d784b2 | 2019-05-25 19:51:39 +0200 | [diff] [blame] | 1083 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1084 | errors.h globals.h |
Zoltan Arpadffy | 1c8e233 | 2023-12-05 16:04:23 +0100 | [diff] [blame] | 1085 | pty.obj : pty.c vim.h [.auto]config.h feature.h os_unix.h |
Bram Moolenaar | fa55cfc | 2019-07-13 22:59:32 +0200 | [diff] [blame] | 1086 | profiler.obj : profiler.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 1087 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
Bram Moolenaar | fa55cfc | 2019-07-13 22:59:32 +0200 | [diff] [blame] | 1088 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1089 | errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1090 | quickfix.obj : quickfix.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 1091 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1092 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1093 | errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1094 | regexp.obj : regexp.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 1095 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1096 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1097 | errors.h globals.h |
Bram Moolenaar | 4aea03e | 2019-09-25 22:37:17 +0200 | [diff] [blame] | 1098 | register.obj : register.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 1099 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
Bram Moolenaar | 4aea03e | 2019-09-25 22:37:17 +0200 | [diff] [blame] | 1100 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1101 | errors.h globals.h |
Bram Moolenaar | 307c5a5 | 2019-08-25 15:41:00 +0200 | [diff] [blame] | 1102 | scriptfile.obj : scriptfile.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 1103 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
Bram Moolenaar | 307c5a5 | 2019-08-25 15:41:00 +0200 | [diff] [blame] | 1104 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1105 | errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1106 | screen.obj : screen.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 1107 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1108 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1109 | errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1110 | search.obj : search.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 1111 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1112 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1113 | errors.h globals.h |
Bram Moolenaar | 8453807 | 2019-07-28 14:15:42 +0200 | [diff] [blame] | 1114 | session.obj : session.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 1115 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
Bram Moolenaar | 8453807 | 2019-07-28 14:15:42 +0200 | [diff] [blame] | 1116 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1117 | errors.h globals.h |
Bram Moolenaar | de5e2c2 | 2016-11-04 20:35:31 +0100 | [diff] [blame] | 1118 | sha256.obj : sha256.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 1119 | ascii.h keymap.h termdefs.h macros.h option.h structs.h regexp.h gui.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1120 | beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1121 | errors.h globals.h |
Bram Moolenaar | bbea470 | 2019-01-01 13:20:31 +0100 | [diff] [blame] | 1122 | sign.obj : sign.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 1123 | ascii.h keymap.h termdefs.h macros.h option.h structs.h regexp.h gui.h \ |
Bram Moolenaar | bbea470 | 2019-01-01 13:20:31 +0100 | [diff] [blame] | 1124 | beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1125 | errors.h globals.h |
Zoltan Arpadffy | 4d8cb68 | 2024-01-04 21:01:13 +0100 | [diff] [blame] | 1126 | sound.obj : sound.c vim.h [.auto]config.h feature.h |
Bram Moolenaar | 217ad92 | 2005-03-20 22:37:15 +0000 | [diff] [blame] | 1127 | spell.obj : spell.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 1128 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1129 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1130 | errors.h globals.h |
Bram Moolenaar | de5e2c2 | 2016-11-04 20:35:31 +0100 | [diff] [blame] | 1131 | spellfile.obj : spellfile.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 1132 | ascii.h keymap.h termdefs.h macros.h option.h structs.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1133 | regexp.h gui.h beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1134 | proto.h errors.h globals.h |
Bram Moolenaar | 46a426c | 2019-09-27 12:41:56 +0200 | [diff] [blame] | 1135 | spellsuggest.obj : spellsuggest.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 1136 | ascii.h keymap.h termdefs.h macros.h option.h structs.h \ |
Bram Moolenaar | 46a426c | 2019-09-27 12:41:56 +0200 | [diff] [blame] | 1137 | regexp.h gui.h beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1138 | proto.h errors.h globals.h |
Yegappan Lakshmanan | a243813 | 2021-07-10 21:29:18 +0200 | [diff] [blame] | 1139 | strings.obj : strings.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 1140 | ascii.h keymap.h termdefs.h macros.h option.h structs.h \ |
Yegappan Lakshmanan | a243813 | 2021-07-10 21:29:18 +0200 | [diff] [blame] | 1141 | regexp.h gui.h beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h \ |
| 1142 | proto.h errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1143 | syntax.obj : syntax.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 1144 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1145 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1146 | errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1147 | tag.obj : tag.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 1148 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h gui.h beval.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1149 | [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1150 | term.obj : term.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 1151 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h gui.h beval.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1152 | [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
Zoltan Arpadffy | 1c8e233 | 2023-12-05 16:04:23 +0100 | [diff] [blame] | 1153 | terminal.obj : terminal.c vim.h [.auto]config.h feature.h os_unix.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1154 | termlib.obj : termlib.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 1155 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h gui.h beval.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1156 | [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
Bram Moolenaar | ecaa70e | 2019-07-14 14:55:39 +0200 | [diff] [blame] | 1157 | testing.obj : testing.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 1158 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h gui.h beval.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1159 | [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
Bram Moolenaar | 11abd09 | 2020-05-01 14:26:37 +0200 | [diff] [blame] | 1160 | textformat.obj : textformat.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 1161 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h gui.h beval.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1162 | [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
Bram Moolenaar | ed8ce05 | 2020-04-29 21:04:15 +0200 | [diff] [blame] | 1163 | textobject.obj : textobject.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 1164 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h gui.h beval.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1165 | [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
Bram Moolenaar | 88c86eb | 2019-01-17 17:13:30 +0100 | [diff] [blame] | 1166 | textprop.obj : textprop.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 1167 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h gui.h beval.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1168 | [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
Bram Moolenaar | 0a8fed6 | 2020-02-14 13:22:17 +0100 | [diff] [blame] | 1169 | time.obj : time.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 1170 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h gui.h beval.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1171 | [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
Bram Moolenaar | 367d59e | 2020-05-30 17:06:14 +0200 | [diff] [blame] | 1172 | typval.obj : typval.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 1173 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h gui.h beval.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1174 | [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1175 | ui.obj : ui.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 1176 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h gui.h beval.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1177 | [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1178 | undo.obj : undo.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 1179 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h gui.h beval.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1180 | [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
Bram Moolenaar | ac9fb18 | 2019-04-27 13:04:13 +0200 | [diff] [blame] | 1181 | usercmd.obj : usercmd.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 1182 | ascii.h keymap.h termdefs.h macros.h option.h structs.h \ |
Bram Moolenaar | ac9fb18 | 2019-04-27 13:04:13 +0200 | [diff] [blame] | 1183 | regexp.h gui.h beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1184 | proto.h errors.h globals.h |
Bram Moolenaar | de5e2c2 | 2016-11-04 20:35:31 +0100 | [diff] [blame] | 1185 | userfunc.obj : userfunc.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 1186 | ascii.h keymap.h termdefs.h macros.h option.h structs.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1187 | regexp.h gui.h beval.h [.proto]gui_beval.pro alloc.h ex_cmds.h spell.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1188 | proto.h errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1189 | version.obj : version.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 1190 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1191 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1192 | errors.h globals.h version.h |
Bram Moolenaar | defa067 | 2019-07-21 19:25:37 +0200 | [diff] [blame] | 1193 | viminfo.obj : viminfo.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 1194 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
Bram Moolenaar | defa067 | 2019-07-21 19:25:37 +0200 | [diff] [blame] | 1195 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1196 | errors.h globals.h version.h |
Bram Moolenaar | c1c365c | 2022-12-04 20:13:24 +0000 | [diff] [blame] | 1197 | vim9class.obj : vim9class.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1198 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
| 1199 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
| 1200 | errors.h globals.h version.h |
Bram Moolenaar | dc7c366 | 2021-12-20 15:04:29 +0000 | [diff] [blame] | 1201 | vim9cmds.obj : vim9cmds.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1202 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
| 1203 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
| 1204 | errors.h globals.h version.h |
Bram Moolenaar | f2cecb6 | 2020-02-13 21:59:25 +0100 | [diff] [blame] | 1205 | vim9compile.obj : vim9compile.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 1206 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
Bram Moolenaar | f2cecb6 | 2020-02-13 21:59:25 +0100 | [diff] [blame] | 1207 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1208 | errors.h globals.h version.h |
Bram Moolenaar | f2cecb6 | 2020-02-13 21:59:25 +0100 | [diff] [blame] | 1209 | vim9execute.obj : vim9execute.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 1210 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
Bram Moolenaar | f2cecb6 | 2020-02-13 21:59:25 +0100 | [diff] [blame] | 1211 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1212 | errors.h globals.h version.h |
Bram Moolenaar | dc7c366 | 2021-12-20 15:04:29 +0000 | [diff] [blame] | 1213 | vim9expr.obj : vim9expr.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1214 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
| 1215 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
| 1216 | errors.h globals.h version.h |
| 1217 | vim9instr.obj : vim9instr.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1218 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
| 1219 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
| 1220 | errors.h globals.h version.h |
Bram Moolenaar | f2cecb6 | 2020-02-13 21:59:25 +0100 | [diff] [blame] | 1221 | vim9script.obj : vim9script.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 1222 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
Bram Moolenaar | f2cecb6 | 2020-02-13 21:59:25 +0100 | [diff] [blame] | 1223 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1224 | errors.h globals.h version.h |
| 1225 | vim9type.obj : vim9type.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 1226 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1227 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
| 1228 | errors.h globals.h version.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1229 | window.obj : window.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 1230 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1231 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1232 | errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1233 | gui.obj : gui.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 1234 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h gui.h beval.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1235 | [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1236 | gui_gtk.obj : gui_gtk.c gui_gtk_f.h vim.h [.auto]config.h feature.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 1237 | os_unix.h ascii.h keymap.h termdefs.h macros.h structs.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1238 | regexp.h gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1239 | proto.h errors.h globals.h [-.pixmaps]stock_icons.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1240 | gui_gtk_f.obj : gui_gtk_f.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 1241 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1242 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1243 | errors.h globals.h gui_gtk_f.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1244 | gui_motif.obj : gui_motif.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 1245 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1246 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1247 | errors.h globals.h [-.pixmaps]alert.xpm [-.pixmaps]error.xpm \ |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1248 | [-.pixmaps]generic.xpm [-.pixmaps]info.xpm [-.pixmaps]quest.xpm |
| 1249 | gui_athena.obj : gui_athena.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 1250 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1251 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1252 | errors.h globals.h gui_at_sb.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1253 | gui_gtk_x11.obj : gui_gtk_x11.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 1254 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1255 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1256 | errors.h globals.h gui_gtk_f.h [-.runtime]vim32x32.xpm \ |
Bram Moolenaar | f5f4b6c | 2019-12-14 13:17:11 +0100 | [diff] [blame] | 1257 | [-.runtime]vim16x16.xpm [-.runtime]vim48x48.xpm version.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1258 | gui_x11.obj : gui_x11.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 1259 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1260 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1261 | errors.h globals.h [-.runtime]vim32x32.xpm \ |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1262 | [-.runtime]vim16x16.xpm [-.runtime]vim48x48.xpm [-.pixmaps]tb_new.xpm \ |
| 1263 | [-.pixmaps]tb_open.xpm [-.pixmaps]tb_close.xpm [-.pixmaps]tb_save.xpm \ |
| 1264 | [-.pixmaps]tb_print.xpm [-.pixmaps]tb_cut.xpm [-.pixmaps]tb_copy.xpm \ |
| 1265 | [-.pixmaps]tb_paste.xpm [-.pixmaps]tb_find.xpm \ |
| 1266 | [-.pixmaps]tb_find_next.xpm [-.pixmaps]tb_find_prev.xpm \ |
| 1267 | [-.pixmaps]tb_find_help.xpm [-.pixmaps]tb_exit.xpm \ |
| 1268 | [-.pixmaps]tb_undo.xpm [-.pixmaps]tb_redo.xpm [-.pixmaps]tb_help.xpm \ |
| 1269 | [-.pixmaps]tb_macro.xpm [-.pixmaps]tb_make.xpm \ |
| 1270 | [-.pixmaps]tb_save_all.xpm [-.pixmaps]tb_jump.xpm \ |
| 1271 | [-.pixmaps]tb_ctags.xpm [-.pixmaps]tb_load_session.xpm \ |
| 1272 | [-.pixmaps]tb_save_session.xpm [-.pixmaps]tb_new_session.xpm \ |
| 1273 | [-.pixmaps]tb_blank.xpm [-.pixmaps]tb_maximize.xpm \ |
| 1274 | [-.pixmaps]tb_split.xpm [-.pixmaps]tb_minimize.xpm \ |
| 1275 | [-.pixmaps]tb_shell.xpm [-.pixmaps]tb_replace.xpm \ |
| 1276 | [-.pixmaps]tb_vsplit.xpm [-.pixmaps]tb_maxwidth.xpm \ |
| 1277 | [-.pixmaps]tb_minwidth.xpm |
| 1278 | gui_at_sb.obj : gui_at_sb.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 1279 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1280 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1281 | errors.h globals.h gui_at_sb.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1282 | gui_at_fs.obj : gui_at_fs.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 1283 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1284 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1285 | errors.h globals.h gui_at_sb.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1286 | pty.obj : pty.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 1287 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h gui.h beval.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1288 | [.proto]gui_beval.pro option.h ex_cmds.h proto.h errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1289 | if_perl.obj : [.auto]if_perl.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 1290 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1291 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1292 | errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1293 | if_perlsfio.obj : if_perlsfio.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 1294 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1295 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1296 | errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1297 | if_python.obj : if_python.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 1298 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1299 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1300 | errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1301 | if_tcl.obj : if_tcl.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 1302 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1303 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1304 | errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1305 | if_ruby.obj : if_ruby.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 1306 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1307 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1308 | errors.h globals.h version.h |
Bram Moolenaar | 82c38fe | 2021-01-04 10:47:26 +0100 | [diff] [blame] | 1309 | if_lua.obj : if_lua.c vim.h [.auto]config.h feature.h os_unix.h \ |
| 1310 | errors.h globals.h version.h |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1311 | beval.obj : beval.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 1312 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1313 | gui.h beval.h option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1314 | errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1315 | gui_beval.obj : gui_beval.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 1316 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1317 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1318 | errors.h globals.h |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1319 | netbeans.obj : netbeans.c vim.h [.auto]config.h feature.h os_unix.h \ |
Bram Moolenaar | b3a2955 | 2021-11-19 11:28:04 +0000 | [diff] [blame] | 1320 | ascii.h keymap.h termdefs.h macros.h structs.h regexp.h \ |
Bram Moolenaar | c3719bd | 2017-11-18 22:13:31 +0100 | [diff] [blame] | 1321 | gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \ |
Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1322 | errors.h globals.h version.h |
Bram Moolenaar | 88c86eb | 2019-01-17 17:13:30 +0100 | [diff] [blame] | 1323 | gui_xmdlg.obj : gui_xmdlg.c [.auto]config.h vim.h feature.h os_unix.h |
| 1324 | gui_xmebw.obj : gui_xmebw.c [.auto]config.h vim.h feature.h os_unix.h |
| 1325 | xdiffi.obj : [.xdiff]xdiffi.c [.xdiff]xinclude.h [.auto]config.h vim.h feature.h os_unix.h |
| 1326 | xemit.obj : [.xdiff]xemit.c [.xdiff]xinclude.h [.auto]config.h vim.h feature.h os_unix.h |
| 1327 | xprepare.obj : [.xdiff]xprepare.c [.xdiff]xinclude.h [.auto]config.h vim.h feature.h os_unix.h |
| 1328 | xutils.obj : [.xdiff]xutils.c [.xdiff]xinclude.h [.auto]config.h vim.h feature.h os_unix.h |
| 1329 | xhistogram.obj : [.xdiff]xhistogram.c [.xdiff]xinclude.h [.auto]config.h vim.h feature.h os_unix.h |
Bram Moolenaar | 82c38fe | 2021-01-04 10:47:26 +0100 | [diff] [blame] | 1330 | xpatience.obj : [.xdiff]xpatience.c [.xdiff]xinclude.h [.auto]config.h vim.h feature.h os_unix.h |