From 6bdc149642e5500a5900df53d08ed80534d2521c Mon Sep 17 00:00:00 2001 From: Cyrill Gorcunov Date: Fri, 19 Apr 2013 16:01:16 +0400 Subject: [PATCH] Revert "make: Don't generate tags/cscope for tools/ and test/" This reverts commit 396a08eb95133ab61eedce6cc3cd960d27f7efeb. As Andrew requested he needs the symbols to be generated for all possible sources in the crtools code. Signed-off-by: Cyrill Gorcunov Signed-off-by: Pavel Emelyanov --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index b3152fd47..0d33cc3c4 100644 --- a/Makefile +++ b/Makefile @@ -194,11 +194,11 @@ distclean: clean tags: $(E) " GEN" $@ $(Q) $(RM) tags - $(Q) $(FIND) . -name '*.[hcS]' ! -path './.*' ! -path './tools/*' ! -path './test/*' -print | xargs ctags -a + $(Q) $(FIND) . -name '*.[hcS]' ! -path './.*' -print | xargs ctags -a cscope: $(E) " GEN" $@ - $(Q) $(FIND) . -name '*.[hcS]' ! -path './.*' ! -path './tools/*' ! -path './test/*' -print > cscope.files + $(Q) $(FIND) . -name '*.[hcS]' ! -path './.*' -print > cscope.files $(Q) $(CSCOPE) -bkqu docs: