Skip to content

Commit

Permalink
Fix build when multiple plugins are defined
Browse files Browse the repository at this point in the history
Signed-off-by: falkTX <[email protected]>
  • Loading branch information
falkTX committed Dec 15, 2023
1 parent b9e49d0 commit 1dee870
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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

Expand Down

0 comments on commit 1dee870

Please sign in to comment.