comparison src/Makefile @ 29018:4a7650a894d4 v8.2.5031

patch 8.2.5031: cannot easily run the benchmarks Commit: https://github.com/vim/vim/commit/76381a5b4f3f6de1df33a8ab3e1f7db2e1764af6 Author: Bram Moolenaar <Bram@vim.org> Date: Fri May 27 20:13:28 2022 +0100 patch 8.2.5031: cannot easily run the benchmarks Problem: Cannot easily run the benchmarks. Solution: Have "make benchmark" in the src directory work.
author Bram Moolenaar <Bram@vim.org>
date Fri, 27 May 2022 21:15:02 +0200
parents 2043e243fa89
children 83cf4455be5a
comparison
equal deleted inserted replaced
29017:22374b9026cf 29018:4a7650a894d4
2243 cd testdir; $(MAKE) -f Makefile $(GUI_TESTTARGET) VIMPROG=../$(VIMTARGET) GUI_FLAG=-g $(GUI_TESTARG) SCRIPTSOURCE=../$(SCRIPTSOURCE) 2243 cd testdir; $(MAKE) -f Makefile $(GUI_TESTTARGET) VIMPROG=../$(VIMTARGET) GUI_FLAG=-g $(GUI_TESTARG) SCRIPTSOURCE=../$(SCRIPTSOURCE)
2244 2244
2245 testtiny: 2245 testtiny:
2246 cd testdir; $(MAKE) -f Makefile tiny VIMPROG=../$(VIMTARGET) SCRIPTSOURCE=../$(SCRIPTSOURCE) 2246 cd testdir; $(MAKE) -f Makefile tiny VIMPROG=../$(VIMTARGET) SCRIPTSOURCE=../$(SCRIPTSOURCE)
2247 2247
2248 # Run benchmarks.
2248 benchmark: 2249 benchmark:
2249 cd testdir; $(MAKE) -f Makefile benchmark VIMPROG=../$(VIMTARGET) SCRIPTSOURCE=../$(SCRIPTSOURCE) 2250 cd testdir; \
2251 $(MAKE) -f Makefile benchmarkclean; \
2252 $(MAKE) -f Makefile benchmark VIMPROG=../$(VIMTARGET) SCRIPTSOURCE=../$(SCRIPTSOURCE)
2250 2253
2251 unittesttargets: 2254 unittesttargets:
2252 $(MAKE) -f Makefile $(UNITTEST_TARGETS) 2255 $(MAKE) -f Makefile $(UNITTEST_TARGETS)
2253 2256
2254 # Swap these lines to run individual tests with gvim instead of vim. 2257 # Swap these lines to run individual tests with gvim instead of vim.