patch 8.1.0610: MS-Windows ctags file list differs from Unix

Problem:    MS-Windows ctags file list differs from Unix.
Solution:   Define TAGS_FILES in the common makefile. (partly by Ken Takata)
diff --git a/src/Make_all.mak b/src/Make_all.mak
index 4aa30b8..949d0a3 100644
--- a/src/Make_all.mak
+++ b/src/Make_all.mak
@@ -1,5 +1,5 @@
 #
-# Common Makefile, defines the list of tests to run.
+# Common Makefile, defines the list of tests to run and other things.
 #
 
 # Individual tests, including the ones part of test_alot.
@@ -210,3 +210,15 @@
 	test_alot_latin \
 	test_alot_utf8 \
 	test_alot
+
+# Argument for running ctags.
+TAGS_FILES = \
+	*.c \
+	*.cpp \
+	*.h \
+	auto/*.c \
+	libvterm/src/*.c \
+	libvterm/src/*.h \
+	libvterm/include/*.h \
+	xdiff/*.c \
+	xdiff/*.h