comparison src/Makefile @ 14734:2c72fa16aa70 v8.1.0379

patch 8.1.0379: build dependencies are incomplete commit https://github.com/vim/vim/commit/78dcd4f002c41fff9c15434336f57210edc384f2 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Sep 13 17:23:28 2018 +0200 patch 8.1.0379: build dependencies are incomplete Problem: Build dependencies are incomplete. Solution: Update the build dependencies, mainly for xdiff. Adjust object directory for libvterm and xdiff.
author Christian Brabandt <cb@256bit.org>
date Thu, 13 Sep 2018 17:30:05 +0200
parents 195e8b1fcbbf
children 485487e34784
comparison
equal deleted inserted replaced
14733:15d60eacdbc8 14734:2c72fa16aa70
1469 MKDIR_P = $(SHELL) install-sh -c -d 1469 MKDIR_P = $(SHELL) install-sh -c -d
1470 1470
1471 .SUFFIXES: 1471 .SUFFIXES:
1472 .SUFFIXES: .c .o .pro 1472 .SUFFIXES: .c .o .pro
1473 1473
1474 VTERM_CFLAGS = -Ilibvterm/include
1475
1474 PRE_DEFS = -Iproto $(DEFS) $(GUI_DEFS) $(GUI_IPATH) $(CPPFLAGS) $(EXTRA_IPATHS) 1476 PRE_DEFS = -Iproto $(DEFS) $(GUI_DEFS) $(GUI_IPATH) $(CPPFLAGS) $(EXTRA_IPATHS)
1475 POST_DEFS = $(X_CFLAGS) $(MZSCHEME_CFLAGS) $(EXTRA_DEFS) 1477 POST_DEFS = $(X_CFLAGS) $(MZSCHEME_CFLAGS) $(EXTRA_DEFS)
1476 1478
1477 ALL_CFLAGS = $(PRE_DEFS) $(CFLAGS) $(PROFILE_CFLAGS) $(SANITIZER_CFLAGS) $(LEAK_CFLAGS) $(ABORT_CLFAGS) $(POST_DEFS) 1479 ALL_CFLAGS = $(PRE_DEFS) $(CFLAGS) $(PROFILE_CFLAGS) $(SANITIZER_CFLAGS) $(LEAK_CFLAGS) $(ABORT_CLFAGS) $(POST_DEFS)
1478 1480
1479 # Exclude $CFLAGS for osdef.sh, for Mac 10.4 some flags don't work together 1481 # Exclude $CFLAGS for osdef.sh, for Mac 10.4 some flags don't work together
1480 # with "-E". 1482 # with "-E".
1481 OSDEF_CFLAGS = $(PRE_DEFS) $(POST_DEFS) 1483 OSDEF_CFLAGS = $(PRE_DEFS) $(POST_DEFS)
1482 1484
1483 LINT_CFLAGS = -DLINT -I. $(PRE_DEFS) $(POST_DEFS) $(RUBY_CFLAGS) $(LUA_CFLAGS) $(PERL_CFLAGS) $(PYTHON_CFLAGS) $(PYTHON3_CFLAGS) $(TCL_CFLAGS) -Dinline= -D__extension__= -Dalloca=alloca 1485 LINT_CFLAGS = -DLINT -I. $(PRE_DEFS) $(POST_DEFS) \
1486 $(RUBY_CFLAGS) $(LUA_CFLAGS) $(PERL_CFLAGS) $(PYTHON_CFLAGS) \
1487 $(PYTHON3_CFLAGS) $(TCL_CFLAGS) $(VTERM_CFLAGS) \
1488 -Dinline= -D__extension__= -Dalloca=alloca
1484 1489
1485 LINT_EXTRA = -DHANGUL_INPUT -D"__attribute__(x)=" 1490 LINT_EXTRA = -DHANGUL_INPUT -D"__attribute__(x)="
1486 1491
1487 DEPEND_CFLAGS = -DPROTO -DDEPEND -DFEAT_GUI $(LINT_CFLAGS) 1492 DEPEND_CFLAGS = -DPROTO -DDEPEND -DFEAT_GUI $(LINT_CFLAGS)
1488 1493
1669 UNITTEST_SRC = $(JSON_TEST_SRC) $(KWORD_TEST_SRC) $(MEMFILE_TEST_SRC) $(MESSAGE_TEST_SRC) 1674 UNITTEST_SRC = $(JSON_TEST_SRC) $(KWORD_TEST_SRC) $(MEMFILE_TEST_SRC) $(MESSAGE_TEST_SRC)
1670 UNITTEST_TARGETS = $(JSON_TEST_TARGET) $(KWORD_TEST_TARGET) $(MEMFILE_TEST_TARGET) $(MESSAGE_TEST_TARGET) 1675 UNITTEST_TARGETS = $(JSON_TEST_TARGET) $(KWORD_TEST_TARGET) $(MEMFILE_TEST_TARGET) $(MESSAGE_TEST_TARGET)
1671 RUN_UNITTESTS = run_json_test run_kword_test run_memfile_test run_message_test 1676 RUN_UNITTESTS = run_json_test run_kword_test run_memfile_test run_message_test
1672 1677
1673 # All sources, also the ones that are not configured 1678 # All sources, also the ones that are not configured
1674 ALL_SRC = $(BASIC_SRC) $(ALL_GUI_SRC) $(UNITTEST_SRC) $(EXTRA_SRC) 1679 ALL_SRC = $(BASIC_SRC) $(ALL_GUI_SRC) $(UNITTEST_SRC) \
1680 $(EXTRA_SRC) $(TERM_SRC) $(XDIFF_SRC)
1675 1681
1676 # Which files to check with lint. Select one of these three lines. ALL_SRC 1682 # Which files to check with lint. Select one of these three lines. ALL_SRC
1677 # checks more, but may not work well for checking a GUI that wasn't configured. 1683 # checks more, but may not work well for checking a GUI that wasn't configured.
1678 # The perl sources also don't work well with lint. 1684 # The perl sources also don't work well with lint.
1679 LINT_SRC = $(BASIC_SRC) $(GUI_SRC) $(HANGULIN_SRC) \ 1685 LINT_SRC = $(BASIC_SRC) $(GUI_SRC) $(HANGULIN_SRC) \
3223 $(CCC) -o $@ channel.c 3229 $(CCC) -o $@ channel.c
3224 3230
3225 Makefile: 3231 Makefile:
3226 @echo The name of the makefile MUST be "Makefile" (with capital M)!!!! 3232 @echo The name of the makefile MUST be "Makefile" (with capital M)!!!!
3227 3233
3228 CCCTERM = $(CCC_NF) -Ilibvterm/include $(ALL_CFLAGS) -DINLINE="" \ 3234 CCCTERM = $(CCC_NF) $(VTERM_CFLAGS) $(ALL_CFLAGS) -DINLINE="" \
3229 -DVSNPRINTF=vim_vsnprintf \ 3235 -DVSNPRINTF=vim_vsnprintf \
3230 -DIS_COMBINING_FUNCTION=utf_iscomposing_uint \ 3236 -DIS_COMBINING_FUNCTION=utf_iscomposing_uint \
3231 -DWCWIDTH_FUNCTION=utf_uint2cells 3237 -DWCWIDTH_FUNCTION=utf_uint2cells
3232 3238
3233 objects/term_encoding.o: libvterm/src/encoding.c $(TERM_DEPS) 3239 objects/encoding.o: libvterm/src/encoding.c $(TERM_DEPS)
3234 $(CCCTERM) -o $@ libvterm/src/encoding.c 3240 $(CCCTERM) -o $@ libvterm/src/encoding.c
3235 3241
3236 objects/term_keyboard.o: libvterm/src/keyboard.c $(TERM_DEPS) 3242 objects/keyboard.o: libvterm/src/keyboard.c $(TERM_DEPS)
3237 $(CCCTERM) -o $@ libvterm/src/keyboard.c 3243 $(CCCTERM) -o $@ libvterm/src/keyboard.c
3238 3244
3239 objects/term_mouse.o: libvterm/src/mouse.c $(TERM_DEPS) 3245 objects/mouse.o: libvterm/src/mouse.c $(TERM_DEPS)
3240 $(CCCTERM) -o $@ libvterm/src/mouse.c 3246 $(CCCTERM) -o $@ libvterm/src/mouse.c
3241 3247
3242 objects/term_parser.o: libvterm/src/parser.c $(TERM_DEPS) 3248 objects/parser.o: libvterm/src/parser.c $(TERM_DEPS)
3243 $(CCCTERM) -o $@ libvterm/src/parser.c 3249 $(CCCTERM) -o $@ libvterm/src/parser.c
3244 3250
3245 objects/term_pen.o: libvterm/src/pen.c $(TERM_DEPS) 3251 objects/pen.o: libvterm/src/pen.c $(TERM_DEPS)
3246 $(CCCTERM) -o $@ libvterm/src/pen.c 3252 $(CCCTERM) -o $@ libvterm/src/pen.c
3247 3253
3248 objects/term_screen.o: libvterm/src/screen.c $(TERM_DEPS) 3254 objects/termscreen.o: libvterm/src/termscreen.c $(TERM_DEPS)
3249 $(CCCTERM) -o $@ libvterm/src/screen.c 3255 $(CCCTERM) -o $@ libvterm/src/termscreen.c
3250 3256
3251 objects/term_state.o: libvterm/src/state.c $(TERM_DEPS) 3257 objects/state.o: libvterm/src/state.c $(TERM_DEPS)
3252 $(CCCTERM) -o $@ libvterm/src/state.c 3258 $(CCCTERM) -o $@ libvterm/src/state.c
3253 3259
3254 objects/term_unicode.o: libvterm/src/unicode.c $(TERM_DEPS) 3260 objects/unicode.o: libvterm/src/unicode.c $(TERM_DEPS)
3255 $(CCCTERM) -o $@ libvterm/src/unicode.c 3261 $(CCCTERM) -o $@ libvterm/src/unicode.c
3256 3262
3257 objects/term_vterm.o: libvterm/src/vterm.c $(TERM_DEPS) 3263 objects/vterm.o: libvterm/src/vterm.c $(TERM_DEPS)
3258 $(CCCTERM) -o $@ libvterm/src/vterm.c 3264 $(CCCTERM) -o $@ libvterm/src/vterm.c
3259 3265
3260 CCCDIFF = $(CCC_NF) $(ALL_CFLAGS) 3266 CCCDIFF = $(CCC_NF) $(ALL_CFLAGS)
3261 3267
3262 objects/xdiffi.o: xdiff/xdiffi.c $(XDIFF_INCL) 3268 objects/xdiffi.o: xdiff/xdiffi.c $(XDIFF_INCL)
3361 3367
3362 3368
3363 ############################################################################### 3369 ###############################################################################
3364 ### (automatically generated by 'make depend') 3370 ### (automatically generated by 'make depend')
3365 ### Dependencies: 3371 ### Dependencies:
3366 objects/arabic.o: arabic.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ 3372 objects/arabic.o: arabic.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3367 ascii.h keymap.h term.h macros.h option.h beval.h proto/gui_beval.pro \ 3373 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3368 structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h proto.h globals.h \ 3374 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3369 farsi.h arabic.h 3375 proto.h globals.h farsi.h arabic.h
3370 objects/beval.o: beval.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ 3376 objects/beval.o: beval.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3371 ascii.h keymap.h term.h macros.h option.h beval.h proto/gui_beval.pro \ 3377 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3372 structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h proto.h globals.h \ 3378 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3373 farsi.h arabic.h 3379 proto.h globals.h farsi.h arabic.h
3374 objects/blowfish.o: blowfish.c vim.h auto/config.h feature.h os_unix.h \ 3380 objects/blowfish.o: blowfish.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3375 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3381 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3376 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3382 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3377 proto.h globals.h farsi.h arabic.h 3383 proto.h globals.h farsi.h arabic.h
3378 objects/buffer.o: buffer.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ 3384 objects/buffer.o: buffer.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3379 ascii.h keymap.h term.h macros.h option.h beval.h proto/gui_beval.pro \
3380 structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h proto.h globals.h \
3381 farsi.h arabic.h version.h
3382 objects/charset.o: charset.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \
3383 ascii.h keymap.h term.h macros.h option.h beval.h proto/gui_beval.pro \
3384 structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h proto.h globals.h \
3385 farsi.h arabic.h
3386 objects/crypt.o: crypt.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \
3387 ascii.h keymap.h term.h macros.h option.h beval.h proto/gui_beval.pro \
3388 structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h proto.h globals.h \
3389 farsi.h arabic.h
3390 objects/crypt_zip.o: crypt_zip.c vim.h auto/config.h feature.h os_unix.h \
3391 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3392 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3393 proto.h globals.h farsi.h arabic.h
3394 objects/dict.o: dict.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \
3395 ascii.h keymap.h term.h macros.h option.h beval.h proto/gui_beval.pro \
3396 structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h proto.h globals.h \
3397 farsi.h arabic.h
3398 objects/diff.o: diff.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \
3399 ascii.h keymap.h term.h macros.h option.h beval.h proto/gui_beval.pro \
3400 structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h proto.h globals.h \
3401 farsi.h arabic.h
3402 objects/digraph.o: digraph.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \
3403 ascii.h keymap.h term.h macros.h option.h beval.h proto/gui_beval.pro \
3404 structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h proto.h globals.h \
3405 farsi.h arabic.h
3406 objects/edit.o: edit.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \
3407 ascii.h keymap.h term.h macros.h option.h beval.h proto/gui_beval.pro \
3408 structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h proto.h globals.h \
3409 farsi.h arabic.h
3410 objects/eval.o: eval.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \
3411 ascii.h keymap.h term.h macros.h option.h beval.h proto/gui_beval.pro \
3412 structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h proto.h globals.h \
3413 farsi.h arabic.h version.h
3414 objects/evalfunc.o: evalfunc.c vim.h auto/config.h feature.h os_unix.h \
3415 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3385 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3416 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3386 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3417 proto.h globals.h farsi.h arabic.h version.h 3387 proto.h globals.h farsi.h arabic.h version.h
3418 objects/ex_cmds.o: ex_cmds.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ 3388 objects/charset.o: charset.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3419 ascii.h keymap.h term.h macros.h option.h beval.h proto/gui_beval.pro \ 3389 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3420 structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h proto.h globals.h \ 3390 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3421 farsi.h arabic.h version.h 3391 proto.h globals.h farsi.h arabic.h
3422 objects/ex_cmds2.o: ex_cmds2.c vim.h auto/config.h feature.h os_unix.h \ 3392 objects/crypt.o: crypt.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3393 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3394 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3395 proto.h globals.h farsi.h arabic.h
3396 objects/crypt_zip.o: crypt_zip.c vim.h protodef.h auto/config.h feature.h \
3397 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3398 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3399 proto.h globals.h farsi.h arabic.h
3400 objects/dict.o: dict.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3401 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3402 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3403 proto.h globals.h farsi.h arabic.h
3404 objects/diff.o: diff.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3405 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3406 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3407 proto.h globals.h farsi.h arabic.h xdiff/xdiff.h xdiff/../vim.h
3408 objects/digraph.o: digraph.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3409 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3410 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3411 proto.h globals.h farsi.h arabic.h
3412 objects/edit.o: edit.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3413 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3414 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3415 proto.h globals.h farsi.h arabic.h
3416 objects/eval.o: eval.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3423 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3417 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3424 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3418 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3425 proto.h globals.h farsi.h arabic.h version.h 3419 proto.h globals.h farsi.h arabic.h version.h
3426 objects/ex_docmd.o: ex_docmd.c vim.h auto/config.h feature.h os_unix.h \ 3420 objects/evalfunc.o: evalfunc.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3421 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3422 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3423 proto.h globals.h farsi.h arabic.h version.h
3424 objects/ex_cmds.o: ex_cmds.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3425 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3426 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3427 proto.h globals.h farsi.h arabic.h version.h
3428 objects/ex_cmds2.o: ex_cmds2.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3429 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3430 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3431 proto.h globals.h farsi.h arabic.h version.h
3432 objects/ex_docmd.o: ex_docmd.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3427 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3433 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3428 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3434 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3429 proto.h globals.h farsi.h arabic.h ex_cmdidxs.h 3435 proto.h globals.h farsi.h arabic.h ex_cmdidxs.h
3430 objects/ex_eval.o: ex_eval.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ 3436 objects/ex_eval.o: ex_eval.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3431 ascii.h keymap.h term.h macros.h option.h beval.h proto/gui_beval.pro \ 3437 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3432 structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h proto.h globals.h \ 3438 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3433 farsi.h arabic.h 3439 proto.h globals.h farsi.h arabic.h
3434 objects/ex_getln.o: ex_getln.c vim.h auto/config.h feature.h os_unix.h \ 3440 objects/ex_getln.o: ex_getln.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3435 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3441 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3436 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3442 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3437 proto.h globals.h farsi.h arabic.h 3443 proto.h globals.h farsi.h arabic.h
3438 objects/farsi.o: farsi.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ 3444 objects/farsi.o: farsi.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3439 ascii.h keymap.h term.h macros.h option.h beval.h proto/gui_beval.pro \ 3445 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3440 structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h proto.h globals.h \ 3446 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3441 farsi.h arabic.h 3447 proto.h globals.h farsi.h arabic.h
3442 objects/fileio.o: fileio.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ 3448 objects/fileio.o: fileio.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3443 ascii.h keymap.h term.h macros.h option.h beval.h proto/gui_beval.pro \ 3449 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3444 structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h proto.h globals.h \ 3450 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3445 farsi.h arabic.h 3451 proto.h globals.h farsi.h arabic.h
3446 objects/fold.o: fold.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ 3452 objects/fold.o: fold.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3447 ascii.h keymap.h term.h macros.h option.h beval.h proto/gui_beval.pro \ 3453 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3448 structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h proto.h globals.h \ 3454 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3449 farsi.h arabic.h 3455 proto.h globals.h farsi.h arabic.h
3450 objects/getchar.o: getchar.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ 3456 objects/getchar.o: getchar.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3451 ascii.h keymap.h term.h macros.h option.h beval.h proto/gui_beval.pro \ 3457 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3452 structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h proto.h globals.h \ 3458 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3453 farsi.h arabic.h 3459 proto.h globals.h farsi.h arabic.h
3454 objects/hardcopy.o: hardcopy.c vim.h auto/config.h feature.h os_unix.h \ 3460 objects/hardcopy.o: hardcopy.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3455 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3461 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3456 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3462 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3457 proto.h globals.h farsi.h arabic.h version.h 3463 proto.h globals.h farsi.h arabic.h version.h
3458 objects/hashtab.o: hashtab.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ 3464 objects/hashtab.o: hashtab.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3459 ascii.h keymap.h term.h macros.h option.h beval.h proto/gui_beval.pro \ 3465 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3460 structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h proto.h globals.h \ 3466 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3461 farsi.h arabic.h 3467 proto.h globals.h farsi.h arabic.h
3462 objects/if_cscope.o: if_cscope.c vim.h auto/config.h feature.h os_unix.h \ 3468 objects/if_cscope.o: if_cscope.c vim.h protodef.h auto/config.h feature.h \
3463 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3469 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3464 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3470 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3465 proto.h globals.h farsi.h arabic.h if_cscope.h 3471 proto.h globals.h farsi.h arabic.h if_cscope.h
3466 objects/if_xcmdsrv.o: if_xcmdsrv.c vim.h auto/config.h feature.h os_unix.h \ 3472 objects/if_xcmdsrv.o: if_xcmdsrv.c vim.h protodef.h auto/config.h feature.h \
3467 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3473 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3468 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3474 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3469 proto.h globals.h farsi.h arabic.h version.h 3475 proto.h globals.h farsi.h arabic.h version.h
3470 objects/json.o: json.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ 3476 objects/json.o: json.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3471 ascii.h keymap.h term.h macros.h option.h beval.h proto/gui_beval.pro \ 3477 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3472 structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h proto.h globals.h \ 3478 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3473 farsi.h arabic.h 3479 proto.h globals.h farsi.h arabic.h
3474 objects/list.o: list.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ 3480 objects/list.o: list.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3475 ascii.h keymap.h term.h macros.h option.h beval.h proto/gui_beval.pro \ 3481 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3476 structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h proto.h globals.h \ 3482 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3477 farsi.h arabic.h 3483 proto.h globals.h farsi.h arabic.h
3478 objects/main.o: main.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ 3484 objects/main.o: main.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3479 ascii.h keymap.h term.h macros.h option.h beval.h proto/gui_beval.pro \ 3485 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3480 structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h proto.h globals.h \ 3486 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3481 farsi.h arabic.h 3487 proto.h globals.h farsi.h arabic.h
3482 objects/mark.o: mark.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ 3488 objects/mark.o: mark.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3483 ascii.h keymap.h term.h macros.h option.h beval.h proto/gui_beval.pro \ 3489 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3484 structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h proto.h globals.h \ 3490 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3485 farsi.h arabic.h 3491 proto.h globals.h farsi.h arabic.h
3486 objects/memfile.o: memfile.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ 3492 objects/memfile.o: memfile.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3487 ascii.h keymap.h term.h macros.h option.h beval.h proto/gui_beval.pro \ 3493 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3488 structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h proto.h globals.h \ 3494 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3489 farsi.h arabic.h 3495 proto.h globals.h farsi.h arabic.h
3490 objects/memline.o: memline.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ 3496 objects/memline.o: memline.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3491 ascii.h keymap.h term.h macros.h option.h beval.h proto/gui_beval.pro \ 3497 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3492 structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h proto.h globals.h \ 3498 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3493 farsi.h arabic.h 3499 proto.h globals.h farsi.h arabic.h
3494 objects/menu.o: menu.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ 3500 objects/menu.o: menu.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3495 ascii.h keymap.h term.h macros.h option.h beval.h proto/gui_beval.pro \ 3501 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3496 structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h proto.h globals.h \ 3502 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3497 farsi.h arabic.h 3503 proto.h globals.h farsi.h arabic.h
3498 objects/message.o: message.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ 3504 objects/message.o: message.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3499 ascii.h keymap.h term.h macros.h option.h beval.h proto/gui_beval.pro \ 3505 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3500 structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h proto.h globals.h \ 3506 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3501 farsi.h arabic.h 3507 proto.h globals.h farsi.h arabic.h
3502 objects/misc1.o: misc1.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ 3508 objects/misc1.o: misc1.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3503 ascii.h keymap.h term.h macros.h option.h beval.h proto/gui_beval.pro \ 3509 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3504 structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h proto.h globals.h \ 3510 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3505 farsi.h arabic.h version.h 3511 proto.h globals.h farsi.h arabic.h version.h
3506 objects/misc2.o: misc2.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ 3512 objects/misc2.o: misc2.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3507 ascii.h keymap.h term.h macros.h option.h beval.h proto/gui_beval.pro \ 3513 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3508 structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h proto.h globals.h \ 3514 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3509 farsi.h arabic.h 3515 proto.h globals.h farsi.h arabic.h
3510 objects/move.o: move.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ 3516 objects/move.o: move.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3511 ascii.h keymap.h term.h macros.h option.h beval.h proto/gui_beval.pro \ 3517 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3512 structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h proto.h globals.h \ 3518 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3513 farsi.h arabic.h 3519 proto.h globals.h farsi.h arabic.h
3514 objects/mbyte.o: mbyte.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ 3520 objects/mbyte.o: mbyte.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3515 ascii.h keymap.h term.h macros.h option.h beval.h proto/gui_beval.pro \ 3521 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3516 structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h proto.h globals.h \ 3522 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3517 farsi.h arabic.h 3523 proto.h globals.h farsi.h arabic.h
3518 objects/normal.o: normal.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ 3524 objects/normal.o: normal.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3519 ascii.h keymap.h term.h macros.h option.h beval.h proto/gui_beval.pro \ 3525 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3520 structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h proto.h globals.h \ 3526 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3521 farsi.h arabic.h 3527 proto.h globals.h farsi.h arabic.h
3522 objects/ops.o: ops.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h ascii.h \ 3528 objects/ops.o: ops.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3523 keymap.h term.h macros.h option.h beval.h proto/gui_beval.pro structs.h \ 3529 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3524 regexp.h gui.h alloc.h ex_cmds.h spell.h proto.h globals.h farsi.h \ 3530 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3525 arabic.h 3531 proto.h globals.h farsi.h arabic.h
3526 objects/option.o: option.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ 3532 objects/option.o: option.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3527 ascii.h keymap.h term.h macros.h option.h beval.h proto/gui_beval.pro \ 3533 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3528 structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h proto.h globals.h \ 3534 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3529 farsi.h arabic.h 3535 proto.h globals.h farsi.h arabic.h
3530 objects/os_unix.o: os_unix.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ 3536 objects/os_unix.o: os_unix.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3531 ascii.h keymap.h term.h macros.h option.h beval.h proto/gui_beval.pro \ 3537 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3532 structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h proto.h globals.h \ 3538 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3533 farsi.h arabic.h if_mzsch.h os_unixx.h 3539 proto.h globals.h farsi.h arabic.h os_unixx.h
3534 objects/pathdef.o: auto/pathdef.c vim.h auto/config.h feature.h os_unix.h \ 3540 objects/pathdef.o: auto/pathdef.c vim.h protodef.h auto/config.h feature.h \
3535 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3541 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3536 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3542 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3537 proto.h globals.h farsi.h arabic.h 3543 proto.h globals.h farsi.h arabic.h
3538 objects/popupmnu.o: popupmnu.c vim.h auto/config.h feature.h os_unix.h \ 3544 objects/popupmnu.o: popupmnu.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3539 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3545 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3540 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3546 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3541 proto.h globals.h farsi.h arabic.h 3547 proto.h globals.h farsi.h arabic.h
3542 objects/pty.o: pty.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h ascii.h \ 3548 objects/pty.o: pty.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3543 keymap.h term.h macros.h option.h beval.h proto/gui_beval.pro structs.h \ 3549 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3544 regexp.h gui.h alloc.h ex_cmds.h spell.h proto.h globals.h farsi.h \ 3550 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3545 arabic.h 3551 proto.h globals.h farsi.h arabic.h
3546 objects/quickfix.o: quickfix.c vim.h auto/config.h feature.h os_unix.h \ 3552 objects/quickfix.o: quickfix.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3547 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3553 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3548 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3554 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3549 proto.h globals.h farsi.h arabic.h 3555 proto.h globals.h farsi.h arabic.h
3550 objects/regexp.o: regexp.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ 3556 objects/regexp.o: regexp.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3551 ascii.h keymap.h term.h macros.h option.h beval.h proto/gui_beval.pro \ 3557 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3552 structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h proto.h globals.h \ 3558 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3553 farsi.h arabic.h regexp_nfa.c 3559 proto.h globals.h farsi.h arabic.h regexp_nfa.c
3554 objects/screen.o: screen.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ 3560 objects/screen.o: screen.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3555 ascii.h keymap.h term.h macros.h option.h beval.h proto/gui_beval.pro \ 3561 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3556 structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h proto.h globals.h \ 3562 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3557 farsi.h arabic.h 3563 proto.h globals.h farsi.h arabic.h
3558 objects/search.o: search.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ 3564 objects/search.o: search.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3559 ascii.h keymap.h term.h macros.h option.h beval.h proto/gui_beval.pro \ 3565 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3560 structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h proto.h globals.h \ 3566 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3561 farsi.h arabic.h 3567 proto.h globals.h farsi.h arabic.h
3562 objects/sha256.o: sha256.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ 3568 objects/sha256.o: sha256.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3563 ascii.h keymap.h term.h macros.h option.h beval.h proto/gui_beval.pro \ 3569 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3564 structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h proto.h globals.h \ 3570 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3565 farsi.h arabic.h 3571 proto.h globals.h farsi.h arabic.h
3566 objects/spell.o: spell.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ 3572 objects/spell.o: spell.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3567 ascii.h keymap.h term.h macros.h option.h beval.h proto/gui_beval.pro \ 3573 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3568 structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h proto.h globals.h \ 3574 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3569 farsi.h arabic.h 3575 proto.h globals.h farsi.h arabic.h
3570 objects/spellfile.o: spellfile.c vim.h auto/config.h feature.h os_unix.h \ 3576 objects/spellfile.o: spellfile.c vim.h protodef.h auto/config.h feature.h \
3571 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3577 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3572 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3578 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3573 proto.h globals.h farsi.h arabic.h 3579 proto.h globals.h farsi.h arabic.h
3574 objects/syntax.o: syntax.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ 3580 objects/syntax.o: syntax.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3575 ascii.h keymap.h term.h macros.h option.h beval.h proto/gui_beval.pro \ 3581 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3576 structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h proto.h globals.h \ 3582 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3577 farsi.h arabic.h 3583 proto.h globals.h farsi.h arabic.h
3578 objects/tag.o: tag.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h ascii.h \ 3584 objects/tag.o: tag.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3579 keymap.h term.h macros.h option.h beval.h proto/gui_beval.pro structs.h \ 3585 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3580 regexp.h gui.h alloc.h ex_cmds.h spell.h proto.h globals.h farsi.h \ 3586 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3581 arabic.h 3587 proto.h globals.h farsi.h arabic.h
3582 objects/term.o: term.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ 3588 objects/term.o: term.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3583 ascii.h keymap.h term.h macros.h option.h beval.h proto/gui_beval.pro \
3584 structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h proto.h globals.h \
3585 farsi.h arabic.h libvterm/include/vterm.h \
3586 libvterm/include/vterm_keycodes.h
3587 objects/terminal.o: terminal.c vim.h auto/config.h feature.h os_unix.h \
3588 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3589 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3589 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3590 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3590 proto.h globals.h farsi.h arabic.h libvterm/include/vterm.h \ 3591 proto.h globals.h farsi.h arabic.h libvterm/include/vterm.h \
3591 libvterm/include/vterm_keycodes.h 3592 libvterm/include/vterm_keycodes.h
3592 objects/ui.o: ui.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h ascii.h \ 3593 objects/terminal.o: terminal.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3593 keymap.h term.h macros.h option.h beval.h proto/gui_beval.pro structs.h \ 3594 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3594 regexp.h gui.h alloc.h ex_cmds.h spell.h proto.h globals.h farsi.h \ 3595 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3595 arabic.h 3596 proto.h globals.h farsi.h arabic.h libvterm/include/vterm.h \
3596 objects/undo.o: undo.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ 3597 libvterm/include/vterm_keycodes.h
3597 ascii.h keymap.h term.h macros.h option.h beval.h proto/gui_beval.pro \ 3598 objects/ui.o: ui.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3598 structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h proto.h globals.h \ 3599 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3599 farsi.h arabic.h 3600 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3600 objects/userfunc.o: userfunc.c vim.h auto/config.h feature.h os_unix.h \ 3601 proto.h globals.h farsi.h arabic.h
3601 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3602 objects/undo.o: undo.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3602 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3603 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3603 proto.h globals.h farsi.h arabic.h 3604 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3604 objects/version.o: version.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ 3605 proto.h globals.h farsi.h arabic.h
3605 ascii.h keymap.h term.h macros.h option.h beval.h proto/gui_beval.pro \ 3606 objects/userfunc.o: userfunc.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3606 structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h proto.h globals.h \ 3607 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3607 farsi.h arabic.h version.h 3608 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3608 objects/window.o: window.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ 3609 proto.h globals.h farsi.h arabic.h
3609 ascii.h keymap.h term.h macros.h option.h beval.h proto/gui_beval.pro \ 3610 objects/version.o: version.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3610 structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h proto.h globals.h \ 3611 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3611 farsi.h arabic.h 3612 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3612 objects/gui.o: gui.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h ascii.h \ 3613 proto.h globals.h farsi.h arabic.h version.h
3613 keymap.h term.h macros.h option.h beval.h proto/gui_beval.pro structs.h \ 3614 objects/window.o: window.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3614 regexp.h gui.h alloc.h ex_cmds.h spell.h proto.h globals.h farsi.h \ 3615 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3615 arabic.h 3616 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3616 objects/gui_gtk.o: gui_gtk.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ 3617 proto.h globals.h farsi.h arabic.h
3617 ascii.h keymap.h term.h macros.h option.h beval.h proto/gui_beval.pro \ 3618 objects/gui.o: gui.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3618 structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h proto.h globals.h \ 3619 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3619 farsi.h arabic.h gui_gtk_f.h 3620 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3620 objects/gui_gtk_f.o: gui_gtk_f.c vim.h auto/config.h feature.h os_unix.h \ 3621 proto.h globals.h farsi.h arabic.h
3622 objects/gui_gtk.o: gui_gtk.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3621 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3623 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3622 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3624 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3623 proto.h globals.h farsi.h arabic.h gui_gtk_f.h 3625 proto.h globals.h farsi.h arabic.h gui_gtk_f.h
3624 objects/gui_motif.o: gui_motif.c vim.h auto/config.h feature.h os_unix.h \ 3626 objects/gui_gtk_f.o: gui_gtk_f.c vim.h protodef.h auto/config.h feature.h \
3625 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3627 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3628 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3629 proto.h globals.h farsi.h arabic.h gui_gtk_f.h
3630 objects/gui_motif.o: gui_motif.c vim.h protodef.h auto/config.h feature.h \
3631 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3626 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3632 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3627 proto.h globals.h farsi.h arabic.h gui_xmebw.h ../pixmaps/alert.xpm \ 3633 proto.h globals.h farsi.h arabic.h gui_xmebw.h ../pixmaps/alert.xpm \
3628 ../pixmaps/error.xpm ../pixmaps/generic.xpm ../pixmaps/info.xpm \ 3634 ../pixmaps/error.xpm ../pixmaps/generic.xpm ../pixmaps/info.xpm \
3629 ../pixmaps/quest.xpm gui_x11_pm.h ../pixmaps/tb_new.xpm \ 3635 ../pixmaps/quest.xpm gui_x11_pm.h ../pixmaps/tb_new.xpm \
3630 ../pixmaps/tb_open.xpm ../pixmaps/tb_close.xpm ../pixmaps/tb_save.xpm \ 3636 ../pixmaps/tb_open.xpm ../pixmaps/tb_close.xpm ../pixmaps/tb_save.xpm \
3640 ../pixmaps/tb_blank.xpm ../pixmaps/tb_maximize.xpm \ 3646 ../pixmaps/tb_blank.xpm ../pixmaps/tb_maximize.xpm \
3641 ../pixmaps/tb_split.xpm ../pixmaps/tb_minimize.xpm \ 3647 ../pixmaps/tb_split.xpm ../pixmaps/tb_minimize.xpm \
3642 ../pixmaps/tb_shell.xpm ../pixmaps/tb_replace.xpm \ 3648 ../pixmaps/tb_shell.xpm ../pixmaps/tb_replace.xpm \
3643 ../pixmaps/tb_vsplit.xpm ../pixmaps/tb_maxwidth.xpm \ 3649 ../pixmaps/tb_vsplit.xpm ../pixmaps/tb_maxwidth.xpm \
3644 ../pixmaps/tb_minwidth.xpm 3650 ../pixmaps/tb_minwidth.xpm
3645 objects/gui_xmdlg.o: gui_xmdlg.c vim.h auto/config.h feature.h os_unix.h \ 3651 objects/gui_xmdlg.o: gui_xmdlg.c vim.h protodef.h auto/config.h feature.h \
3646 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3652 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3647 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3653 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3648 proto.h globals.h farsi.h arabic.h 3654 proto.h globals.h farsi.h arabic.h
3649 objects/gui_xmebw.o: gui_xmebw.c vim.h auto/config.h feature.h os_unix.h \ 3655 objects/gui_xmebw.o: gui_xmebw.c vim.h protodef.h auto/config.h feature.h \
3650 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3656 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3651 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3657 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3652 proto.h globals.h farsi.h arabic.h gui_xmebwp.h gui_xmebw.h 3658 proto.h globals.h farsi.h arabic.h gui_xmebwp.h gui_xmebw.h
3653 objects/gui_athena.o: gui_athena.c vim.h auto/config.h feature.h os_unix.h \ 3659 objects/gui_athena.o: gui_athena.c vim.h protodef.h auto/config.h feature.h \
3654 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3660 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3655 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3661 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3656 proto.h globals.h farsi.h arabic.h gui_at_sb.h gui_x11_pm.h \ 3662 proto.h globals.h farsi.h arabic.h gui_at_sb.h gui_x11_pm.h \
3657 ../pixmaps/tb_new.xpm ../pixmaps/tb_open.xpm ../pixmaps/tb_close.xpm \ 3663 ../pixmaps/tb_new.xpm ../pixmaps/tb_open.xpm ../pixmaps/tb_close.xpm \
3658 ../pixmaps/tb_save.xpm ../pixmaps/tb_print.xpm ../pixmaps/tb_cut.xpm \ 3664 ../pixmaps/tb_save.xpm ../pixmaps/tb_print.xpm ../pixmaps/tb_cut.xpm \
3659 ../pixmaps/tb_copy.xpm ../pixmaps/tb_paste.xpm ../pixmaps/tb_find.xpm \ 3665 ../pixmaps/tb_copy.xpm ../pixmaps/tb_paste.xpm ../pixmaps/tb_find.xpm \
3667 ../pixmaps/tb_blank.xpm ../pixmaps/tb_maximize.xpm \ 3673 ../pixmaps/tb_blank.xpm ../pixmaps/tb_maximize.xpm \
3668 ../pixmaps/tb_split.xpm ../pixmaps/tb_minimize.xpm \ 3674 ../pixmaps/tb_split.xpm ../pixmaps/tb_minimize.xpm \
3669 ../pixmaps/tb_shell.xpm ../pixmaps/tb_replace.xpm \ 3675 ../pixmaps/tb_shell.xpm ../pixmaps/tb_replace.xpm \
3670 ../pixmaps/tb_vsplit.xpm ../pixmaps/tb_maxwidth.xpm \ 3676 ../pixmaps/tb_vsplit.xpm ../pixmaps/tb_maxwidth.xpm \
3671 ../pixmaps/tb_minwidth.xpm 3677 ../pixmaps/tb_minwidth.xpm
3672 objects/gui_gtk_x11.o: gui_gtk_x11.c vim.h auto/config.h feature.h os_unix.h \ 3678 objects/gui_gtk_x11.o: gui_gtk_x11.c vim.h protodef.h auto/config.h feature.h \
3673 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3679 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3674 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3680 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3675 proto.h globals.h farsi.h arabic.h auto/gui_gtk_gresources.h gui_gtk_f.h \ 3681 proto.h globals.h farsi.h arabic.h auto/gui_gtk_gresources.h gui_gtk_f.h \
3676 ../runtime/vim32x32.xpm ../runtime/vim16x16.xpm ../runtime/vim48x48.xpm 3682 ../runtime/vim32x32.xpm ../runtime/vim16x16.xpm ../runtime/vim48x48.xpm
3677 objects/gui_x11.o: gui_x11.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ 3683 objects/gui_x11.o: gui_x11.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3678 ascii.h keymap.h term.h macros.h option.h beval.h proto/gui_beval.pro \ 3684 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3679 structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h proto.h globals.h \ 3685 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3680 farsi.h arabic.h ../runtime/vim32x32.xpm ../runtime/vim16x16.xpm \ 3686 proto.h globals.h farsi.h arabic.h ../runtime/vim32x32.xpm \
3681 ../runtime/vim48x48.xpm 3687 ../runtime/vim16x16.xpm ../runtime/vim48x48.xpm
3682 objects/gui_at_sb.o: gui_at_sb.c vim.h auto/config.h feature.h os_unix.h \ 3688 objects/gui_at_sb.o: gui_at_sb.c vim.h protodef.h auto/config.h feature.h \
3683 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3689 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3684 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3690 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3685 proto.h globals.h farsi.h arabic.h gui_at_sb.h 3691 proto.h globals.h farsi.h arabic.h gui_at_sb.h
3686 objects/gui_at_fs.o: gui_at_fs.c vim.h auto/config.h feature.h os_unix.h \ 3692 objects/gui_at_fs.o: gui_at_fs.c vim.h protodef.h auto/config.h feature.h \
3687 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3693 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3688 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3694 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3689 proto.h globals.h farsi.h arabic.h gui_at_sb.h 3695 proto.h globals.h farsi.h arabic.h gui_at_sb.h
3690 objects/json_test.o: json_test.c main.c vim.h auto/config.h feature.h os_unix.h \ 3696 objects/json_test.o: json_test.c main.c vim.h protodef.h auto/config.h feature.h \
3691 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3697 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3692 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3698 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3693 proto.h globals.h farsi.h arabic.h json.c 3699 proto.h globals.h farsi.h arabic.h json.c
3694 objects/kword_test.o: kword_test.c main.c vim.h auto/config.h feature.h os_unix.h \ 3700 objects/kword_test.o: kword_test.c main.c vim.h protodef.h auto/config.h \
3695 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3701 feature.h os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h \
3696 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3702 option.h beval.h proto/gui_beval.pro structs.h regexp.h gui.h alloc.h \
3697 proto.h globals.h farsi.h arabic.h charset.c 3703 ex_cmds.h spell.h proto.h globals.h farsi.h arabic.h charset.c
3698 objects/memfile_test.o: memfile_test.c main.c vim.h auto/config.h feature.h \ 3704 objects/memfile_test.o: memfile_test.c main.c vim.h protodef.h auto/config.h \
3705 feature.h os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h \
3706 option.h beval.h proto/gui_beval.pro structs.h regexp.h gui.h alloc.h \
3707 ex_cmds.h spell.h proto.h globals.h farsi.h arabic.h memfile.c
3708 objects/message_test.o: message_test.c main.c vim.h protodef.h auto/config.h \
3709 feature.h os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h \
3710 option.h beval.h proto/gui_beval.pro structs.h regexp.h gui.h alloc.h \
3711 ex_cmds.h spell.h proto.h globals.h farsi.h arabic.h message.c
3712 objects/hangulin.o: hangulin.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3713 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3714 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3715 proto.h globals.h farsi.h arabic.h
3716 objects/if_lua.o: if_lua.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3717 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3718 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3719 proto.h globals.h farsi.h arabic.h
3720 objects/if_mzsch.o: if_mzsch.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3721 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3722 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3723 proto.h globals.h farsi.h arabic.h if_mzsch.h
3724 objects/if_perl.o: auto/if_perl.c vim.h protodef.h auto/config.h feature.h \
3699 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3725 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3700 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3726 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3701 proto.h globals.h farsi.h arabic.h memfile.c 3727 proto.h globals.h farsi.h arabic.h
3702 objects/message_test.o: message_test.c main.c vim.h auto/config.h feature.h \ 3728 objects/if_perlsfio.o: if_perlsfio.c vim.h protodef.h auto/config.h feature.h \
3703 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3729 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3704 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3730 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3705 proto.h globals.h farsi.h arabic.h message.c 3731 proto.h globals.h farsi.h arabic.h
3706 objects/hangulin.o: hangulin.c vim.h auto/config.h feature.h os_unix.h \ 3732 objects/if_python.o: if_python.c vim.h protodef.h auto/config.h feature.h \
3707 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3733 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3708 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3709 proto.h globals.h farsi.h arabic.h
3710 objects/if_lua.o: if_lua.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \
3711 ascii.h keymap.h term.h macros.h option.h beval.h proto/gui_beval.pro \
3712 structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h proto.h globals.h \
3713 farsi.h arabic.h
3714 objects/if_mzsch.o: if_mzsch.c vim.h auto/config.h feature.h os_unix.h \
3715 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3716 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3717 proto.h globals.h farsi.h arabic.h if_mzsch.h mzscheme_base.c
3718 objects/if_perl.o: auto/if_perl.c vim.h auto/config.h feature.h os_unix.h \
3719 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3720 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3721 proto.h globals.h farsi.h arabic.h
3722 objects/if_perlsfio.o: if_perlsfio.c vim.h auto/config.h feature.h os_unix.h \
3723 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3724 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3725 proto.h globals.h farsi.h arabic.h
3726 objects/if_python.o: if_python.c vim.h auto/config.h feature.h os_unix.h \
3727 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3728 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3734 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3729 proto.h globals.h farsi.h arabic.h if_py_both.h 3735 proto.h globals.h farsi.h arabic.h if_py_both.h
3730 objects/if_python3.o: if_python3.c vim.h auto/config.h feature.h os_unix.h \ 3736 objects/if_python3.o: if_python3.c vim.h protodef.h auto/config.h feature.h \
3731 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3737 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3732 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3738 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3733 proto.h globals.h farsi.h arabic.h if_py_both.h 3739 proto.h globals.h farsi.h arabic.h if_py_both.h
3734 objects/if_tcl.o: if_tcl.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ 3740 objects/if_tcl.o: if_tcl.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3735 ascii.h keymap.h term.h macros.h option.h beval.h proto/gui_beval.pro \ 3741 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3736 structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h proto.h globals.h \ 3742 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3737 farsi.h arabic.h 3743 proto.h globals.h farsi.h arabic.h
3738 objects/if_ruby.o: if_ruby.c auto/config.h vim.h feature.h os_unix.h auto/osdef.h \ 3744 objects/if_ruby.o: if_ruby.c protodef.h auto/config.h vim.h feature.h os_unix.h \
3739 ascii.h keymap.h term.h macros.h option.h beval.h proto/gui_beval.pro \ 3745 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3740 structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h proto.h globals.h \ 3746 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3741 farsi.h arabic.h version.h 3747 proto.h globals.h farsi.h arabic.h version.h
3742 objects/gui_beval.o: gui_beval.c vim.h auto/config.h feature.h os_unix.h \ 3748 objects/gui_beval.o: gui_beval.c vim.h protodef.h auto/config.h feature.h \
3743 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3744 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3745 proto.h globals.h farsi.h arabic.h
3746 objects/workshop.o: workshop.c auto/config.h integration.h vim.h feature.h \
3747 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3749 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3748 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3750 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3749 proto.h globals.h farsi.h arabic.h version.h workshop.h 3751 proto.h globals.h farsi.h arabic.h
3752 objects/workshop.o: workshop.c protodef.h auto/config.h integration.h vim.h \
3753 feature.h os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h \
3754 option.h beval.h proto/gui_beval.pro structs.h regexp.h gui.h alloc.h \
3755 ex_cmds.h spell.h proto.h globals.h farsi.h arabic.h version.h \
3756 workshop.h
3750 objects/wsdebug.o: wsdebug.c 3757 objects/wsdebug.o: wsdebug.c
3751 objects/integration.o: integration.c vim.h auto/config.h feature.h os_unix.h \ 3758 objects/integration.o: integration.c vim.h protodef.h auto/config.h feature.h \
3752 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3759 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3753 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3760 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3754 proto.h globals.h farsi.h arabic.h integration.h 3761 proto.h globals.h farsi.h arabic.h integration.h
3755 objects/netbeans.o: netbeans.c vim.h auto/config.h feature.h os_unix.h \ 3762 objects/netbeans.o: netbeans.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3756 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3763 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3757 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3764 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3758 proto.h globals.h farsi.h arabic.h version.h 3765 proto.h globals.h farsi.h arabic.h version.h
3759 objects/channel.o: channel.c vim.h auto/config.h feature.h os_unix.h auto/osdef.h \ 3766 objects/channel.o: channel.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3760 ascii.h keymap.h term.h macros.h option.h beval.h proto/gui_beval.pro \ 3767 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3761 structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h proto.h globals.h \ 3768 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3762 farsi.h arabic.h 3769 proto.h globals.h farsi.h arabic.h
3763 objects/gui_gtk_gresources.o: auto/gui_gtk_gresources.c 3770 objects/gui_gtk_gresources.o: auto/gui_gtk_gresources.c
3771 objects/encoding.o: libvterm/src/encoding.c libvterm/src/vterm_internal.h \
3772 libvterm/include/vterm.h libvterm/include/vterm_keycodes.h \
3773 libvterm/src/encoding/DECdrawing.inc libvterm/src/encoding/uk.inc
3774 objects/keyboard.o: libvterm/src/keyboard.c libvterm/src/vterm_internal.h \
3775 libvterm/include/vterm.h libvterm/include/vterm_keycodes.h \
3776 libvterm/src/utf8.h
3777 objects/mouse.o: libvterm/src/mouse.c libvterm/src/vterm_internal.h \
3778 libvterm/include/vterm.h libvterm/include/vterm_keycodes.h \
3779 libvterm/src/utf8.h
3780 objects/parser.o: libvterm/src/parser.c libvterm/src/vterm_internal.h \
3781 libvterm/include/vterm.h libvterm/include/vterm_keycodes.h
3782 objects/pen.o: libvterm/src/pen.c libvterm/src/vterm_internal.h \
3783 libvterm/include/vterm.h libvterm/include/vterm_keycodes.h
3784 objects/state.o: libvterm/src/state.c libvterm/src/vterm_internal.h \
3785 libvterm/include/vterm.h libvterm/include/vterm_keycodes.h
3786 objects/termscreen.o: libvterm/src/termscreen.c libvterm/src/vterm_internal.h \
3787 libvterm/include/vterm.h libvterm/include/vterm_keycodes.h \
3788 libvterm/src/rect.h libvterm/src/utf8.h
3789 objects/unicode.o: libvterm/src/unicode.c libvterm/src/vterm_internal.h \
3790 libvterm/include/vterm.h libvterm/include/vterm_keycodes.h
3791 objects/vterm.o: libvterm/src/vterm.c libvterm/src/vterm_internal.h \
3792 libvterm/include/vterm.h libvterm/include/vterm_keycodes.h \
3793 libvterm/src/utf8.h
3794 objects/xdiffi.o: xdiff/xdiffi.c xdiff/xinclude.h xdiff/../auto/config.h \
3795 xdiff/xmacros.h xdiff/xdiff.h xdiff/../vim.h xdiff/../protodef.h \
3796 xdiff/../auto/config.h xdiff/../feature.h xdiff/../os_unix.h \
3797 xdiff/../auto/osdef.h xdiff/../ascii.h xdiff/../keymap.h xdiff/../term.h \
3798 xdiff/../macros.h xdiff/../option.h xdiff/../beval.h proto/gui_beval.pro \
3799 xdiff/../structs.h xdiff/../regexp.h xdiff/../gui.h xdiff/../alloc.h \
3800 xdiff/../ex_cmds.h xdiff/../spell.h xdiff/../proto.h xdiff/../globals.h \
3801 xdiff/../farsi.h xdiff/../arabic.h xdiff/xtypes.h xdiff/xutils.h \
3802 xdiff/xprepare.h xdiff/xdiffi.h xdiff/xemit.h
3803 objects/xemit.o: xdiff/xemit.c xdiff/xinclude.h xdiff/../auto/config.h \
3804 xdiff/xmacros.h xdiff/xdiff.h xdiff/../vim.h xdiff/../protodef.h \
3805 xdiff/../auto/config.h xdiff/../feature.h xdiff/../os_unix.h \
3806 xdiff/../auto/osdef.h xdiff/../ascii.h xdiff/../keymap.h xdiff/../term.h \
3807 xdiff/../macros.h xdiff/../option.h xdiff/../beval.h proto/gui_beval.pro \
3808 xdiff/../structs.h xdiff/../regexp.h xdiff/../gui.h xdiff/../alloc.h \
3809 xdiff/../ex_cmds.h xdiff/../spell.h xdiff/../proto.h xdiff/../globals.h \
3810 xdiff/../farsi.h xdiff/../arabic.h xdiff/xtypes.h xdiff/xutils.h \
3811 xdiff/xprepare.h xdiff/xdiffi.h xdiff/xemit.h
3812 objects/xprepare.o: xdiff/xprepare.c xdiff/xinclude.h xdiff/../auto/config.h \
3813 xdiff/xmacros.h xdiff/xdiff.h xdiff/../vim.h xdiff/../protodef.h \
3814 xdiff/../auto/config.h xdiff/../feature.h xdiff/../os_unix.h \
3815 xdiff/../auto/osdef.h xdiff/../ascii.h xdiff/../keymap.h xdiff/../term.h \
3816 xdiff/../macros.h xdiff/../option.h xdiff/../beval.h proto/gui_beval.pro \
3817 xdiff/../structs.h xdiff/../regexp.h xdiff/../gui.h xdiff/../alloc.h \
3818 xdiff/../ex_cmds.h xdiff/../spell.h xdiff/../proto.h xdiff/../globals.h \
3819 xdiff/../farsi.h xdiff/../arabic.h xdiff/xtypes.h xdiff/xutils.h \
3820 xdiff/xprepare.h xdiff/xdiffi.h xdiff/xemit.h
3821 objects/xutils.o: xdiff/xutils.c xdiff/xinclude.h xdiff/../auto/config.h \
3822 xdiff/xmacros.h xdiff/xdiff.h xdiff/../vim.h xdiff/../protodef.h \
3823 xdiff/../auto/config.h xdiff/../feature.h xdiff/../os_unix.h \
3824 xdiff/../auto/osdef.h xdiff/../ascii.h xdiff/../keymap.h xdiff/../term.h \
3825 xdiff/../macros.h xdiff/../option.h xdiff/../beval.h proto/gui_beval.pro \
3826 xdiff/../structs.h xdiff/../regexp.h xdiff/../gui.h xdiff/../alloc.h \
3827 xdiff/../ex_cmds.h xdiff/../spell.h xdiff/../proto.h xdiff/../globals.h \
3828 xdiff/../farsi.h xdiff/../arabic.h xdiff/xtypes.h xdiff/xutils.h \
3829 xdiff/xprepare.h xdiff/xdiffi.h xdiff/xemit.h
3830 objects/xhistogram.o: xdiff/xhistogram.c xdiff/xinclude.h xdiff/../auto/config.h \
3831 xdiff/xmacros.h xdiff/xdiff.h xdiff/../vim.h xdiff/../protodef.h \
3832 xdiff/../auto/config.h xdiff/../feature.h xdiff/../os_unix.h \
3833 xdiff/../auto/osdef.h xdiff/../ascii.h xdiff/../keymap.h xdiff/../term.h \
3834 xdiff/../macros.h xdiff/../option.h xdiff/../beval.h proto/gui_beval.pro \
3835 xdiff/../structs.h xdiff/../regexp.h xdiff/../gui.h xdiff/../alloc.h \
3836 xdiff/../ex_cmds.h xdiff/../spell.h xdiff/../proto.h xdiff/../globals.h \
3837 xdiff/../farsi.h xdiff/../arabic.h xdiff/xtypes.h xdiff/xutils.h \
3838 xdiff/xprepare.h xdiff/xdiffi.h xdiff/xemit.h
3839 objects/xpatience.o: xdiff/xpatience.c xdiff/xinclude.h xdiff/../auto/config.h \
3840 xdiff/xmacros.h xdiff/xdiff.h xdiff/../vim.h xdiff/../protodef.h \
3841 xdiff/../auto/config.h xdiff/../feature.h xdiff/../os_unix.h \
3842 xdiff/../auto/osdef.h xdiff/../ascii.h xdiff/../keymap.h xdiff/../term.h \
3843 xdiff/../macros.h xdiff/../option.h xdiff/../beval.h proto/gui_beval.pro \
3844 xdiff/../structs.h xdiff/../regexp.h xdiff/../gui.h xdiff/../alloc.h \
3845 xdiff/../ex_cmds.h xdiff/../spell.h xdiff/../proto.h xdiff/../globals.h \
3846 xdiff/../farsi.h xdiff/../arabic.h xdiff/xtypes.h xdiff/xutils.h \
3847 xdiff/xprepare.h xdiff/xdiffi.h xdiff/xemit.h