summaryrefslogtreecommitdiff
path: root/examples/Latency/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'examples/Latency/Makefile')
-rw-r--r--examples/Latency/Makefile36
1 files changed, 36 insertions, 0 deletions
diff --git a/examples/Latency/Makefile b/examples/Latency/Makefile
new file mode 100644
index 00000000..c2d7fb64
--- /dev/null
+++ b/examples/Latency/Makefile
@@ -0,0 +1,36 @@
+#!/usr/bin/make -f
+# Makefile for DISTRHO Plugins #
+# ---------------------------- #
+# Created by falkTX
+#
+
+# --------------------------------------------------------------
+# Project name, used for binaries
+
+NAME = d_latency
+
+# --------------------------------------------------------------
+# Files to build
+
+FILES_DSP = \
+ LatencyExamplePlugin.cpp
+
+# --------------------------------------------------------------
+# Do some magic
+
+include ../Makefile.mk
+
+# --------------------------------------------------------------
+# Enable all possible plugin types
+
+ifeq ($(LINUX),true)
+TARGETS += ladspa
+TARGETS += dssi
+endif
+
+TARGETS += lv2_dsp
+TARGETS += vst
+
+all: $(TARGETS)
+
+# --------------------------------------------------------------