comparison src/Make_mvc.mak @ 18853:5ecefcbd12a1 v8.1.2413

patch 8.1.2413: cannot update ex_cmdidxs.h on MS-Windows Commit: https://github.com/vim/vim/commit/0ba89ec47c4c43414a89a6944803e2e1331a761d Author: Bram Moolenaar <Bram@vim.org> Date: Mon Dec 9 21:48:11 2019 +0100 patch 8.1.2413: cannot update ex_cmdidxs.h on MS-Windows Problem: Cannot update ex_cmdidxs.h on MS-Windows. Solution: Add build rules and dependencies. (Ken Takata, closes https://github.com/vim/vim/issues/5337)
author Bram Moolenaar <Bram@vim.org>
date Mon, 09 Dec 2019 22:00:04 +0100
parents 217c97e06615
children 9a723f1e2d4e
comparison
equal deleted inserted replaced
18852:30f34c2f0002 18853:5ecefcbd12a1
1409 cd .. 1409 cd ..
1410 cd GvimExt 1410 cd GvimExt
1411 $(MAKE) /NOLOGO -f Makefile clean 1411 $(MAKE) /NOLOGO -f Makefile clean
1412 cd .. 1412 cd ..
1413 1413
1414 # Run vim script to generate the Ex command lookup table.
1415 # This only needs to be run when a command name has been added or changed.
1416 # If this fails because you don't have Vim yet, first build and install Vim
1417 # without changes.
1418 cmdidxs: ex_cmds.h
1419 vim --clean -X -u create_cmdidxs.vim
1420
1414 test: 1421 test:
1415 cd testdir 1422 cd testdir
1416 $(MAKE) /NOLOGO -f Make_dos.mak win32 1423 $(MAKE) /NOLOGO -f Make_dos.mak win32
1417 cd .. 1424 cd ..
1418 1425
1528 1535
1529 $(OUTDIR)/ex_cmds.obj: $(OUTDIR) ex_cmds.c $(INCL) 1536 $(OUTDIR)/ex_cmds.obj: $(OUTDIR) ex_cmds.c $(INCL)
1530 1537
1531 $(OUTDIR)/ex_cmds2.obj: $(OUTDIR) ex_cmds2.c $(INCL) 1538 $(OUTDIR)/ex_cmds2.obj: $(OUTDIR) ex_cmds2.c $(INCL)
1532 1539
1533 $(OUTDIR)/ex_docmd.obj: $(OUTDIR) ex_docmd.c $(INCL) 1540 $(OUTDIR)/ex_docmd.obj: $(OUTDIR) ex_docmd.c $(INCL) ex_cmdidxs.h
1534 1541
1535 $(OUTDIR)/ex_eval.obj: $(OUTDIR) ex_eval.c $(INCL) 1542 $(OUTDIR)/ex_eval.obj: $(OUTDIR) ex_eval.c $(INCL)
1536 1543
1537 $(OUTDIR)/ex_getln.obj: $(OUTDIR) ex_getln.c $(INCL) 1544 $(OUTDIR)/ex_getln.obj: $(OUTDIR) ex_getln.c $(INCL)
1538 1545