annotate src/fftw-3.3.3/doc/Makefile.am @ 23:619f715526df sv_v2.1

Update Vamp plugin SDK to 2.5
author Chris Cannam
date Thu, 09 May 2013 10:52:46 +0100
parents 37bf6b4a2645
children
rev   line source
Chris@10 1 SUBDIRS = FAQ
Chris@10 2
Chris@10 3 info_TEXINFOS = fftw3.texi
Chris@10 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@10 5
Chris@10 6 DVIPS = dvips -Pwww
Chris@10 7
Chris@10 8 EQN_IMAGES = equation-dft.png equation-dht.png equation-idft.png \
Chris@10 9 equation-redft00.png equation-redft01.png equation-redft10.png \
Chris@10 10 equation-redft11.png equation-rodft00.png equation-rodft01.png \
Chris@10 11 equation-rodft10.png equation-rodft11.png
Chris@10 12
Chris@10 13 EXTRA_DIST = f77_wisdom.f fftw3.pdf html rfftwnd.fig rfftwnd.eps \
Chris@10 14 rfftwnd.pdf rfftwnd-for-html.png $(EQN_IMAGES)
Chris@10 15
Chris@10 16 html: $(fftw3_TEXINFOS) $(EQN_IMAGES) rfftwnd-for-html.png
Chris@10 17 $(MAKEINFO) $(AM_MAKEINFOFLAGS) $(MAKEINFOFLAGS) -I $(srcdir) \
Chris@10 18 --html --number-sections -o html fftw3.texi
Chris@10 19 for i in $(EQN_IMAGES); do cp -f ${srcdir}/$$i html; done
Chris@10 20 cp -f rfftwnd-for-html.png html
Chris@10 21
Chris@10 22 maintainer-clean-local:
Chris@10 23 rm -rf html
Chris@10 24
Chris@10 25 if MAINTAINER_MODE
Chris@10 26 # generate the figure for the manual and distribute the binaries, so that
Chris@10 27 # people don't need to have fig2dev installed.
Chris@10 28 rfftwnd.eps: rfftwnd.fig
Chris@10 29 fig2dev -L eps -m .7 ${srcdir}/rfftwnd.fig rfftwnd.eps
Chris@10 30
Chris@10 31 rfftwnd-for-html.png: rfftwnd.fig
Chris@10 32 fig2dev -L png -m 1 ${srcdir}/rfftwnd.fig rfftwnd-for-html.png
Chris@10 33
Chris@10 34 rfftwnd.pdf: rfftwnd.fig
Chris@10 35 fig2dev -L pdf -m .7 ${srcdir}/rfftwnd.fig rfftwnd.pdf
Chris@10 36
Chris@10 37 endif