From: Nikhil M Jain Date: Thu, 20 Apr 2023 12:11:07 +0000 (+0530) Subject: common: Makefile: Rule to compile bmp.c X-Git-Tag: v2023.07~59^2~11 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d45e1d99679c4d214ab12eebefeb68bf11ab58a3;p=platform%2Fkernel%2Fu-boot.git common: Makefile: Rule to compile bmp.c Add rule to compile bmp.c at SPL and u-boot proper when CONFIG_SPL_BMP and CONFIG_BMP are defined. Signed-off-by: Nikhil M Jain Reviewed-by: Devarsh Thakkar Reviewed-by: Simon Glass Tested-by: Simon Glass --- diff --git a/common/Makefile b/common/Makefile index 3a6ca33..c87bb2e 100644 --- a/common/Makefile +++ b/common/Makefile @@ -45,6 +45,7 @@ endif # !CONFIG_SPL_BUILD obj-$(CONFIG_$(SPL_TPL_)BOOTSTAGE) += bootstage.o obj-$(CONFIG_$(SPL_TPL_)BLOBLIST) += bloblist.o +obj-$(CONFIG_$(SPL_)BMP) += bmp.o ifdef CONFIG_SPL_BUILD ifdef CONFIG_SPL_DFU