comparison src/Make_mvc.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 88b5c2b4e3d2
comparison
equal deleted inserted replaced
18018:08fb5a871e6b 18019:68fd5296bf73
1635 1635
1636 $(OUTDIR)/profiler.obj: $(OUTDIR) profiler.c $(INCL) 1636 $(OUTDIR)/profiler.obj: $(OUTDIR) profiler.c $(INCL)
1637 1637
1638 $(OUTDIR)/quickfix.obj: $(OUTDIR) quickfix.c $(INCL) 1638 $(OUTDIR)/quickfix.obj: $(OUTDIR) quickfix.c $(INCL)
1639 1639
1640 $(OUTDIR)/regexp.obj: $(OUTDIR) regexp.c regexp_nfa.c $(INCL) 1640 $(OUTDIR)/regexp.obj: $(OUTDIR) regexp.c regexp_bt.c regexp_nfa.c $(INCL)
1641 1641
1642 $(OUTDIR)/scriptfile.obj: $(OUTDIR) scriptfile.c $(INCL) 1642 $(OUTDIR)/scriptfile.obj: $(OUTDIR) scriptfile.c $(INCL)
1643 1643
1644 $(OUTDIR)/screen.obj: $(OUTDIR) screen.c $(INCL) 1644 $(OUTDIR)/screen.obj: $(OUTDIR) screen.c $(INCL)
1645 1645