annotate vamp-example-plugins/Makefile @ 40:b08fb0bdb159
Bring in example plugins and test plugin. It's not very DRY but it is quite useful
author |
Chris Cannam <c.cannam@qmul.ac.uk> |
date |
Fri, 11 Nov 2016 17:37:38 +0000 |
parents |
|
children |
5383956f326d |
rev |
line source |
c@40
|
1
|
c@40
|
2 PIPER_VAMP_JS_DIR := ../../piper-vamp-js
|
c@40
|
3 PLUGIN_SRC_DIR := ../../vamp-plugin-sdk/examples
|
c@40
|
4
|
c@40
|
5 MODULE_NAME := VampExamplePlugins
|
c@40
|
6 MODULE_SOURCE := vamp-example-plugins.cpp
|
c@40
|
7
|
c@40
|
8 SOURCE_FILES := \
|
c@40
|
9 ZeroCrossing.cpp \
|
c@40
|
10 SpectralCentroid.cpp \
|
c@40
|
11 PercussionOnsetDetector.cpp \
|
c@40
|
12 FixedTempoEstimator.cpp \
|
c@40
|
13 AmplitudeFollower.cpp \
|
c@40
|
14 PowerSpectrum.cpp
|
c@40
|
15
|
c@40
|
16 PLUGIN_SOURCES := $(addprefix $(PLUGIN_SRC_DIR)/,$(SOURCE_FILES))
|
c@40
|
17
|
c@40
|
18 INCLUDES := -I$(PLUGIN_SRC_DIR)
|
c@40
|
19
|
c@40
|
20 include $(PIPER_VAMP_JS_DIR)/Makefile.inc
|