]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/blob - docs/Makefile
Avoid spurious SUCCESS!?? for test_format_time_y2038.
[tahoe-lafs/tahoe-lafs.git] / docs / Makefile
1
2 SOURCES = subtree1.svg lease-tradeoffs.svg
3
4 PNGS = $(patsubst %.svg,%.png,$(SOURCES))
5 EPSS = $(patsubst %.svg,%.eps,$(SOURCES))
6
7 .PHONY: images-png images-eps
8 all: $(PNGS) $(EPSS)
9 images-png: $(PNGS)
10 images-eps: $(EPSS)
11
12 %.png: %.svg
13         inkscape -b white -d 90 -D --export-png $@ $<
14 %.eps: %.svg
15         inkscape --export-eps $@ $<
16
17 %.html: %.rst
18         rst2html.py $< $@
19
20 clean:
21         rm -f *.png *.eps