summaryrefslogtreecommitdiffstats
path: root/src/Makefile
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-07-22 19:11:19 +0200
committerBram Moolenaar <Bram@vim.org>2020-07-22 19:11:19 +0200
commit054f14bbe58fece17f1a74ca63f0b37518f0b4de (patch)
tree14d9accc3dbe2a22a9345257e0bb514eb8f183b9 /src/Makefile
parente7e4838f25ac39177f3c3150ee53af8d6e8a0f28 (diff)
patch 8.2.1269: language and locale code spread outv8.2.1269
Problem: Language and locale code spread out. Solution: Move relevant code to src/locale.c. (Yegappan Lakshmanan, closes #6509)
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 bac4e1273b..8ac7dc58be 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -1647,6 +1647,7 @@ BASIC_SRC = \
insexpand.c \
json.c \
list.c \
+ locale.c \
main.c \
map.c \
mark.c \
@@ -1798,6 +1799,7 @@ OBJ_COMMON = \
objects/indent.o \
objects/insexpand.o \
objects/list.o \
+ objects/locale.o \
objects/map.o \
objects/mark.o \
objects/match.o \
@@ -1973,6 +1975,7 @@ PRO_AUTO = \
insexpand.pro \
json.pro \
list.pro \
+ locale.pro \
main.pro \
map.pro \
mark.pro \
@@ -3378,6 +3381,9 @@ objects/kword_test.o: kword_test.c
objects/list.o: list.c
$(CCC) -o $@ list.c
+objects/locale.o: locale.c
+ $(CCC) -o $@ locale.c
+
objects/main.o: main.c
$(CCC) -o $@ main.c
@@ -3968,6 +3974,10 @@ objects/list.o: list.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/locale.o: locale.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/main.o: main.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 \