comparison src/Makefile @ 16381:1dcbaa780b8e v8.1.1195

patch 8.1.1195: Vim script debugger functionality needs cleanup commit https://github.com/vim/vim/commit/eead75c5e8e1f965548c55ee3a9388b2cb3afc36 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Apr 21 11:35:00 2019 +0200 patch 8.1.1195: Vim script debugger functionality needs cleanup Problem: Vim script debugger functionality needs cleanup. Solution: Move debugger code to a separate file. Add more tests. (Yegappan Lakshmanan, closes #4285)
author Bram Moolenaar <Bram@vim.org>
date Sun, 21 Apr 2019 11:45:07 +0200
parents ffa791471a4c
children 1edd94a2252a
comparison
equal deleted inserted replaced
16380:5ad204d8a2f2 16381:1dcbaa780b8e
1577 blowfish.c \ 1577 blowfish.c \
1578 buffer.c \ 1578 buffer.c \
1579 charset.c \ 1579 charset.c \
1580 crypt.c \ 1580 crypt.c \
1581 crypt_zip.c \ 1581 crypt_zip.c \
1582 debugger.c \
1582 dict.c \ 1583 dict.c \
1583 diff.c \ 1584 diff.c \
1584 digraph.c \ 1585 digraph.c \
1585 edit.c \ 1586 edit.c \
1586 eval.c \ 1587 eval.c \
1691 objects/buffer.o \ 1692 objects/buffer.o \
1692 objects/blob.o \ 1693 objects/blob.o \
1693 objects/blowfish.o \ 1694 objects/blowfish.o \
1694 objects/crypt.o \ 1695 objects/crypt.o \
1695 objects/crypt_zip.o \ 1696 objects/crypt_zip.o \
1697 objects/debugger.o \
1696 objects/dict.o \ 1698 objects/dict.o \
1697 objects/diff.o \ 1699 objects/diff.o \
1698 objects/digraph.o \ 1700 objects/digraph.o \
1699 objects/edit.o \ 1701 objects/edit.o \
1700 objects/eval.o \ 1702 objects/eval.o \
1818 blowfish.pro \ 1820 blowfish.pro \
1819 buffer.pro \ 1821 buffer.pro \
1820 charset.pro \ 1822 charset.pro \
1821 crypt.pro \ 1823 crypt.pro \
1822 crypt_zip.pro \ 1824 crypt_zip.pro \
1825 debugger.pro \
1823 dict.pro \ 1826 dict.pro \
1824 diff.pro \ 1827 diff.pro \
1825 digraph.pro \ 1828 digraph.pro \
1826 edit.pro \ 1829 edit.pro \
1827 eval.pro \ 1830 eval.pro \
2961 $(CCC) -o $@ crypt.c 2964 $(CCC) -o $@ crypt.c
2962 2965
2963 objects/crypt_zip.o: crypt_zip.c 2966 objects/crypt_zip.o: crypt_zip.c
2964 $(CCC) -o $@ crypt_zip.c 2967 $(CCC) -o $@ crypt_zip.c
2965 2968
2969 objects/debugger.o: debugger.c
2970 $(CCC) -o $@ debugger.c
2971
2966 objects/dict.o: dict.c 2972 objects/dict.o: dict.c
2967 $(CCC) -o $@ dict.c 2973 $(CCC) -o $@ dict.c
2968 2974
2969 objects/diff.o: diff.c $(XDIFF_INCL) 2975 objects/diff.o: diff.c $(XDIFF_INCL)
2970 $(CCC) -o $@ diff.c 2976 $(CCC) -o $@ diff.c
3423 proto.h globals.h 3429 proto.h globals.h
3424 objects/crypt_zip.o: crypt_zip.c vim.h protodef.h auto/config.h feature.h \ 3430 objects/crypt_zip.o: crypt_zip.c vim.h protodef.h auto/config.h feature.h \
3425 os_unix.h auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3431 os_unix.h 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 \ 3432 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3427 proto.h globals.h 3433 proto.h globals.h
3434 objects/debugger.o: debugger.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3435 os_mac.h ascii.h keymap.h term.h macros.h option.h beval.h structs.h \
3436 regexp.h gui.h alloc.h ex_cmds.h spell.h proto.h globals.h
3428 objects/dict.o: dict.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3437 objects/dict.o: dict.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 \ 3438 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 \ 3439 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3431 proto.h globals.h 3440 proto.h globals.h
3432 objects/diff.o: diff.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3441 objects/diff.o: diff.c vim.h protodef.h auto/config.h feature.h os_unix.h \