Mercurial > hg > js-dsp-test
annotate fft/fftw/fftw-3.3.4/threads/Makefile.am @ 40:223f770b5341 kissfft-double tip
Try a double-precision kissfft
author | Chris Cannam |
---|---|
date | Wed, 07 Sep 2016 10:40:32 +0100 |
parents | 26056e866c29 |
children |
rev | line source |
---|---|
Chris@19 | 1 AM_CPPFLAGS = -I$(top_srcdir)/kernel -I$(top_srcdir)/dft \ |
Chris@19 | 2 -I$(top_srcdir)/rdft -I$(top_srcdir)/api |
Chris@19 | 3 AM_CFLAGS = $(STACK_ALIGN_CFLAGS) |
Chris@19 | 4 |
Chris@19 | 5 if OPENMP |
Chris@19 | 6 FFTWOMPLIB = libfftw3@PREC_SUFFIX@_omp.la |
Chris@19 | 7 else |
Chris@19 | 8 FFTWOMPLIB = |
Chris@19 | 9 endif |
Chris@19 | 10 |
Chris@19 | 11 if THREADS |
Chris@19 | 12 if COMBINED_THREADS |
Chris@19 | 13 noinst_LTLIBRARIES = libfftw3@PREC_SUFFIX@_threads.la |
Chris@19 | 14 else |
Chris@19 | 15 lib_LTLIBRARIES = libfftw3@PREC_SUFFIX@_threads.la $(FFTWOMPLIB) |
Chris@19 | 16 endif |
Chris@19 | 17 else |
Chris@19 | 18 lib_LTLIBRARIES = $(FFTWOMPLIB) |
Chris@19 | 19 endif |
Chris@19 | 20 |
Chris@19 | 21 # pkgincludedir = $(includedir)/fftw3@PREC_SUFFIX@ |
Chris@19 | 22 # pkginclude_HEADERS = threads.h |
Chris@19 | 23 |
Chris@19 | 24 libfftw3@PREC_SUFFIX@_threads_la_SOURCES = api.c conf.c threads.c \ |
Chris@19 | 25 threads.h dft-vrank-geq1.c ct.c rdft-vrank-geq1.c hc2hc.c \ |
Chris@19 | 26 vrank-geq1-rdft2.c f77api.c f77funcs.h |
Chris@19 | 27 libfftw3@PREC_SUFFIX@_threads_la_CFLAGS = $(AM_CFLAGS) $(PTHREAD_CFLAGS) |
Chris@19 | 28 libfftw3@PREC_SUFFIX@_threads_la_LDFLAGS = -version-info @SHARED_VERSION_INFO@ |
Chris@19 | 29 if !COMBINED_THREADS |
Chris@19 | 30 libfftw3@PREC_SUFFIX@_threads_la_LIBADD = ../libfftw3@PREC_SUFFIX@.la |
Chris@19 | 31 endif |
Chris@19 | 32 |
Chris@19 | 33 libfftw3@PREC_SUFFIX@_omp_la_SOURCES = api.c conf.c openmp.c \ |
Chris@19 | 34 threads.h dft-vrank-geq1.c ct.c rdft-vrank-geq1.c hc2hc.c \ |
Chris@19 | 35 vrank-geq1-rdft2.c f77api.c f77funcs.h |
Chris@19 | 36 libfftw3@PREC_SUFFIX@_omp_la_CFLAGS = $(AM_CFLAGS) $(OPENMP_CFLAGS) |
Chris@19 | 37 libfftw3@PREC_SUFFIX@_omp_la_LDFLAGS = -version-info @SHARED_VERSION_INFO@ |
Chris@19 | 38 if !COMBINED_THREADS |
Chris@19 | 39 libfftw3@PREC_SUFFIX@_omp_la_LIBADD = ../libfftw3@PREC_SUFFIX@.la |
Chris@19 | 40 endif |