summaryrefslogtreecommitdiff
path: root/plugins/ZamGate/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/ZamGate/Makefile')
-rw-r--r--plugins/ZamGate/Makefile36
1 files changed, 36 insertions, 0 deletions
diff --git a/plugins/ZamGate/Makefile b/plugins/ZamGate/Makefile
new file mode 100644
index 0000000..5ae5766
--- /dev/null
+++ b/plugins/ZamGate/Makefile
@@ -0,0 +1,36 @@
+#!/usr/bin/make -f
+# Makefile for zam-plugins #
+# ------------------------ #
+# Created by falkTX
+#
+
+# --------------------------------------------------------------
+# Project name, used for binaries
+
+NAME = ZamGate
+
+# --------------------------------------------------------------
+# Files to build
+
+OBJS_DSP = \
+ ZamGatePlugin.cpp.o
+
+OBJS_UI = \
+ ZamGateArtwork.cpp.o \
+ ZamGateUI.cpp.o
+
+# --------------------------------------------------------------
+# Do some magic
+
+include ../Makefile.mk
+
+# --------------------------------------------------------------
+# Enable all possible plugin types
+
+ifeq ($(LINUX),true)
+all: jack ladspa dssi lv2_sep vst
+else
+all: ladspa vst
+endif
+
+# --------------------------------------------------------------