Make clean didn't remove dependency files (.*.o.d) which were generated by GCC. This change deletes these files in all sub folders. Signed-off-by: Leon Romanovsky <leon@xxxxxxx> --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 0533be3..bef6c82 100644 --- a/Makefile +++ b/Makefile @@ -45,6 +45,7 @@ install-man: clean: rm -f $(progs) $(objects) + find . -name .\*.o.d -type f -delete $(MAKE) -C man clean install: $(progs) install-man -- 1.7.9.5 -- To unsubscribe from this list: send the line "unsubscribe linux-mmc" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html