annotate fft/fftw/fftw-3.3.4/doc/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 SUBDIRS = FAQ
Chris@19 2
Chris@19 3 info_TEXINFOS = fftw3.texi
Chris@19 4 fftw3_TEXINFOS = acknowledgements.texi cindex.texi fftw3.texi findex.texi install.texi intro.texi legacy-fortran.texi license.texi modern-fortran.texi mpi.texi other.texi reference.texi threads.texi tutorial.texi upgrading.texi version.texi rfftwnd.pdf rfftwnd.eps
Chris@19 5
Chris@19 6 DVIPS = dvips -Pwww
Chris@19 7
Chris@19 8 EQN_IMAGES = equation-dft.png equation-dht.png equation-idft.png \
Chris@19 9 equation-redft00.png equation-redft01.png equation-redft10.png \
Chris@19 10 equation-redft11.png equation-rodft00.png equation-rodft01.png \
Chris@19 11 equation-rodft10.png equation-rodft11.png
Chris@19 12
Chris@19 13 EXTRA_DIST = f77_wisdom.f fftw3.pdf html rfftwnd.fig rfftwnd.eps \
Chris@19 14 rfftwnd.pdf rfftwnd-for-html.png $(EQN_IMAGES)
Chris@19 15
Chris@19 16 html: $(fftw3_TEXINFOS) $(EQN_IMAGES) rfftwnd-for-html.png
Chris@19 17 $(MAKEINFO) $(AM_MAKEINFOFLAGS) $(MAKEINFOFLAGS) -I $(srcdir) \
Chris@19 18 --html --number-sections -o html fftw3.texi
Chris@19 19 for i in $(EQN_IMAGES); do cp -f ${srcdir}/$$i html; done
Chris@19 20 cp -f ${srcdir}/rfftwnd-for-html.png html
Chris@19 21
Chris@19 22 maintainer-clean-local:
Chris@19 23 rm -rf html
Chris@19 24
Chris@19 25 if MAINTAINER_MODE
Chris@19 26 # generate the figure for the manual and distribute the binaries, so that
Chris@19 27 # people don't need to have fig2dev installed.
Chris@19 28 rfftwnd.eps: rfftwnd.fig
Chris@19 29 fig2dev -L eps -m .7 ${srcdir}/rfftwnd.fig rfftwnd.eps
Chris@19 30
Chris@19 31 rfftwnd-for-html.png: rfftwnd.fig
Chris@19 32 fig2dev -L png -m 1 ${srcdir}/rfftwnd.fig rfftwnd-for-html.png
Chris@19 33
Chris@19 34 rfftwnd.pdf: rfftwnd.fig
Chris@19 35 fig2dev -L pdf -m .7 ${srcdir}/rfftwnd.fig rfftwnd.pdf
Chris@19 36
Chris@19 37 endif