Mercurial > hg > piper-vamp-js
annotate examples/vamp-example-plugins/Makefile @ 135:c5623bf080bc
Move examples to their own subdirs, tidy up a bit
author | Chris Cannam <c.cannam@qmul.ac.uk> |
---|---|
date | Fri, 11 Nov 2016 17:02:33 +0000 |
parents | |
children |
rev | line source |
---|---|
c@135 | 1 |
c@135 | 2 PIPER_VAMP_JS_DIR := ../.. |
c@135 | 3 PLUGIN_SRC_DIR := ../../../vamp-plugin-sdk/examples |
c@135 | 4 |
c@135 | 5 MODULE_NAME := VampExamplePlugins |
c@135 | 6 MODULE_SOURCE := vamp-example-plugins.cpp |
c@135 | 7 |
c@135 | 8 SOURCE_FILES := \ |
c@135 | 9 ZeroCrossing.cpp \ |
c@135 | 10 SpectralCentroid.cpp \ |
c@135 | 11 PercussionOnsetDetector.cpp \ |
c@135 | 12 FixedTempoEstimator.cpp \ |
c@135 | 13 AmplitudeFollower.cpp \ |
c@135 | 14 PowerSpectrum.cpp |
c@135 | 15 |
c@135 | 16 PLUGIN_SOURCES := $(addprefix $(PLUGIN_SRC_DIR)/,$(SOURCE_FILES)) |
c@135 | 17 |
c@135 | 18 INCLUDES := -I$(PLUGIN_SRC_DIR) |
c@135 | 19 |
c@135 | 20 include $(PIPER_VAMP_JS_DIR)/Makefile.inc |