Mercurial > hg > qm-dsp
diff tests/Makefile @ 192:3780b91297ea
Add filter test
| author | Chris Cannam |
|---|---|
| date | Wed, 07 Oct 2015 10:07:30 +0100 |
| parents | 857ca50ca25f |
| children | 0990c1cb4049 |
line wrap: on
line diff
--- a/tests/Makefile Wed Oct 07 09:55:35 2015 +0100 +++ b/tests/Makefile Wed Oct 07 10:07:30 2015 +0100 @@ -5,7 +5,7 @@ LDFLAGS := $(LDFLAGS) -lboost_unit_test_framework -lpthread LIBS := ../libqm-dsp.a -TESTS := test-mathutilities test-window test-fft test-dct test-pvoc test-resampler test-medianfilter +TESTS := test-mathutilities test-window test-filter test-fft test-dct test-pvoc test-resampler test-medianfilter VG := valgrind -q @@ -21,6 +21,9 @@ test-window: TestWindow.o $(LIBS) $(CXX) -o $@ $^ $(LDFLAGS) +test-filter: TestFilter.o $(LIBS) + $(CXX) -o $@ $^ $(LDFLAGS) + test-fft: TestFFT.o $(LIBS) $(CXX) -o $@ $^ $(LDFLAGS) @@ -36,6 +39,7 @@ TestMathUtilities.o: $(LIBS) TestMedianFilter.o: $(LIBS) TestWindow.o: $(LIBS) +TestFilter.o: $(LIBS) TestFFT.o: $(LIBS) TestDCT.o: $(LIBS) TestPhaseVocoder.o: $(LIBS)
