#! /bin/sh

echo Making documention for locale \'$1\' ...

if [ ! -f gaby.sgml ]
then
	echo gaby.sgml not present !
	exit
fi

# this should be done by configure (as well as db2ps)
if [ ! `which db2html` ]
then
	echo db2html not found
	exit
fi


if [ -f ts$1 ]
then
	exit
fi

db2html gaby.sgml > /dev/null

touch ts$1

