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