comparison src/Makefile @ 18265:fe5afdc03bd2 v8.1.2127

patch 8.1.2127: the indent.c file is a bit big Commit: https://github.com/vim/vim/commit/14c01f83487d5c53192297a710eda2b8a4ab17c9 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Oct 9 22:53:08 2019 +0200 patch 8.1.2127: the indent.c file is a bit big Problem: The indent.c file is a bit big. Solution: Move C-indent code a a new cindent.c file. Move other indent-related code to indent.c. (Yegappan Lakshmanan, closes #5031)
author Bram Moolenaar <Bram@vim.org>
date Wed, 09 Oct 2019 23:00:04 +0200
parents e2be5a6485f5
children da6a7491e148
comparison
equal deleted inserted replaced
18264:5202d9b99bee 18265:fe5afdc03bd2
1583 blob.c \ 1583 blob.c \
1584 blowfish.c \ 1584 blowfish.c \
1585 buffer.c \ 1585 buffer.c \
1586 change.c \ 1586 change.c \
1587 charset.c \ 1587 charset.c \
1588 cindent.c \
1588 cmdexpand.c \ 1589 cmdexpand.c \
1589 cmdhist.c \ 1590 cmdhist.c \
1590 crypt.c \ 1591 crypt.c \
1591 crypt_zip.c \ 1592 crypt_zip.c \
1592 debugger.c \ 1593 debugger.c \
1723 objects/beval.o \ 1724 objects/beval.o \
1724 objects/buffer.o \ 1725 objects/buffer.o \
1725 objects/change.o \ 1726 objects/change.o \
1726 objects/blob.o \ 1727 objects/blob.o \
1727 objects/blowfish.o \ 1728 objects/blowfish.o \
1729 objects/cindent.o \
1728 objects/cmdexpand.o \ 1730 objects/cmdexpand.o \
1729 objects/cmdhist.o \ 1731 objects/cmdhist.o \
1730 objects/crypt.o \ 1732 objects/crypt.o \
1731 objects/crypt_zip.o \ 1733 objects/crypt_zip.o \
1732 objects/debugger.o \ 1734 objects/debugger.o \
1876 autocmd.pro \ 1878 autocmd.pro \
1877 blowfish.pro \ 1879 blowfish.pro \
1878 buffer.pro \ 1880 buffer.pro \
1879 change.pro \ 1881 change.pro \
1880 charset.pro \ 1882 charset.pro \
1883 cindent.pro \
1881 cmdexpand.pro \ 1884 cmdexpand.pro \
1882 cmdhist.pro \ 1885 cmdhist.pro \
1883 crypt.pro \ 1886 crypt.pro \
1884 crypt_zip.pro \ 1887 crypt_zip.pro \
1885 debugger.pro \ 1888 debugger.pro \
3079 $(CCC) -o $@ change.c 3082 $(CCC) -o $@ change.c
3080 3083
3081 objects/charset.o: charset.c 3084 objects/charset.o: charset.c
3082 $(CCC) -o $@ charset.c 3085 $(CCC) -o $@ charset.c
3083 3086
3087 objects/cindent.o: cindent.c
3088 $(CCC) -o $@ cindent.c
3089
3084 objects/cmdexpand.o: cmdexpand.c 3090 objects/cmdexpand.o: cmdexpand.c
3085 $(CCC) -o $@ cmdexpand.c 3091 $(CCC) -o $@ cmdexpand.c
3086 3092
3087 objects/cmdhist.o: cmdhist.c 3093 objects/cmdhist.o: cmdhist.c
3088 $(CCC) -o $@ cmdhist.c 3094 $(CCC) -o $@ cmdhist.c
3616 objects/change.o: change.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3622 objects/change.o: change.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3617 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 \
3618 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 \
3619 proto.h globals.h version.h 3625 proto.h globals.h version.h
3620 objects/charset.o: charset.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3626 objects/charset.o: charset.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3627 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
3630 objects/cindent.o: cindent.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 \ 3631 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 \ 3632 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3623 proto.h globals.h 3633 proto.h globals.h
3624 objects/cmdexpand.o: cmdexpand.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3634 objects/cmdexpand.o: cmdexpand.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3625 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3635 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \