It's useful to have some tags to jump around sources. We don't include test sources in the toplevel Makefile because they probably aren't useful to main program development. Signed-off-by: Stephen Boyd <stephen.boyd@xxxxxxxxxx> --- I noticed my previous patch wasn't pruning the *.tab.[ch] and *.lex.c files. This version corrects the find command so those aren't included. Makefile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Makefile b/Makefile index 32dcfcf8e203..ce05eba6590b 100644 --- a/Makefile +++ b/Makefile @@ -218,6 +218,12 @@ kup: dist $(KUPDIR)/dtc-$(dtc_version).tar.gz endif +tags: FORCE + rm -f tags + find . \( -name tests -type d -prune \) -o \ + \( ! -name '*.tab.[ch]' ! -name '*.lex.c' \ + -name '*.[chly]' -type f -print \) | xargs ctags -a + # # Testsuite rules # -- 2.10.0.297.gf6727b0 -- To unsubscribe from this list: send the line "unsubscribe devicetree-compiler" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html