Mercurial > hg > decimation
view qm-dsp-resample/Makefile @ 24:96e9b4e2ae86
Rearrange to use resampler from within qm-dsp; run (and print results of) timing tests as well
author | Chris Cannam |
---|---|
date | Mon, 21 Oct 2013 10:44:05 +0100 |
parents | garage-resampler/Makefile@1879a2997ebf |
children |
line wrap: on
line source
DEFINES := -DUSE_PTHREADS CFLAGS := -I../.. $(CFLAGS) $(DEFINES) #CXXFLAGS := -I../.. -Wall -g $(CXXFLAGS) $(DEFINES) CXXFLAGS := -I../.. -Wall -O3 -ffast-math -ftree-vectorize $(CXXFLAGS) $(DEFINES) LIBS := ../../qm-dsp/libqm-dsp.a -lpthread PROGRAM_LIBS := -lsndfile LDFLAGS := $(LDFLAGS) PROGRAM := resample #VG := valgrind all: $(PROGRAM) resample: resample.o $(CXX) -o $@ $^ $(LDFLAGS) $(LIBS) $(PROGRAM_LIBS) clean: rm -f *.o