wtk_graph.asy: Fix palette positioning in graphMatrixFile
[reveal.js.git] / Makefile
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
56 #       $(DEST)/landscape-cant-hw-hh.png
57
58 .PRECIOUS: $(DEST)/% $(DEST)/%.png $(DEST)/%.pdf
59
60 all: index.html $(THUMBNAILS)
61
62 clean:
63         rm -f index.html $(DEST)/* $(SRC)/pymol/*-0*.png
64
65 %: %.itex
66         itex2MML < "$(<)" > "$(@)"
67
68 ## Get the high-resolution source into PNG format
69
70 # plain copy
71 $(DEST)/%: $(SRC)/binary/%
72         cp "$(<)" "$(@)"
73
74 # TODO: re-render and crop?
75 $(DEST)/%: $(SRC)/matplotlib/%
76         cp "$(<)" "$(@)"
77
78 # TODO: re-render and crop?
79 $(DEST)/%: $(SRC)/tikz/%
80         cp "$(<)" "$(@)"
81
82 # TODO: extract from the VI?  (probably not ;)
83 $(DEST)/%: $(SRC)/labview/%
84         cp "$(<)" "$(@)"
85
86 # convert JPEGs
87 $(DEST)/%.png: $(SRC)/binary/%.jpg
88         convert "$(<)" "$(@)"
89
90 # convert PDFs
91 $(DEST)/%.png: $(SRC)/binary/%.pdf
92         convert -density 350 "$(<)" "$(@)"
93
94 # compile Asymptote graphics
95 $(DEST)/%.pdf: $(SRC)/asy/%.asy
96         asy -noprc -render=0 -f pdf -cd "$(<D)" -o "$(*).pdf" "$(*).asy"
97         mv "$(<D)/$(*).pdf" "$(@)"
98
99 # convert Asympote PDFs
100 $(DEST)/%.png: $(DEST)/%.pdf
101         convert -density 350 "$(<)" "$(@)"
102
103 # convert PyMol images
104 $(DEST)/%.png: $(SRC)/pymol/%.pml
105         cd "$(SRC)/pymol" && pymol -cq "$(*).pml"
106         mv "$(SRC)/pymol/$(*).png" "$(@)"
107
108 # convert PyMol images
109 $(DEST)/%.mp4: $(SRC)/pymol/%.pml
110         cd "$(SRC)/pymol" && pymol -cq "$(*).pml"
111         ffmpeg -y -r 20 -i "$(SRC)/pymol/$(*)-%4d.png" -s 640x480 -vcodec libx264 \
112                 -preset slower -vpre ipod640 -b:v 800k -bt 800k -aspect 640:480 \
113                 -threads 0 "$(@)"
114
115 ## Convert to the desired geometry
116
117 # full width, full height
118 $(DEST)/%-fw-fh.png: $(DEST)/%.png
119         convert -format png -strip -quality 95 "$(<)" -thumbnail $(WIDTH)x$(HEIGHT) "$(@)"
120
121 # half width, full height
122 $(DEST)/%-hw-fh.png: $(DEST)/%.png
123         convert -format png -strip -quality 95 "$(<)" -thumbnail $(HALF_WIDTH)x$(HEIGHT) "$(@)"
124
125 # full width, half height
126 $(DEST)/%-fw-hh.png: $(DEST)/%.png
127         convert -format png -strip -quality 95 "$(<)" -thumbnail $(WIDTH)x$(HALF_HEIGHT) "$(@)"
128
129 # half width, half height
130 $(DEST)/%-hw-hh.png: $(DEST)/%.png
131         convert -format png -strip -quality 95 "$(<)" -thumbnail $(HALF_WIDTH)x$(HALF_HEIGHT) "$(@)"
132
133 # third width, third height
134 $(DEST)/%-tw-th.png: $(DEST)/%.png
135         convert -format png -strip -quality 95 "$(<)" -thumbnail $(THIRD_WIDTH)x$(THIRD_HEIGHT) "$(@)"