summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorfalkTX <falktx@gmail.com>2015-10-30 10:57:21 +0100
committerfalkTX <falktx@gmail.com>2015-10-30 10:57:21 +0100
commit2b27e86b5225757f02c76718f9583bd11a9d1f97 (patch)
treeece4f0970e32cf1c3196885894f27cdd863ec592 /Makefile
parent5fc6ef16738827977b481bade77720f9048a8ff0 (diff)
Don't install jack standalones if jack is not available
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index cfd0c4a..2b4cd8a 100644
--- a/Makefile
+++ b/Makefile
@@ -42,8 +42,12 @@ install: all
install -d $(DESTDIR)$(PREFIX)/$(LIBDIR)/lv2/"$$plugin".lv2 ; \
install -t $(DESTDIR)$(PREFIX)/$(LIBDIR)/lv2/"$$plugin".lv2 \
bin/"$$plugin".lv2/* ; \
+ done; \
+ifeq ($(HAVE_JACK),true)
+ for plugin in $(PLUGINS); do \
install -t $(DESTDIR)$(PREFIX)/$(BINDIR) bin/"$$plugin" ; \
done; \
+endif
install -t $(DESTDIR)$(PREFIX)/$(LIBDIR)/ladspa bin/*-ladspa.so
install -t $(DESTDIR)$(PREFIX)/$(LIBDIR)/vst bin/*-vst.so