From 9e99460893852fab26ab09ef25ed299f53fb1390 Mon Sep 17 00:00:00 2001 From: Dmitry Baryshkov Date: Wed, 17 Nov 2021 17:49:53 +0300 Subject: [PATCH] Makefile: add extra dependecy on debugcc.h Make all objects depend on debugcc.h to let them be rebuilt if the header changes. Signed-off-by: Dmitry Baryshkov --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index c063cc0..e74ca60 100644 --- a/Makefile +++ b/Makefile @@ -15,5 +15,7 @@ $(OUT): $(OBJS) ln -f $(OUT) sdm845-debugcc ln -f $(OUT) sm8350-debugcc +$(OBJS): %.o: debugcc.h + clean: rm -f $(OUT) $(OBJS) *-debugcc