c@314
|
1
|
c@314
|
2 HEADERS := base/Pitch.h \
|
c@314
|
3 base/Window.h \
|
c@314
|
4 dsp/chromagram/Chromagram.h \
|
c@314
|
5 dsp/chromagram/ConstantQ.h \
|
c@314
|
6 dsp/keydetection/GetKeyMode.h \
|
c@314
|
7 dsp/mfcc/MFCC.h \
|
c@314
|
8 dsp/onsets/DetectionFunction.h \
|
c@314
|
9 dsp/onsets/PeakPicking.h \
|
c@314
|
10 dsp/phasevocoder/PhaseVocoder.h \
|
c@314
|
11 dsp/rateconversion/Decimator.h \
|
c@314
|
12 dsp/rhythm/BeatSpectrum.h \
|
c@314
|
13 dsp/segmentation/cluster_melt.h \
|
c@314
|
14 dsp/segmentation/ClusterMeltSegmenter.h \
|
c@314
|
15 dsp/segmentation/cluster_segmenter.h \
|
c@314
|
16 dsp/segmentation/Segmenter.h \
|
c@314
|
17 dsp/segmentation/segment.h \
|
c@314
|
18 dsp/signalconditioning/DFProcess.h \
|
c@314
|
19 dsp/signalconditioning/Filter.h \
|
c@314
|
20 dsp/signalconditioning/FiltFilt.h \
|
c@314
|
21 dsp/signalconditioning/Framer.h \
|
c@314
|
22 dsp/tempotracking/DownBeat.h \
|
c@314
|
23 dsp/tempotracking/TempoTrack.h \
|
c@314
|
24 dsp/tempotracking/TempoTrackV2.h \
|
c@314
|
25 dsp/tonal/ChangeDetectionFunction.h \
|
c@314
|
26 dsp/tonal/TCSgram.h \
|
c@314
|
27 dsp/tonal/TonalEstimator.h \
|
c@314
|
28 dsp/transforms/FFT.h \
|
c@314
|
29 dsp/wavelet/Wavelet.h \
|
c@314
|
30 hmm/hmm.h \
|
c@314
|
31 maths/Correlation.h \
|
c@314
|
32 maths/CosineDistance.h \
|
c@314
|
33 maths/KLDivergence.h \
|
c@314
|
34 maths/MathAliases.h \
|
c@314
|
35 maths/MathUtilities.h \
|
c@314
|
36 maths/Polyfit.h \
|
c@314
|
37 maths/pca/pca.h \
|
c@314
|
38 thread/AsynchronousTask.h \
|
c@314
|
39 thread/BlockAllocator.h \
|
c@314
|
40 thread/Thread.h
|
c@314
|
41
|
c@314
|
42 SOURCES := base/Pitch.cpp \
|
c@314
|
43 dsp/chromagram/Chromagram.cpp \
|
c@314
|
44 dsp/chromagram/ConstantQ.cpp \
|
c@314
|
45 dsp/keydetection/GetKeyMode.cpp \
|
c@314
|
46 dsp/mfcc/MFCC.cpp \
|
c@314
|
47 dsp/onsets/DetectionFunction.cpp \
|
c@314
|
48 dsp/onsets/PeakPicking.cpp \
|
c@314
|
49 dsp/phasevocoder/PhaseVocoder.cpp \
|
c@314
|
50 dsp/rateconversion/Decimator.cpp \
|
c@314
|
51 dsp/rhythm/BeatSpectrum.cpp \
|
c@314
|
52 dsp/segmentation/cluster_melt.c \
|
c@314
|
53 dsp/segmentation/ClusterMeltSegmenter.cpp \
|
c@314
|
54 dsp/segmentation/cluster_segmenter.c \
|
c@314
|
55 dsp/segmentation/Segmenter.cpp \
|
c@314
|
56 dsp/signalconditioning/DFProcess.cpp \
|
c@314
|
57 dsp/signalconditioning/Filter.cpp \
|
c@314
|
58 dsp/signalconditioning/FiltFilt.cpp \
|
c@314
|
59 dsp/signalconditioning/Framer.cpp \
|
c@314
|
60 dsp/tempotracking/DownBeat.cpp \
|
c@314
|
61 dsp/tempotracking/TempoTrack.cpp \
|
c@314
|
62 dsp/tempotracking/TempoTrackV2.cpp \
|
c@314
|
63 dsp/tonal/ChangeDetectionFunction.cpp \
|
c@314
|
64 dsp/tonal/TCSgram.cpp \
|
c@314
|
65 dsp/tonal/TonalEstimator.cpp \
|
c@314
|
66 dsp/transforms/FFT.cpp \
|
c@314
|
67 dsp/wavelet/Wavelet.cpp \
|
c@314
|
68 hmm/hmm.c \
|
c@314
|
69 maths/Correlation.cpp \
|
c@314
|
70 maths/CosineDistance.cpp \
|
c@314
|
71 maths/KLDivergence.cpp \
|
c@314
|
72 maths/MathUtilities.cpp \
|
c@314
|
73 maths/pca/pca.c \
|
c@314
|
74 thread/Thread.cpp
|
c@314
|
75
|
c@314
|
76 OBJECTS := $(SOURCES:.cpp=.o)
|
c@314
|
77 OBJECTS := $(OBJECTS:.c=.o)
|
c@314
|
78
|