From 5c5c708eaa83cccefbec88c329b60662f3147c3d Mon Sep 17 00:00:00 2001 From: "Lance R. Vick" Date: Fri, 6 Sep 2024 18:13:48 -0700 Subject: [PATCH] fix: force make targets to depend on all files in package folder --- src/macros.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/macros.mk b/src/macros.mk index 450c8d5..c07e458 100644 --- a/src/macros.mk +++ b/src/macros.mk @@ -54,7 +54,7 @@ define folder-list endef define gen-target -out/$(1)/index.json: $(shell $(call dep-list,$(1))) | out +out/$(1)/index.json: $(shell $(call dep-list,$(1))) $(shell find packages/$(1)) | out $(call build,$(1)) endef