annotate tipic/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@43
|
1
|
c@50
|
2 PIPER_VAMP_JS_DIR := ../ext/piper-vamp-js
|
c@50
|
3 PLUGIN_DIR := ../ext/tipic
|
c@43
|
4
|
c@43
|
5 SRC_DIR := $(PLUGIN_DIR)/src
|
c@43
|
6 QMDSP_DIR := $(PLUGIN_DIR)/qm-dsp
|
c@43
|
7
|
c@43
|
8 MODULE_NAME := Tipic
|
c@43
|
9 MODULE_SOURCE := tipic.cpp
|
c@43
|
10
|
c@43
|
11 PLUGIN_SOURCES := \
|
c@43
|
12 $(SRC_DIR)/PitchFilterbank.cpp \
|
c@43
|
13 $(SRC_DIR)/CRP.cpp \
|
c@43
|
14 $(SRC_DIR)/Chroma.cpp \
|
c@43
|
15 $(SRC_DIR)/FeatureDownsample.cpp \
|
c@43
|
16 $(SRC_DIR)/CENS.cpp \
|
c@43
|
17 $(SRC_DIR)/TipicVampPlugin.cpp \
|
c@43
|
18 $(QMDSP_DIR)/dsp/signalconditioning/Filter.cpp \
|
c@43
|
19 $(QMDSP_DIR)/dsp/transforms/DCT.cpp \
|
c@43
|
20 $(QMDSP_DIR)/dsp/transforms/FFT.cpp \
|
c@43
|
21 $(QMDSP_DIR)/dsp/rateconversion/Resampler.cpp \
|
c@43
|
22 $(QMDSP_DIR)/maths/MathUtilities.cpp \
|
c@43
|
23 $(QMDSP_DIR)/base/KaiserWindow.cpp \
|
c@43
|
24 $(QMDSP_DIR)/base/SincWindow.cpp
|
c@43
|
25
|
c@43
|
26 PLUGIN_C_SOURCES := \
|
c@43
|
27 $(QMDSP_DIR)/ext/kissfft/kiss_fft.c \
|
c@43
|
28 $(QMDSP_DIR)/ext/kissfft/tools/kiss_fftr.c
|
c@43
|
29
|
c@43
|
30 DEFINES := -Dkiss_fft_scalar=double
|
c@43
|
31 INCLUDES := -I$(SRC_DIR) -I$(QMDSP_DIR) -I$(QMDSP_DIR)/ext/kissfft -I$(QMDSP_DIR)/ext/kissfft/tools
|
c@43
|
32
|
c@43
|
33 include $(PIPER_VAMP_JS_DIR)/Makefile.inc
|