From 7a86f682b9c863400af7376662cca0a61d055190 Mon Sep 17 00:00:00 2001 From: Stefan Allius Date: Sun, 4 May 2025 18:21:05 +0200 Subject: [PATCH] fix double defined build target --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b98463f..5964e6e 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ babel: build: $(MAKE) -C ha_addons $@ -clean build: +clean: $(MAKE) -C app $@ $(MAKE) -C ha_addons $@