Commit 0d9a5b8b authored by Cyrill Gorcunov's avatar Cyrill Gorcunov

make: Drop hidden directories and files from tags gen

Signed-off-by: 's avatarCyrill Gorcunov <gorcunov@openvz.org>
Acked-by: 's avatarPavel Emelyanov <xemul@parallels.com>
parent cff00de8
...@@ -180,12 +180,12 @@ distclean: clean ...@@ -180,12 +180,12 @@ distclean: clean
tags: tags:
$(E) " GEN" $@ $(E) " GEN" $@
$(Q) $(RM) -f tags $(Q) $(RM) -f tags
$(Q) $(FIND) . -name '*.[hcS]' -print | xargs ctags -a $(Q) $(FIND) . -name '*.[hcS]' ! -path './.*' -print | xargs ctags -a
.PHONY: tags .PHONY: tags
cscope: cscope:
$(E) " GEN" $@ $(E) " GEN" $@
$(Q) $(FIND) . -name '*.[hcS]' -print > cscope.files $(Q) $(FIND) . -name '*.[hcS]' ! -path './.*' -print > cscope.files
$(Q) $(CSCOPE) -bkqu $(Q) $(CSCOPE) -bkqu
.PHONY: cscope .PHONY: cscope
......
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