mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-19 13:07:56 +00:00
0acc1dc079
* .gitignore: add docs/_build (sphinx output directory)
22 lines
385 B
Plaintext
22 lines
385 B
Plaintext
|
|
SOURCES = subtree1.svg lease-tradeoffs.svg
|
|
|
|
PNGS = $(patsubst %.svg,%.png,$(SOURCES))
|
|
EPSS = $(patsubst %.svg,%.eps,$(SOURCES))
|
|
|
|
.PHONY: images-png images-eps
|
|
all: $(PNGS) $(EPSS)
|
|
images-png: $(PNGS)
|
|
images-eps: $(EPSS)
|
|
|
|
%.png: %.svg
|
|
inkscape -b white -d 90 -D --export-png $@ $<
|
|
%.eps: %.svg
|
|
inkscape --export-eps $@ $<
|
|
|
|
%.html: %.rst
|
|
rst2html.py $< $@
|
|
|
|
clean:
|
|
rm -f *.png *.eps
|