From f475683366bc4716cabca88e89862e2efa93a14c Mon Sep 17 00:00:00 2001 From: Dominic Clifton Date: Mon, 18 Feb 2019 16:12:53 +0100 Subject: [PATCH] Ensure target is rebuilt if ANY of the make files changes. Prior to this, editing say make/source.mk didn't cause a rebuild. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 78d4e775d2..bb891e13ad 100644 --- a/Makefile +++ b/Makefile @@ -574,7 +574,7 @@ check-fastram-usage-correctness: fi; # rebuild everything when makefile changes -$(TARGET_OBJS): Makefile $(TARGET_DIR)/target.mk +$(TARGET_OBJS): Makefile $(TARGET_DIR)/target.mk $(wildcard make/*) # include auto-generated dependencies