From af76a228edbbfffa231f9594f2152137a03df1a2 Mon Sep 17 00:00:00 2001 From: Stanislav Kinsbursky Date: Fri, 20 Jan 2012 17:53:19 +0300 Subject: [PATCH] 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 Signed-off-by: Cyrill Gorcunov --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Makefile b/Makefile index 854dd6554..af96112bf 100644 --- a/Makefile +++ b/Makefile @@ -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 +