comparison src/Makefile @ 15454:1d2b5c016f17 v8.1.0735

patch 8.1.0735: cannot handle binary data commit https://github.com/vim/vim/commit/6e5ea8d2a995b32bbc5972edc4f827b959f2702f Author: Bram Moolenaar <Bram@vim.org> Date: Sat Jan 12 22:47:31 2019 +0100 patch 8.1.0735: cannot handle binary data Problem: Cannot handle binary data. Solution: Add the Blob type. (Yasuhiro Matsumoto, closes https://github.com/vim/vim/issues/3638)
author Bram Moolenaar <Bram@vim.org>
date Sat, 12 Jan 2019 23:00:06 +0100
parents bb421f682528
children 41fbbcea0f1b
comparison
equal deleted inserted replaced
15453:cdee6e827112 15454:1d2b5c016f17
1575 # ALL_SRC: source files used for make depend and make lint 1575 # ALL_SRC: source files used for make depend and make lint
1576 1576
1577 BASIC_SRC = \ 1577 BASIC_SRC = \
1578 arabic.c \ 1578 arabic.c \
1579 beval.c \ 1579 beval.c \
1580 blob.c \
1580 blowfish.c \ 1581 blowfish.c \
1581 buffer.c \ 1582 buffer.c \
1582 charset.c \ 1583 charset.c \
1583 crypt.c \ 1584 crypt.c \
1584 crypt_zip.c \ 1585 crypt_zip.c \
1691 1692
1692 OBJ_COMMON = \ 1693 OBJ_COMMON = \
1693 objects/arabic.o \ 1694 objects/arabic.o \
1694 objects/beval.o \ 1695 objects/beval.o \
1695 objects/buffer.o \ 1696 objects/buffer.o \
1697 objects/blob.o \
1696 objects/blowfish.o \ 1698 objects/blowfish.o \
1697 objects/crypt.o \ 1699 objects/crypt.o \
1698 objects/crypt_zip.o \ 1700 objects/crypt_zip.o \
1699 objects/dict.o \ 1701 objects/dict.o \
1700 objects/diff.o \ 1702 objects/diff.o \
2941 $(ALL_OBJ): objects/.dirstamp 2943 $(ALL_OBJ): objects/.dirstamp
2942 2944
2943 objects/arabic.o: arabic.c 2945 objects/arabic.o: arabic.c
2944 $(CCC) -o $@ arabic.c 2946 $(CCC) -o $@ arabic.c
2945 2947
2948 objects/blob.o: blob.c
2949 $(CCC) -o $@ blob.c
2950
2946 objects/blowfish.o: blowfish.c 2951 objects/blowfish.o: blowfish.c
2947 $(CCC) -o $@ blowfish.c 2952 $(CCC) -o $@ blowfish.c
2948 2953
2949 objects/buffer.o: buffer.c 2954 objects/buffer.o: buffer.c
2950 $(CCC) -o $@ buffer.c 2955 $(CCC) -o $@ buffer.c
3390 objects/arabic.o: arabic.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3395 objects/arabic.o: arabic.c vim.h protodef.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 \ 3396 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 \ 3397 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 3398 proto.h globals.h farsi.h arabic.h
3394 objects/beval.o: beval.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3399 objects/beval.o: beval.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3400 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3401 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3402 proto.h globals.h farsi.h arabic.h
3403 objects/blob.o: blob.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3395 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3404 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
3396 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \ 3405 proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
3397 proto.h globals.h farsi.h arabic.h 3406 proto.h globals.h farsi.h arabic.h
3398 objects/blowfish.o: blowfish.c vim.h protodef.h auto/config.h feature.h os_unix.h \ 3407 objects/blowfish.o: blowfish.c vim.h protodef.h auto/config.h feature.h os_unix.h \
3399 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \ 3408 auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \