makefile: untie misc targets from dep files

Such targets as "tags", "cscope" and "clean" doesn't require blob headers to
be rebuilt.
Thi patch remove this dependence.

Signed-off-by: Stanislav Kinsbursky <skinsbursky@parallels.com>
Signed-off-by: Cyrill Gorcunov <gorcunov@openvz.org>
This commit is contained in:
Stanislav Kinsbursky 2012-01-20 17:53:19 +03:00 committed by Cyrill Gorcunov
parent 949b11b33e
commit af76a228ed

View file

@ -182,4 +182,9 @@ cscope:
$(Q) $(CSCOPE) -bkqu
.PHONY: cscope
no-blob-targets := tags clean cscope
ifeq ($(filter-out no-blob-targets, $(MAKECMDGOALS)),)
-include $(DEPS)
endif