summaryrefslogtreecommitdiffstats
path: root/src/Make_mvc.mak
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-12-09 21:48:11 +0100
committerBram Moolenaar <Bram@vim.org>2019-12-09 21:48:11 +0100
commit0ba89ec47c4c43414a89a6944803e2e1331a761d (patch)
tree9ea5d524acd8f78f2ccc0bb5fde78c59d82f8c66 /src/Make_mvc.mak
parent0ff822d2ebf0d130516631734b00179ba8dd8251 (diff)
patch 8.1.2413: cannot update ex_cmdidxs.h on MS-Windowsv8.1.2413
Problem: Cannot update ex_cmdidxs.h on MS-Windows. Solution: Add build rules and dependencies. (Ken Takata, closes #5337)
Diffstat (limited to 'src/Make_mvc.mak')
-rw-r--r--src/Make_mvc.mak9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/Make_mvc.mak b/src/Make_mvc.mak
index 1a74d3bb3e..65967b61d7 100644
--- a/src/Make_mvc.mak
+++ b/src/Make_mvc.mak
@@ -1411,6 +1411,13 @@ clean: testclean
$(MAKE) /NOLOGO -f Makefile clean
cd ..
+# Run vim script to generate the Ex command lookup table.
+# This only needs to be run when a command name has been added or changed.
+# If this fails because you don't have Vim yet, first build and install Vim
+# without changes.
+cmdidxs: ex_cmds.h
+ vim --clean -X -u create_cmdidxs.vim
+
test:
cd testdir
$(MAKE) /NOLOGO -f Make_dos.mak win32
@@ -1530,7 +1537,7 @@ $(OUTDIR)/ex_cmds.obj: $(OUTDIR) ex_cmds.c $(INCL)
$(OUTDIR)/ex_cmds2.obj: $(OUTDIR) ex_cmds2.c $(INCL)
-$(OUTDIR)/ex_docmd.obj: $(OUTDIR) ex_docmd.c $(INCL)
+$(OUTDIR)/ex_docmd.obj: $(OUTDIR) ex_docmd.c $(INCL) ex_cmdidxs.h
$(OUTDIR)/ex_eval.obj: $(OUTDIR) ex_eval.c $(INCL)