From: Philippe Reynes Date: Tue, 25 Jan 2022 10:32:20 +0000 (+0100) Subject: scripts: Makefile: also clean subdir dtc X-Git-Url: http://git.dujemihanovic.xyz/img/static/gitweb.css?a=commitdiff_plain;h=96757b7be5111c4f51763e8fd406ddf9331eba57;p=u-boot.git scripts: Makefile: also clean subdir dtc Since commit 93b196532254 ("Makefile: Only build dtc if needed"), the sub directory scripts/dtc is never cleaned. Adds the directory dtc to subdir to always clean it. Signed-off-by: Philippe Reynes Reviewed-by: Simon Glass --- diff --git a/scripts/Makefile b/scripts/Makefile index cfe9fef804..8731e6cecd 100644 --- a/scripts/Makefile +++ b/scripts/Makefile @@ -9,4 +9,4 @@ hostprogs-$(CONFIG_BUILD_BIN2C) += bin2c always := $(hostprogs-y) # Let clean descend into subdirs -subdir- += basic kconfig +subdir- += basic kconfig dtc