blob: cfd84ac0ba59369c97fc40ffec4f38973f230cc1 (
plain)
1
2
3
4
5
6
7
8
9
|
all: index.html concepts.html reference.html \
generator_flow.png
%.png: %.svg
rsvg $< $@
%.html: %.rst
rst2html --stylesheet=lsr.css --link-stylesheet $< $@
sed -i 's!</head>!<link href="favicon.ico" type="image/x-icon" rel="shortcut icon" />\n</head>!' $@
|