Commit fb8734e3f "Makefile: clean up and simplify" added blindly $(LIB_H) as dependency to all .o targets. This completely defeat the purpose of generated dependencies. Fix this by removing this unneeded dependency. Fixes: fb8734e3fa18619277f54f131a9b898ce7171645 Signed-off-by: Luc Van Oostenryck <luc.vanoostenryck@xxxxxxxxx> --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index f1af83e32..bc4469410 100644 --- a/Makefile +++ b/Makefile @@ -208,7 +208,7 @@ c2xml.o c2xml.sc: CFLAGS += $(LIBXML_CFLAGS) pre-process.sc: CHECKER_FLAGS += -Wno-vla -%.o: %.c $(LIB_H) +%.o: %.c $(QUIET_CC)$(CC) $(CFLAGS) $(CPPFLAGS) -c -o $@ $< %.sc: %.c sparse -- 2.14.0 -- To unsubscribe from this list: send the line "unsubscribe linux-sparse" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html