annotate vamp-example-plugins/Makefile @ 56:5e9027b32179
tip master
Fixes for updated subrepos
author |
Chris Cannam <cannam@all-day-breakfast.com> |
date |
Wed, 16 May 2018 15:51:14 +0100 |
parents |
ec5b5a9adac2 |
children |
|
rev |
line source |
c@40
|
1
|
c@50
|
2 PIPER_VAMP_JS_DIR := ../ext/piper-vamp-js
|
c@50
|
3 PLUGIN_SRC_DIR := ../ext/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
|