diff src/Make_cyg_ming.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 da6a7491e148
children 4a3c9d39fc31
line wrap: on
line diff
--- a/src/Make_cyg_ming.mak
+++ b/src/Make_cyg_ming.mak
@@ -1082,6 +1082,13 @@ endif
 	$(MAKE) -C xxd -f Make_ming.mak clean
 	$(MAKE) -C tee clean
 
+# 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
+
 ###########################################################################
 INCL =	vim.h alloc.h ascii.h ex_cmds.h feature.h globals.h \
 	keymap.h macros.h option.h os_dos.h os_win32.h proto.h regexp.h \
@@ -1128,6 +1135,8 @@ endif
 $(OUTDIR):
 	$(MKDIR) $(OUTDIR)
 
+$(OUTDIR)/ex_docmd.o: ex_docmd.c $(INCL) ex_cmdidxs.h
+
 $(OUTDIR)/gui_dwrite.o:	gui_dwrite.cpp gui_dwrite.h
 	$(CC) -c $(CFLAGS) $(CXXFLAGS) gui_dwrite.cpp -o $@