annotate src/fftw-3.3.5/api/Makefile.am @ 56:af97cad61ff0

Add updated build of PortAudio for OSX
author Chris Cannam <cannam@all-day-breakfast.com>
date Tue, 03 Jan 2017 15:10:52 +0000
parents 2cd0e3b3e1fd
children
rev   line source
Chris@42 1 AM_CPPFLAGS = -I$(top_srcdir)/kernel -I$(top_srcdir)/dft \
Chris@42 2 -I$(top_srcdir)/rdft -I$(top_srcdir)/reodft
Chris@42 3 AM_CFLAGS = $(STACK_ALIGN_CFLAGS)
Chris@42 4
Chris@42 5 EXTRA_DIST = f03api.sh genf03.pl fftw3.f03.in
Chris@42 6
Chris@42 7 include_HEADERS = fftw3.h fftw3.f fftw3l.f03 fftw3q.f03
Chris@42 8 nodist_include_HEADERS = fftw3.f03
Chris@42 9 noinst_LTLIBRARIES = libapi.la
Chris@42 10
Chris@42 11 # pkgincludedir = $(includedir)/fftw3@PREC_SUFFIX@
Chris@42 12 # pkginclude_HEADERS = api.h x77.h guru.h guru64.h
Chris@42 13
Chris@42 14 libapi_la_SOURCES = apiplan.c configure.c execute-dft-c2r.c \
Chris@42 15 execute-dft-r2c.c execute-dft.c execute-r2r.c execute-split-dft-c2r.c \
Chris@42 16 execute-split-dft-r2c.c execute-split-dft.c execute.c \
Chris@42 17 export-wisdom-to-file.c export-wisdom-to-string.c export-wisdom.c \
Chris@42 18 f77api.c flops.c forget-wisdom.c import-system-wisdom.c \
Chris@42 19 import-wisdom-from-file.c import-wisdom-from-string.c import-wisdom.c \
Chris@42 20 malloc.c map-r2r-kind.c mapflags.c mkprinter-file.c mkprinter-str.c \
Chris@42 21 mktensor-iodims.c mktensor-rowmajor.c plan-dft-1d.c plan-dft-2d.c \
Chris@42 22 plan-dft-3d.c plan-dft-c2r-1d.c plan-dft-c2r-2d.c plan-dft-c2r-3d.c \
Chris@42 23 plan-dft-c2r.c plan-dft-r2c-1d.c plan-dft-r2c-2d.c plan-dft-r2c-3d.c \
Chris@42 24 plan-dft-r2c.c plan-dft.c plan-guru-dft-c2r.c plan-guru-dft-r2c.c \
Chris@42 25 plan-guru-dft.c plan-guru-r2r.c plan-guru-split-dft-c2r.c \
Chris@42 26 plan-guru-split-dft-r2c.c plan-guru-split-dft.c plan-many-dft-c2r.c \
Chris@42 27 plan-many-dft-r2c.c plan-many-dft.c plan-many-r2r.c plan-r2r-1d.c \
Chris@42 28 plan-r2r-2d.c plan-r2r-3d.c plan-r2r.c print-plan.c rdft2-pad.c \
Chris@42 29 the-planner.c version.c api.h f77funcs.h fftw3.h x77.h guru.h \
Chris@42 30 guru64.h mktensor-iodims.h plan-guru-dft-c2r.h plan-guru-dft-r2c.h \
Chris@42 31 plan-guru-dft.h plan-guru-r2r.h plan-guru-split-dft-c2r.h \
Chris@42 32 plan-guru-split-dft-r2c.h plan-guru-split-dft.h plan-guru64-dft-c2r.c \
Chris@42 33 plan-guru64-dft-r2c.c plan-guru64-dft.c plan-guru64-r2r.c \
Chris@42 34 plan-guru64-split-dft-c2r.c plan-guru64-split-dft-r2c.c \
Chris@42 35 plan-guru64-split-dft.c mktensor-iodims64.c
Chris@42 36
Chris@42 37 BUILT_SOURCES = fftw3.f fftw3.f03.in fftw3.f03 fftw3l.f03 fftw3q.f03
Chris@42 38 CLEANFILES = fftw3.f03
Chris@42 39
Chris@42 40 fftw3.f03: fftw3.f03.in
Chris@42 41 (echo "! Generated automatically. DO NOT EDIT!"; echo; \
Chris@42 42 echo " integer, parameter :: C_FFTW_R2R_KIND = @C_FFTW_R2R_KIND@"; \
Chris@42 43 grep -v "Generated automatically" $(srcdir)/fftw3.f03.in) > $@
Chris@42 44
Chris@42 45 if MAINTAINER_MODE
Chris@42 46
Chris@42 47 # convert constants to F77 PARAMETER statements
Chris@42 48 fftw3.f: fftw3.h
Chris@42 49 rm -f $@
Chris@42 50 perl -pe 's/([A-Z0-9_]+)=([+-]?[0-9]+)/\n INTEGER \1\n PARAMETER (\1=\2)\n/g' $< |egrep 'PARAMETER|INTEGER' > $@
Chris@42 51 perl -pe 's/#define +([A-Z0-9_]+) +\(([+-]?[0-9]+)U?\)/\n INTEGER \1\n PARAMETER (\1=\2)\n/g' $< |egrep 'PARAMETER|INTEGER' >> $@
Chris@42 52 perl -pe 'if (/#define +([A-Z0-9_]+) +\(([0-9]+)U? *<< *([0-9]+)\)/) { print "\n INTEGER $$1\n PARAMETER ($$1=",$$2 << $$3,")\n"; }' $< |egrep 'PARAMETER|INTEGER' >> $@
Chris@42 53
Chris@42 54 fftw3.f03.in: fftw3.h f03api.sh genf03.pl
Chris@42 55 sh $(srcdir)/f03api.sh d f > $@
Chris@42 56
Chris@42 57 fftw3l.f03: fftw3.h f03api.sh genf03.pl
Chris@42 58 sh $(srcdir)/f03api.sh l | grep -v parameter > $@
Chris@42 59
Chris@42 60 fftw3q.f03: fftw3.h f03api.sh genf03.pl
Chris@42 61 sh $(srcdir)/f03api.sh q | grep -v parameter > $@
Chris@42 62
Chris@42 63 endif # MAINTAINER_MODE