summaryrefslogtreecommitdiffstats
path: root/src/Makefile
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-09-28 16:30:04 +0200
committerBram Moolenaar <Bram@vim.org>2019-09-28 16:30:04 +0200
commit473952e85286eb9c6098801f1819981ba61ad153 (patch)
tree853c22efb3c9b723e336b560e756da38db610021 /src/Makefile
parent9be0e0b9d31e42d0074527a7789836087475142a (diff)
patch 8.1.2094: the fileio.c file is too bigv8.1.2094
Problem: The fileio.c file is too big. Solution: Move buf_write() to bufwrite.c. (Yegappan Lakshmanan, closes #4990)
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/Makefile b/src/Makefile
index 6e676f170d..cae0e5ff9e 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -1668,6 +1668,7 @@ BASIC_SRC = \
version.c \
viminfo.c \
window.c \
+ bufwrite.c \
$(OS_EXTRA_SRC)
SRC = $(BASIC_SRC) \
@@ -1804,6 +1805,7 @@ OBJ_COMMON = \
objects/version.o \
objects/viminfo.o \
objects/window.o \
+ objects/bufwrite.o \
$(GUI_OBJ) \
$(TERM_OBJ) \
$(LUA_OBJ) \
@@ -1966,6 +1968,7 @@ PRO_AUTO = \
version.pro \
viminfo.pro \
window.pro \
+ bufwrite.pro \
beval.pro \
gui_beval.pro \
netbeans.pro \
@@ -3432,6 +3435,9 @@ objects/viminfo.o: viminfo.c
objects/window.o: window.c
$(CCC) -o $@ window.c
+objects/bufwrite.o: bufwrite.c
+ $(CCC) -o $@ bufwrite.c
+
objects/netbeans.o: netbeans.c
$(CCC) -o $@ netbeans.c
@@ -3949,6 +3955,10 @@ objects/window.o: window.c vim.h protodef.h auto/config.h feature.h os_unix.h \
auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
proto.h globals.h
+objects/bufwrite.o: bufwrite.c vim.h protodef.h auto/config.h feature.h os_unix.h \
+ auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
+ proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
+ proto.h globals.h
objects/gui.o: gui.c vim.h protodef.h auto/config.h feature.h os_unix.h \
auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \