Mercurial > hg > qm-dsp
diff tests/Makefile @ 150:23558405a7d1
Integrate resampler and tests into build system etc
| author | Chris Cannam |
|---|---|
| date | Mon, 21 Oct 2013 09:40:22 +0100 |
| parents | 6ec45e85ed81 |
| children | 36bcde3c13d8 |
line wrap: on
line diff
--- a/tests/Makefile Fri Oct 18 14:57:48 2013 +0100 +++ b/tests/Makefile Mon Oct 21 09:40:22 2013 +0100 @@ -5,7 +5,7 @@ LDFLAGS := $(LDFLAGS) -lboost_unit_test_framework LIBS := ../libqm-dsp.a -TESTS := test-mathutilities test-window test-fft test-pvoc +TESTS := test-mathutilities test-window test-fft test-pvoc test-resampler #VG := valgrind @@ -24,10 +24,14 @@ test-pvoc: TestPhaseVocoder.o $(LIBS) $(CXX) -o $@ $^ $(LDFLAGS) +test-resampler: TestResampler.o $(LIBS) + $(CXX) -o $@ $^ $(LDFLAGS) + TestMathUtilities.o: $(LIBS) TestWindow.o: $(LIBS) TestFFT.o: $(LIBS) TestPhaseVocoder.o: $(LIBS) +TestResampler.o: $(LIBS) clean: rm -f *.o $(TESTS)
