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