]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/blob - docs/specifications/Makefile
Merge pull request #236 from daira/2725.timezone-test.0
[tahoe-lafs/tahoe-lafs.git] / docs / specifications / Makefile
1 SOURCES = CHK-hashes.svg file-encoding1.svg file-encoding2.svg \
2         file-encoding3.svg file-encoding4.svg file-encoding5.svg \
3         file-encoding6.svg
4
5 PNGS = $(patsubst %.svg,%.png,$(SOURCES))
6 EPSS = $(patsubst %.svg,%.eps,$(SOURCES))
7
8 .PHONY: images-png images-eps
9 all: $(PNGS) $(EPSS)
10 images-png: $(PNGS)
11 images-eps: $(EPSS)
12
13 %.png: %.svg
14         inkscape -b white -d 90 -D --export-png $@ $<
15 %.eps: %.svg
16         inkscape --export-eps $@ $<
17
18 clean:
19         rm -f *.png *.eps