fix: force make targets to depend on all files in package folder

This commit is contained in:
Lance R. Vick 2024-09-06 18:13:48 -07:00
parent 75f36375b9
commit 5c5c708eaa
No known key found for this signature in database
GPG key ID: 8E47A1EC35A1551D

View file

@ -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