summaryrefslogtreecommitdiffstats
path: root/src/Make_all.mak
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2018-12-19 21:05:57 +0100
committerBram Moolenaar <Bram@vim.org>2018-12-19 21:05:57 +0100
commit6dc6703295362e0d4b81a3eceae6b0dd229b5d7e (patch)
treeb119015ac3b11caa388ac338374741147d0beef8 /src/Make_all.mak
parent9d5c84a08f0574e680ef61d7e44e981bd6be741d (diff)
patch 8.1.0610: MS-Windows ctags file list differs from Unixv8.1.0610
Problem: MS-Windows ctags file list differs from Unix. Solution: Define TAGS_FILES in the common makefile. (partly by Ken Takata)
Diffstat (limited to 'src/Make_all.mak')
-rw-r--r--src/Make_all.mak14
1 files changed, 13 insertions, 1 deletions
diff --git a/src/Make_all.mak b/src/Make_all.mak
index 4aa30b862c..949d0a31a7 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 @@ NEW_TESTS = \
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