Mercurial > hg > qm-dsp
view tests/Makefile @ 129:6ec45e85ed81 kissfft
Drop in kissfft to replace the "old" fft, and add tests for newly-supported sizes
| author | Chris Cannam |
|---|---|
| date | Tue, 15 Oct 2013 11:38:18 +0100 |
| parents | a37635bbb2c1 |
| children | 23558405a7d1 |
line wrap: on
line source
CFLAGS := -I.. $(CFLAGS) CXXFLAGS := -I.. -Wall -g $(CXXFLAGS) LDFLAGS := $(LDFLAGS) -lboost_unit_test_framework LIBS := ../libqm-dsp.a TESTS := test-mathutilities test-window test-fft test-pvoc #VG := valgrind all: $(TESTS) for t in $(TESTS); do echo "Running $$t"; $(VG) ./"$$t" || exit 1; done test-mathutilities: TestMathUtilities.o $(LIBS) $(CXX) -o $@ $^ $(LDFLAGS) test-window: TestWindow.o $(LIBS) $(CXX) -o $@ $^ $(LDFLAGS) test-fft: TestFFT.o $(LIBS) $(CXX) -o $@ $^ $(LDFLAGS) test-pvoc: TestPhaseVocoder.o $(LIBS) $(CXX) -o $@ $^ $(LDFLAGS) TestMathUtilities.o: $(LIBS) TestWindow.o: $(LIBS) TestFFT.o: $(LIBS) TestPhaseVocoder.o: $(LIBS) clean: rm -f *.o $(TESTS)
