Revision 51:0997774f5fdc Makefile.inc
| Makefile.inc | ||
|---|---|---|
| 24 | 24 |
|
| 25 | 25 |
PLUGIN_MAIN := libmain.cpp |
| 26 | 26 |
|
| 27 |
TESTS := test/test-notehypothesis \ |
|
| 28 |
test/test-meanfilter \ |
|
| 27 |
TESTS := test/test-meanfilter \ |
|
| 29 | 28 |
test/test-fft \ |
| 30 |
test/test-peakinterpolator |
|
| 31 |
|
|
| 29 |
test/test-cepstrum \ |
|
| 30 |
test/test-peakinterpolator \ |
|
| 31 |
test/test-notehypothesis |
|
| 32 |
|
|
| 32 | 33 |
OBJECTS := $(SOURCES:.cpp=.o) |
| 33 | 34 |
OBJECTS := $(OBJECTS:.c=.o) |
| 34 | 35 |
|
| ... | ... | |
| 46 | 47 |
test/test-meanfilter: test/TestMeanFilter.o $(OBJECTS) |
| 47 | 48 |
$(CXX) -o $@ $^ $(TEST_LDFLAGS) |
| 48 | 49 |
|
| 50 |
test/test-cepstrum: test/TestCepstrum.o $(OBJECTS) |
|
| 51 |
$(CXX) -o $@ $^ $(TEST_LDFLAGS) |
|
| 52 |
|
|
| 49 | 53 |
test/test-fft: test/TestFFT.o $(OBJECTS) |
| 50 | 54 |
$(CXX) -o $@ $^ $(TEST_LDFLAGS) |
| 51 | 55 |
|
| ... | ... | |
| 58 | 62 |
distclean: clean |
| 59 | 63 |
rm -f $(PLUGIN) $(TESTS) |
| 60 | 64 |
|
| 65 |
depend: |
|
| 66 |
makedepend -Y -fMakefile.inc *.cpp test/*.cpp *.h test/*.h |
|
| 67 |
|
|
| 61 | 68 |
# DO NOT DELETE |
| 62 | 69 |
|
| 63 |
CepstralPitchTracker.o: CepstralPitchTracker.h NoteHypothesis.h |
|
| 70 |
CepstralPitchTracker.o: CepstralPitchTracker.h NoteHypothesis.h Cepstrum.h |
|
| 71 |
CepstralPitchTracker.o: MeanFilter.h PeakInterpolator.h |
|
| 64 | 72 |
libmain.o: CepstralPitchTracker.h NoteHypothesis.h |
| 65 | 73 |
NoteHypothesis.o: NoteHypothesis.h |
| 66 | 74 |
PeakInterpolator.o: PeakInterpolator.h |
| 75 |
test/TestCepstrum.o: Cepstrum.h |
|
| 76 |
test/TestMeanFilter.o: MeanFilter.h |
|
| 67 | 77 |
test/TestNoteHypothesis.o: NoteHypothesis.h |
| 68 | 78 |
test/TestPeakInterpolator.o: PeakInterpolator.h |
| 79 |
CepstralPitchTracker.o: NoteHypothesis.h |
|
Also available in: Unified diff