comparison trunk/src/docgen/templates/default/html/makefile.tpl @ 468:7f7b2232a9eb

Fixes for the html generation.
author Jari-Matti M?kel? <jmjm@iki.fi>
date Wed, 31 Oct 2007 20:15:16 +0200
parents db7e27b5c180
children
comparison
equal deleted inserted replaced
467:32f4c3cb6a41 468:7f7b2232a9eb
1 #!/bin/sh 1 #!/bin/sh
2 2
3 for i in *.dot; do 3 for i in *.dot; do
4 F=`echo $i|sed 's/dot/png/'` 4 F=`echo $i|sed 's/dot/{0}/'`
5 dot $i -Tpng -o$F 5 dot $i -T{0} -o$F
6 done 6 done
7 7