From 1dee870136a7b8c01d8f5effd6201a4c79173e8d Mon Sep 17 00:00:00 2001 From: falkTX Date: Fri, 15 Dec 2023 14:41:39 +0100 Subject: [PATCH] Fix build when multiple plugins are defined Signed-off-by: falkTX --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index b8aef85..9b6f0ce 100644 --- a/Makefile +++ b/Makefile @@ -19,10 +19,10 @@ CUSTOM_TTL = $(subst custom-ttl/,,$(wildcard custom-ttl/*)) all: plugins gen plugins: - $(foreach p,$(PLUGINS),$(MAKE) all -f max-gen/Makefile.common.mk NAME=${p}) + $(foreach p,$(PLUGINS),$(MAKE) all -f max-gen/Makefile.common.mk NAME=${p};) gen: plugins pregen - $(foreach p,$(CUSTOM_TTL),cp custom-ttl/${p}/*.ttl bin/${p}.lv2/) + $(foreach p,$(CUSTOM_TTL),cp custom-ttl/${p}/*.ttl bin/${p}.lv2/;) ifneq ($(CROSS_COMPILING),true) pregen: plugins dpf/utils/lv2_ttl_generator @@ -38,7 +38,7 @@ endif # cleanup clean: - $(foreach p,$(PLUGINS),$(MAKE) clean -f max-gen/Makefile.common.mk NAME=${p}) + $(foreach p,$(PLUGINS),$(MAKE) clean -f max-gen/Makefile.common.mk NAME=${p};) $(MAKE) clean -C dpf/utils/lv2-ttl-generator rm -rf bin build