From: Olaf Hering make tags skips security/selinux/include because of find . -name include -prune This patch does just add it later. No idea if it can be done better. --- 25-akpm/Makefile | 2 ++ 1 files changed, 2 insertions(+) diff -puN Makefile~make-tags-for-selinux Makefile --- 25/Makefile~make-tags-for-selinux 2004-05-08 22:10:51.623629600 -0700 +++ 25-akpm/Makefile 2004-05-08 22:10:51.627628992 -0700 @@ -1002,6 +1002,8 @@ define all-sources -name '*.[chS]' -print; \ find arch/$(ARCH) $(RCS_FIND_IGNORE) \ -name '*.[chS]' -print; \ + find security/selinux/include $(RCS_FIND_IGNORE) \ + -name '*.[chS]' -print; \ find include $(RCS_FIND_IGNORE) \ \( -name config -o -name 'asm-*' \) -prune \ -o -name '*.[chS]' -print; \ _