summaryrefslogtreecommitdiff
path: root/plugins/zita-convolver.mk
diff options
context:
space:
mode:
authorfalkTX <falktx@gmail.com>2018-09-27 21:03:07 +0200
committerfalkTX <falktx@gmail.com>2018-09-27 21:03:07 +0200
commitdd1e050ad0ba751be373cbe27c89ee3b2052f9b2 (patch)
treed8241a487aa50c02b73bd2091271e64b657e148a /plugins/zita-convolver.mk
parent95895d9b5dc193fe45904bf6c7ff8a77ba89406f (diff)
Simplify makefiles, use rules directly from dpf
Diffstat (limited to 'plugins/zita-convolver.mk')
-rw-r--r--plugins/zita-convolver.mk14
1 files changed, 14 insertions, 0 deletions
diff --git a/plugins/zita-convolver.mk b/plugins/zita-convolver.mk
new file mode 100644
index 0000000..042de6b
--- /dev/null
+++ b/plugins/zita-convolver.mk
@@ -0,0 +1,14 @@
+#!/usr/bin/make -f
+# Makefile for zita-convolver #
+# -------------------------------- #
+# Created by falkTX
+#
+
+# NOTE: Makefile.plugins.mk must have been included before this file!
+
+$(BUILD_DIR)/zita-convolver.cpp.o: ../../lib/zita-convolver-4.0.0/zita-convolver.cpp
+ -@mkdir -p $(BUILD_DIR)
+ @echo "Compiling zita-convolver.cpp"
+ @$(CXX) $< $(BUILD_CXX_FLAGS) -c -o $@
+
+-include $(BUILD_DIR)/zita-convolver.cpp.d