Commit af76a228 authored by Stanislav Kinsbursky's avatar Stanislav Kinsbursky Committed by Cyrill Gorcunov

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: 's avatarStanislav Kinsbursky <skinsbursky@parallels.com>
Signed-off-by: 's avatarCyrill Gorcunov <gorcunov@openvz.org>
parent 949b11b3
...@@ -182,4 +182,9 @@ cscope: ...@@ -182,4 +182,9 @@ cscope:
$(Q) $(CSCOPE) -bkqu $(Q) $(CSCOPE) -bkqu
.PHONY: cscope .PHONY: cscope
no-blob-targets := tags clean cscope
ifeq ($(filter-out no-blob-targets, $(MAKECMDGOALS)),)
-include $(DEPS) -include $(DEPS)
endif
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