Remove obsolete fixed-point test.

This commit is contained in:
Themaister 2012-10-30 23:54:30 +01:00
parent 434089c0ac
commit ff9167f56b

View File

@ -1,4 +1,4 @@
TESTS := test-hermite test-sinc test-sinc-fixed test-snr-sinc test-snr-hermite
TESTS := test-hermite test-sinc test-snr-sinc test-snr-hermite
CFLAGS += -O3 -g -Wall -pedantic -std=gnu99 -DRESAMPLER_TEST
LDFLAGS += -lm
@ -11,18 +11,12 @@ test-hermite: ../hermite.o ../utils.o main.o
test-sinc: ../sinc.o ../utils.o main.o
$(CC) -o $@ $^ $(LDFLAGS)
test-sinc-fixed: ../sinc-fixed.o main-fixed.o
$(CC) -o $@ $^ $(LDFLAGS)
test-snr-sinc: ../sinc.o ../utils.o snr.o
$(CC) -o $@ $^ $(LDFLAGS)
test-snr-hermite: ../hermite.o ../utils.o snr.o
$(CC) -o $@ $^ $(LDFLAGS)
%-fixed.o: %.c
$(CC) -c -o $@ $< $(CFLAGS) -DHAVE_FIXED_POINT
%.o: %.c
$(CC) -c -o $@ $< $(CFLAGS)