Commit 396a08eb authored by Cyrill Gorcunov's avatar Cyrill Gorcunov Committed by Pavel Emelyanov

make: Don't generate tags/cscope for tools/ and test/

Signed-off-by: 's avatarCyrill Gorcunov <gorcunov@openvz.org>
Signed-off-by: 's avatarPavel Emelyanov <xemul@parallels.com>
parent c0771a01
...@@ -194,11 +194,11 @@ distclean: clean ...@@ -194,11 +194,11 @@ distclean: clean
tags: tags:
$(E) " GEN" $@ $(E) " GEN" $@
$(Q) $(RM) tags $(Q) $(RM) tags
$(Q) $(FIND) . -name '*.[hcS]' ! -path './.*' -print | xargs ctags -a $(Q) $(FIND) . -name '*.[hcS]' ! -path './.*' ! -path './tools/*' ! -path './test/*' -print | xargs ctags -a
cscope: cscope:
$(E) " GEN" $@ $(E) " GEN" $@
$(Q) $(FIND) . -name '*.[hcS]' ! -path './.*' -print > cscope.files $(Q) $(FIND) . -name '*.[hcS]' ! -path './.*' ! -path './tools/*' ! -path './test/*' -print > cscope.files
$(Q) $(CSCOPE) -bkqu $(Q) $(CSCOPE) -bkqu
docs: docs:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment