Makefile: Include .d files for CLI objects

Commit 33ff32a589cf (Makefile: use libflashrom.a as input to build
the flashrom executable) forgot to update this after moving the CLI
objects out of $(OBJS). Fix it.

Change-Id: I9b4a4c8a9ef0e0d55bc407ea0ef0657d40b2f738
Signed-off-by: Nico Huber <nico.h@gmx.de>
Reviewed-on: https://review.coreboot.org/c/flashrom-stable/+/72992
Reviewed-by: Thomas Heijligen <src@posteo.de>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
diff --git a/Makefile b/Makefile
index 5db5e03..95aeae6 100644
--- a/Makefile
+++ b/Makefile
@@ -1078,4 +1078,4 @@
 # Disable implicit suffixes and built-in rules (for performance and profit)
 .SUFFIXES:
 
--include $(OBJS:.o=.d)
+-include $(OBJS:.o=.d) $(CLI_OBJS:.o=.d)