diff options
author | Greg Kurz | 2020-10-13 11:18:13 +0200 |
---|---|---|
committer | Laurent Vivier | 2020-10-27 16:48:49 +0100 |
commit | 018da27970780c0ee4f2df7c06fc7c6c89edb3ee (patch) | |
tree | fe2517e1c03d0b2cffe8aa88affeeb576782e773 /Makefile | |
parent | elf2dmp: Fix memory leak on main() error paths (diff) | |
download | qemu-018da27970780c0ee4f2df7c06fc7c6c89edb3ee.tar.gz qemu-018da27970780c0ee4f2df7c06fc7c6c89edb3ee.tar.xz qemu-018da27970780c0ee4f2df7c06fc7c6c89edb3ee.zip |
Makefile: Add *.[ch].inc files to cscope/ctags/TAGS
The code base has some C source and header files that don't get indexed
because their name ends with .inc:
$ git ls-files "*.[ch].inc" | wc -l
66
Add them to the list.
Signed-off-by: Greg Kurz <groug@kaod.org>
Message-Id: <160258069310.900922.1495166540282536628.stgit@bahia.lan>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -219,7 +219,7 @@ distclean: clean rm -f linux-headers/asm rm -Rf .sdk -find-src-path = find "$(SRC_PATH)/" -path "$(SRC_PATH)/meson" -prune -o -name "*.[chsS]" +find-src-path = find "$(SRC_PATH)/" -path "$(SRC_PATH)/meson" -prune -o \( -name "*.[chsS]" -o -name "*.[ch].inc" \) .PHONY: ctags ctags: |