3e7e510
[reveal.js.git] /
1 SRC = media/src
2 DEST = media/build
3
4 # full-sized image dimensions
5 WIDTH = 960
6 HEIGHT = 480
7
8 HALF_WIDTH = 480
9 HALF_HEIGHT = 240
10
11 THIRD_WIDTH = 320
12 THIRD_HEIGHT = 160
13
14 THUMBNAILS = \
15         $(DEST)/1TIT-atoms.mp4 \
16         $(DEST)/takamori-fig4b-fw-fh.png \
17         $(DEST)/skeletal-muscle-fw-fh.png \
18         $(DEST)/titin-fw-fh.png \
19         $(DEST)/1TIT-fw-fh.png \
20         $(DEST)/1TIT-tw-th.png \
21         $(DEST)/pirchi-fig1-fw-hh.png \
22         $(DEST)/afm-3d-fw-fh.png \
23         $(DEST)/contact-afm.ogv \
24         $(DEST)/afm-fw-fh.png \
25         $(DEST)/piezo-fw-fh.png \
26         $(DEST)/unfolding-fw-fh.png \
27         $(DEST)/unfolding-hw-fh.png \
28         $(DEST)/unfolding-hw-hh.png \
29         $(DEST)/expt-sawtooth-fw-fh.png \
30         $(DEST)/expt-sawtooth-hw-hh.png \
31         $(DEST)/carrion-vazquez-fig2-fw-fh.png \
32         $(DEST)/lu-fig1-fw-fh.png \
33         $(DEST)/apparatus-fw-fh.png \
34         $(DEST)/labview-fw-fh.png \
35         $(DEST)/pyafm-fw-fh.png \
36         $(DEST)/ants-fw-fh.png \
37         $(DEST)/cantilever.jpg \
38         $(DEST)/tip.jpg \
39         $(DEST)/vibration-fw-fh.png \
40         $(DEST)/vibration-hw-fh.png \
41         $(DEST)/bump-fw-fh.png \
42         $(DEST)/florin-fig2-hw-fh.png \
43         $(DEST)/pbs-hist-hw-hh.png \
44         $(DEST)/sawsim-states-hw-fh.png \
45         $(DEST)/sawsim-states-hw-hh.png \
46         $(DEST)/monte-carlo-fw-fh.png \
47         $(DEST)/landscape-hw-hh.png \
48         $(DEST)/landscape-hw-fh.png \
49         $(DEST)/landscape-bell-hw-hh.png \
50         $(DEST)/kramers-integrand-hw-hh.png \
51         $(DEST)/wlc-model-hw-fh.png \
52         $(DEST)/fjc-model-hw-fh.png \
53         $(DEST)/fit-valley-fw-fh.png \
54         $(DEST)/1TIT-hbond-fw-fh.png \
55         $(DEST)/fit-valley-PBS-hw-hh.png \
56         $(DEST)/fit-valley-PBS-0.5M-CaCl2-hw-hh.png
57
58 #       $(DEST)/landscape-cant-hw-hh.png
59
60 .PRECIOUS: $(DEST)/% $(DEST)/%.png $(DEST)/%.pdf
61
62 all: index.html $(THUMBNAILS)
63
64 clean:
65         rm -f index.html $(DEST)/* $(SRC)/pymol/*-0*.png
66
67 %: %.itex
68         itex2MML < "$(<)" > "$(@)"
69
70 ## Get the high-resolution source into PNG format
71
72 # plain copy
73 $(DEST)/%: $(SRC)/binary/%
74         cp "$(<)" "$(@)"
75
76 # TODO: re-render and crop?
77 $(DEST)/%: $(SRC)/matplotlib/%
78         cp "$(<)" "$(@)"
79
80 # TODO: re-render and crop?
81 $(DEST)/%: $(SRC)/tikz/%
82         cp "$(<)" "$(@)"
83
84 # TODO: extract from the VI?  (probably not ;)
85 $(DEST)/%: $(SRC)/labview/%
86         cp "$(<)" "$(@)"
87
88 # convert JPEGs
89 $(DEST)/%.png: $(SRC)/binary/%.jpg
90         convert "$(<)" "$(@)"
91
92 # convert PDFs
93 $(DEST)/%.png: $(SRC)/binary/%.pdf
94         convert -density 350 "$(<)" "$(@)"
95
96 # compile Asymptote graphics
97 $(DEST)/%.pdf: $(SRC)/asy/%.asy
98         asy -noprc -render=0 -f pdf -cd "$(<D)" -o "$(*).pdf" "$(*).asy"
99         mv "$(<D)/$(*).pdf" "$(@)"
100
101 # convert Asympote PDFs
102 $(DEST)/%.png: $(DEST)/%.pdf
103         convert -density 350 "$(<)" "$(@)"
104
105 # convert PyMol images
106 $(DEST)/%.png: $(SRC)/pymol/%.pml
107         cd "$(SRC)/pymol" && pymol -cq "$(*).pml"
108         mv "$(SRC)/pymol/$(*).png" "$(@)"
109
110 # convert PyMol images
111 $(DEST)/%.mp4: $(SRC)/pymol/%.pml
112         cd "$(SRC)/pymol" && pymol -cq "$(*).pml"
113         ffmpeg -y -r 20 -i "$(SRC)/pymol/$(*)-%4d.png" -s 640x480 -vcodec libx264 \
114                 -preset slower -vpre ipod640 -b:v 800k -bt 800k -aspect 640:480 \
115                 -threads 0 "$(@)"
116
117 ## Convert to the desired geometry
118
119 # full width, full height
120 $(DEST)/%-fw-fh.png: $(DEST)/%.png
121         convert -format png -strip -quality 95 "$(<)" -thumbnail $(WIDTH)x$(HEIGHT) "$(@)"
122
123 # half width, full height
124 $(DEST)/%-hw-fh.png: $(DEST)/%.png
125         convert -format png -strip -quality 95 "$(<)" -thumbnail $(HALF_WIDTH)x$(HEIGHT) "$(@)"
126
127 # full width, half height
128 $(DEST)/%-fw-hh.png: $(DEST)/%.png
129         convert -format png -strip -quality 95 "$(<)" -thumbnail $(WIDTH)x$(HALF_HEIGHT) "$(@)"
130
131 # half width, half height
132 $(DEST)/%-hw-hh.png: $(DEST)/%.png
133         convert -format png -strip -quality 95 "$(<)" -thumbnail $(HALF_WIDTH)x$(HALF_HEIGHT) "$(@)"
134
135 # third width, third height
136 $(DEST)/%-tw-th.png: $(DEST)/%.png
137         convert -format png -strip -quality 95 "$(<)" -thumbnail $(THIRD_WIDTH)x$(THIRD_HEIGHT) "$(@)"