enhance 'buildbot sighup' to show all related twistd.log lines. Also rename it to...
[buildbot.git] / docs / PyCon-2003 / Makefile
blobf2c1761d36ab45f41241868869e0394141d1b007
1 LORE=lore
2 IMAGES = overview.png slave.png
4 all: buildbot.html images
6 buildbot.html: source/buildbot.lore source/template.tpl
7 $(LORE) -p --config template=source/template.tpl $<
8 mv source/buildbot.html $@
10 .PHONY: hlint
11 hlint: source/buildbot.lore
12 $(LORE) --output lint $<
14 .PHONY: tarball
15 tarball: buildbot.html images
16 rm -rf buildbot-pycon
17 mkdir buildbot-pycon
18 cp buildbot.html stylesheet.css buildbot-pycon/
19 cp *.png buildbot-pycon/
20 tar czf buildbot-pycon.tar.gz buildbot-pycon
21 rm -rf buildbot-pycon
23 clean:
24 rm -f buildbot.html $(IMAGES)
26 .PHONY: images
27 images: $(IMAGES) sizes
29 sizes:
30 @for i in *.png; do \
31 echo $$i `pngtopnm $$i |pnmfile`; \
32 done
34 %.png: source/%.svg
35 inkscape --export-png $@ $<