comparison src/Make_manx.mak @ 15814:99ebf78686a9 v8.1.0914

patch 8.1.0914: code related to findfile() is spread out commit https://github.com/vim/vim/commit/5fd0f5052f9a312bb4cfe7b4176b1211d45127ee Author: Bram Moolenaar <Bram@vim.org> Date: Wed Feb 13 23:13:28 2019 +0100 patch 8.1.0914: code related to findfile() is spread out Problem: Code related to findfile() is spread out. Solution: Put findfile() related code into a new source file. (Yegappan Lakshmanan, closes #3934)
author Bram Moolenaar <Bram@vim.org>
date Wed, 13 Feb 2019 23:15:05 +0100
parents 2d941023bd2f
children a6ca8cf07a98
comparison
equal deleted inserted replaced
15813:ad21b64216aa 15814:99ebf78686a9
54 ex_docmd.c \ 54 ex_docmd.c \
55 ex_eval.c \ 55 ex_eval.c \
56 ex_getln.c \ 56 ex_getln.c \
57 farsi.c \ 57 farsi.c \
58 fileio.c \ 58 fileio.c \
59 findfile.c \
59 fold.c \ 60 fold.c \
60 getchar.c \ 61 getchar.c \
61 hardcopy.c \ 62 hardcopy.c \
62 hashtab.c \ 63 hashtab.c \
63 indent.c \ 64 indent.c \
115 obj/ex_docmd.o \ 116 obj/ex_docmd.o \
116 obj/ex_eval.o \ 117 obj/ex_eval.o \
117 obj/ex_getln.o \ 118 obj/ex_getln.o \
118 obj/farsi.o \ 119 obj/farsi.o \
119 obj/fileio.o \ 120 obj/fileio.o \
121 obj/findfile.o \
120 obj/fold.o \ 122 obj/fold.o \
121 obj/getchar.o \ 123 obj/getchar.o \
122 obj/hardcopy.o \ 124 obj/hardcopy.o \
123 obj/hashtab.o \ 125 obj/hashtab.o \
124 obj/indent.o \ 126 obj/indent.o \
174 proto/ex_docmd.pro \ 176 proto/ex_docmd.pro \
175 proto/ex_eval.pro \ 177 proto/ex_eval.pro \
176 proto/ex_getln.pro \ 178 proto/ex_getln.pro \
177 proto/farsi.pro \ 179 proto/farsi.pro \
178 proto/fileio.pro \ 180 proto/fileio.pro \
181 proto/findfile.pro \
179 proto/fold.pro \ 182 proto/fold.pro \
180 proto/getchar.pro \ 183 proto/getchar.pro \
181 proto/hardcopy.pro \ 184 proto/hardcopy.pro \
182 proto/hashtab.pro \ 185 proto/hashtab.pro \
183 proto/indent.pro \ 186 proto/indent.pro \
318 $(CCSYM) $@ farsi.c 321 $(CCSYM) $@ farsi.c
319 322
320 obj/fileio.o: fileio.c 323 obj/fileio.o: fileio.c
321 $(CCSYM) $@ fileio.c 324 $(CCSYM) $@ fileio.c
322 325
326 obj/findfile.o: findfile.c
327 $(CCSYM) $@ findfile.c
328
323 obj/fold.o: fold.c 329 obj/fold.o: fold.c
324 $(CCSYM) $@ fold.c 330 $(CCSYM) $@ fold.c
325 331
326 obj/getchar.o: getchar.c 332 obj/getchar.o: getchar.c
327 $(CCSYM) $@ getchar.c 333 $(CCSYM) $@ getchar.c