From e36355245414223d499421a87d88d8aef0b1078b Mon Sep 17 00:00:00 2001 From: falkTX Date: Tue, 21 Jun 2022 18:05:43 +0100 Subject: [PATCH] Only build embed plugin example if DGL libs are available Signed-off-by: falkTX --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 15922367..8eae693c 100644 --- a/Makefile +++ b/Makefile @@ -21,7 +21,6 @@ dgl: examples: dgl $(MAKE) all -C examples/CVPort - $(MAKE) all -C examples/EmbedExternalUI $(MAKE) all -C examples/FileHandling $(MAKE) all -C examples/Info $(MAKE) all -C examples/Latency @@ -34,6 +33,9 @@ examples: dgl ifeq ($(HAVE_CAIRO),true) $(MAKE) all -C examples/CairoUI endif +ifeq ($(HAVE_DGL),true) + $(MAKE) all -C examples/EmbedExternalUI +endif ifeq ($(CAN_GENERATE_TTL),true) gen: examples utils/lv2_ttl_generator