#!/bin/sh

for file in ../*/*.xml.in
do
	echo converting $file...
	python makedoc.py $file >/dev/null
done

