From e9909ef057e12163380d86e9aface7af44b227e2 Mon Sep 17 00:00:00 2001 From: Joe Carstairs Date: Mon, 22 Jun 2026 13:44:05 +0100 Subject: [PATCH] build_$(module) depends on make_$(module) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 035d6f7..4272b85 100644 --- a/Makefile +++ b/Makefile @@ -17,7 +17,7 @@ container_image_name = $(REGISTRY_DOMAIN)/$(REGISTRY_USER)/joeac.net-$(module) define build_module_rule = .PHONY: build_$(module) -build_$(module): $(module) +build_$(module): make_$(module) sudo podman-compose build $(module) endef