summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorfalkTX <falktx@gmail.com>2018-12-30 17:51:24 +0100
committerfalkTX <falktx@gmail.com>2018-12-30 17:51:24 +0100
commit209c6c2be6bb45cb34e2f8ef833bc55a4be25a92 (patch)
treed60dfbb0eca74995dac6dc6e3b6751a69c3be1eb /Makefile
parentcf980eb2a07555dc8ef9637a57932c8131a8310d (diff)
Adjust things for better external ui support, add example plugin
Signed-off-by: falkTX <falktx@gmail.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index e27a4936..cf1b0cbc 100644
--- a/Makefile
+++ b/Makefile
@@ -16,6 +16,7 @@ ifeq ($(HAVE_DGL),true)
endif
examples: dgl
+ $(MAKE) all -C examples/ExternalUI
$(MAKE) all -C examples/Info
$(MAKE) all -C examples/Latency
$(MAKE) all -C examples/Meters
@@ -23,6 +24,13 @@ examples: dgl
$(MAKE) all -C examples/Parameters
$(MAKE) all -C examples/States
+ # ExternalUI launcher
+ install -d bin/d_extui-dssi
+ install -d bin/d_extui.lv2
+ install -m 755 examples/ExternalUI/ExternalLauncher.sh bin/d_extui.sh
+ install -m 755 examples/ExternalUI/ExternalLauncher.sh bin/d_extui-dssi/d_extui.sh
+ install -m 755 examples/ExternalUI/ExternalLauncher.sh bin/d_extui.lv2/d_extui.sh
+
ifneq ($(CROSS_COMPILING),true)
gen: examples utils/lv2_ttl_generator
@$(CURDIR)/utils/generate-ttl.sh
@@ -40,6 +48,7 @@ endif
clean:
$(MAKE) clean -C dgl
+ $(MAKE) clean -C examples/ExternalUI
$(MAKE) clean -C examples/Info
$(MAKE) clean -C examples/Latency
$(MAKE) clean -C examples/Meters