Merge branch 'web-improvements' of git://github.com/catlee/buildbot
[buildbot.git] / docs / images / Makefile
blobbd9d5a53b9176caa3fd3b627fb82e9bed9e1ef18
2 SOURCES = overview.svg slaves.svg slavebuilder.svg master.svg status.svg
3 PNGS = $(patsubst %.svg,%.png,$(SOURCES))
4 EPSS = $(patsubst %.svg,%.eps,$(SOURCES))
6 .PHONY: images-png images-eps
7 all: $(PNGS) $(EPSS)
8 images-png: $(PNGS)
9 images-eps: $(EPSS)
11 %.png: %.svg
12 inkscape -b white --export-png $@ $<
13 %.eps: %.svg
14 inkscape --export-eps $@ $<
16 clean:
17 rm -f *.png *.eps