comparison src/Make_cyg_ming.mak @ 18019:68fd5296bf73 v8.1.2005

patch 8.1.2005: the regexp.c file is too big Commit: https://github.com/vim/vim/commit/6d7d7cf750bca5d641e464f6a3af5ee5b99a5ac8 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Sep 7 23:16:33 2019 +0200 patch 8.1.2005: the regexp.c file is too big Problem: The regexp.c file is too big. Solution: Move the backtracking engine to a separate file. (Yegappan Lakshmanan, closes #4905)
author Bram Moolenaar <Bram@vim.org>
date Sat, 07 Sep 2019 23:30:04 +0200
parents cf8e0c7e0cb9
children 8b4f9be5db73
comparison
equal deleted inserted replaced
18018:08fb5a871e6b 18019:68fd5296bf73
1177 $(CC) -c $(CFLAGS) os_w32exe.c -o $@ 1177 $(CC) -c $(CFLAGS) os_w32exe.c -o $@
1178 1178
1179 $(OUTDIR)/os_win32.o: os_win32.c $(INCL) $(MZSCHEME_INCL) 1179 $(OUTDIR)/os_win32.o: os_win32.c $(INCL) $(MZSCHEME_INCL)
1180 $(CC) -c $(CFLAGS) os_win32.c -o $@ 1180 $(CC) -c $(CFLAGS) os_win32.c -o $@
1181 1181
1182 $(OUTDIR)/regexp.o: regexp.c regexp_nfa.c $(INCL) 1182 $(OUTDIR)/regexp.o: regexp.c regexp_bt.c regexp_nfa.c $(INCL)
1183 $(CC) -c $(CFLAGS) regexp.c -o $@ 1183 $(CC) -c $(CFLAGS) regexp.c -o $@
1184 1184
1185 $(OUTDIR)/terminal.o: terminal.c $(INCL) $(TERM_DEPS) 1185 $(OUTDIR)/terminal.o: terminal.c $(INCL) $(TERM_DEPS)
1186 $(CC) -c $(CFLAGS) terminal.c -o $@ 1186 $(CC) -c $(CFLAGS) terminal.c -o $@
1187 1187