annotate src/fftw-3.3.3/threads/Makefile.am @ 75:8f7fd4420df7

Add some cross-platform Boost headers
author Chris Cannam
date Sat, 16 Feb 2019 16:31:25 +0000
parents 37bf6b4a2645
children
rev   line source
Chris@10 1 AM_CPPFLAGS = -I$(top_srcdir)/kernel -I$(top_srcdir)/dft \
Chris@10 2 -I$(top_srcdir)/rdft -I$(top_srcdir)/api
Chris@10 3 AM_CFLAGS = $(STACK_ALIGN_CFLAGS)
Chris@10 4
Chris@10 5 if OPENMP
Chris@10 6 FFTWOMPLIB = libfftw3@PREC_SUFFIX@_omp.la
Chris@10 7 else
Chris@10 8 FFTWOMPLIB =
Chris@10 9 endif
Chris@10 10
Chris@10 11 if THREADS
Chris@10 12 if COMBINED_THREADS
Chris@10 13 noinst_LTLIBRARIES = libfftw3@PREC_SUFFIX@_threads.la
Chris@10 14 else
Chris@10 15 lib_LTLIBRARIES = libfftw3@PREC_SUFFIX@_threads.la $(FFTWOMPLIB)
Chris@10 16 endif
Chris@10 17 else
Chris@10 18 lib_LTLIBRARIES = $(FFTWOMPLIB)
Chris@10 19 endif
Chris@10 20
Chris@10 21 # pkgincludedir = $(includedir)/fftw3@PREC_SUFFIX@
Chris@10 22 # pkginclude_HEADERS = threads.h
Chris@10 23
Chris@10 24 libfftw3@PREC_SUFFIX@_threads_la_SOURCES = api.c conf.c threads.c \
Chris@10 25 threads.h dft-vrank-geq1.c ct.c rdft-vrank-geq1.c hc2hc.c \
Chris@10 26 vrank-geq1-rdft2.c f77api.c f77funcs.h
Chris@10 27 libfftw3@PREC_SUFFIX@_threads_la_CFLAGS = $(AM_CFLAGS) $(PTHREAD_CFLAGS)
Chris@10 28 libfftw3@PREC_SUFFIX@_threads_la_LDFLAGS = -version-info @SHARED_VERSION_INFO@
Chris@10 29 if !COMBINED_THREADS
Chris@10 30 libfftw3@PREC_SUFFIX@_threads_la_LIBADD = ../libfftw3@PREC_SUFFIX@.la
Chris@10 31 endif
Chris@10 32
Chris@10 33 libfftw3@PREC_SUFFIX@_omp_la_SOURCES = api.c conf.c openmp.c \
Chris@10 34 threads.h dft-vrank-geq1.c ct.c rdft-vrank-geq1.c hc2hc.c \
Chris@10 35 vrank-geq1-rdft2.c f77api.c f77funcs.h
Chris@10 36 libfftw3@PREC_SUFFIX@_omp_la_CFLAGS = $(AM_CFLAGS) $(OPENMP_CFLAGS)
Chris@10 37 libfftw3@PREC_SUFFIX@_omp_la_LDFLAGS = -version-info @SHARED_VERSION_INFO@
Chris@10 38 if !COMBINED_THREADS
Chris@10 39 libfftw3@PREC_SUFFIX@_omp_la_LIBADD = ../libfftw3@PREC_SUFFIX@.la
Chris@10 40 endif