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