Mercurial > hg > qm-dsp
comparison build/general/Makefile.inc @ 89:abb024bf1cf6
* First bit of work on non-qmake make
| author | Chris Cannam |
|---|---|
| date | Wed, 09 Feb 2011 09:51:54 +0000 |
| parents | |
| children | 110efec1275c |
comparison
equal
deleted
inserted
replaced
| 88:e4d055c240b3 | 89:abb024bf1cf6 |
|---|---|
| 1 | |
| 2 HEADERS := base/Pitch.h \ | |
| 3 base/Window.h \ | |
| 4 dsp/chromagram/Chromagram.h \ | |
| 5 dsp/chromagram/ConstantQ.h \ | |
| 6 dsp/keydetection/GetKeyMode.h \ | |
| 7 dsp/mfcc/MFCC.h \ | |
| 8 dsp/onsets/DetectionFunction.h \ | |
| 9 dsp/onsets/PeakPicking.h \ | |
| 10 dsp/phasevocoder/PhaseVocoder.h \ | |
| 11 dsp/rateconversion/Decimator.h \ | |
| 12 dsp/rhythm/BeatSpectrum.h \ | |
| 13 dsp/segmentation/cluster_melt.h \ | |
| 14 dsp/segmentation/ClusterMeltSegmenter.h \ | |
| 15 dsp/segmentation/cluster_segmenter.h \ | |
| 16 dsp/segmentation/Segmenter.h \ | |
| 17 dsp/segmentation/segment.h \ | |
| 18 dsp/signalconditioning/DFProcess.h \ | |
| 19 dsp/signalconditioning/Filter.h \ | |
| 20 dsp/signalconditioning/FiltFilt.h \ | |
| 21 dsp/signalconditioning/Framer.h \ | |
| 22 dsp/tempotracking/DownBeat.h \ | |
| 23 dsp/tempotracking/TempoTrack.h \ | |
| 24 dsp/tempotracking/TempoTrackV2.h \ | |
| 25 dsp/tonal/ChangeDetectionFunction.h \ | |
| 26 dsp/tonal/TCSgram.h \ | |
| 27 dsp/tonal/TonalEstimator.h \ | |
| 28 dsp/transforms/FFT.h \ | |
| 29 dsp/wavelet/Wavelet.h \ | |
| 30 hmm/hmm.h \ | |
| 31 maths/Correlation.h \ | |
| 32 maths/CosineDistance.h \ | |
| 33 maths/KLDivergence.h \ | |
| 34 maths/MathAliases.h \ | |
| 35 maths/MathUtilities.h \ | |
| 36 maths/Polyfit.h \ | |
| 37 maths/pca/pca.h \ | |
| 38 thread/AsynchronousTask.h \ | |
| 39 thread/BlockAllocator.h \ | |
| 40 thread/Thread.h | |
| 41 | |
| 42 SOURCES := base/Pitch.cpp \ | |
| 43 dsp/chromagram/Chromagram.cpp \ | |
| 44 dsp/chromagram/ConstantQ.cpp \ | |
| 45 dsp/keydetection/GetKeyMode.cpp \ | |
| 46 dsp/mfcc/MFCC.cpp \ | |
| 47 dsp/onsets/DetectionFunction.cpp \ | |
| 48 dsp/onsets/PeakPicking.cpp \ | |
| 49 dsp/phasevocoder/PhaseVocoder.cpp \ | |
| 50 dsp/rateconversion/Decimator.cpp \ | |
| 51 dsp/rhythm/BeatSpectrum.cpp \ | |
| 52 dsp/segmentation/cluster_melt.c \ | |
| 53 dsp/segmentation/ClusterMeltSegmenter.cpp \ | |
| 54 dsp/segmentation/cluster_segmenter.c \ | |
| 55 dsp/segmentation/Segmenter.cpp \ | |
| 56 dsp/signalconditioning/DFProcess.cpp \ | |
| 57 dsp/signalconditioning/Filter.cpp \ | |
| 58 dsp/signalconditioning/FiltFilt.cpp \ | |
| 59 dsp/signalconditioning/Framer.cpp \ | |
| 60 dsp/tempotracking/DownBeat.cpp \ | |
| 61 dsp/tempotracking/TempoTrack.cpp \ | |
| 62 dsp/tempotracking/TempoTrackV2.cpp \ | |
| 63 dsp/tonal/ChangeDetectionFunction.cpp \ | |
| 64 dsp/tonal/TCSgram.cpp \ | |
| 65 dsp/tonal/TonalEstimator.cpp \ | |
| 66 dsp/transforms/FFT.cpp \ | |
| 67 dsp/wavelet/Wavelet.cpp \ | |
| 68 hmm/hmm.c \ | |
| 69 maths/Correlation.cpp \ | |
| 70 maths/CosineDistance.cpp \ | |
| 71 maths/KLDivergence.cpp \ | |
| 72 maths/MathUtilities.cpp \ | |
| 73 maths/pca/pca.c \ | |
| 74 thread/Thread.cpp | |
| 75 | |
| 76 OBJECTS := $(SOURCES:.cpp=.o) | |
| 77 OBJECTS := $(OBJECTS:.c=.o) | |
| 78 |
