summaryrefslogtreecommitdiffstats
path: root/src/Makefile
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-08-25 15:41:00 +0200
committerBram Moolenaar <Bram@vim.org>2019-08-25 15:41:00 +0200
commit307c5a5bb77c3728dfab06c30e9f786309c63f74 (patch)
treef178edf16af0642f2a1236a41984db6f660727df /src/Makefile
parentc2b97643a82bb9fbd202312dac4aa995f92e9e5b (diff)
patch 8.1.1927: code for dealing with script files is spread outv8.1.1927
Problem: Code for dealing with script files is spread out. Solution: Move the code to scriptfile.c. (Yegappan Lakshmanan, closes #4861)
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 9bdba1f0b4..46b865ee07 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -1636,6 +1636,7 @@ BASIC_SRC = \
pty.c \
quickfix.c \
regexp.c \
+ scriptfile.c \
screen.c \
search.c \
session.c \
@@ -1761,6 +1762,7 @@ OBJ_COMMON = \
objects/pty.o \
objects/quickfix.o \
objects/regexp.o \
+ objects/scriptfile.o \
objects/screen.o \
objects/search.o \
objects/session.o \
@@ -1911,6 +1913,7 @@ PRO_AUTO = \
pty.pro \
quickfix.pro \
regexp.pro \
+ scriptfile.pro \
screen.pro \
search.pro \
session.pro \
@@ -3277,6 +3280,9 @@ objects/quickfix.o: quickfix.c
objects/regexp.o: regexp.c regexp_nfa.c
$(CCC) -o $@ regexp.c
+objects/scriptfile.o: scriptfile.c
+ $(CCC) -o $@ scriptfile.c
+
objects/screen.o: screen.c
$(CCC) -o $@ screen.c
@@ -3724,6 +3730,10 @@ objects/regexp.o: regexp.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 regexp_nfa.c
+objects/scriptfile.o: scriptfile.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/screen.o: screen.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 \