COLORS =  red green blue darkgreen darkblue magenta yellow lightgreen lightblue lightgray black darkred
all: $(patsubst %,marker-%.png,$(COLORS))

include marker.mk

list.html: list.rst
	rst2html $< > $@

list.rst::
	echo 'Markers' > $@
	echo '=======' >> $@
	for f in marker-*.png; do echo ".. image:: $$f"; done >> $@
