#!/bin/sh
# This script builds the man page, pdf, and postscript
# documentation from the groff source "predict.man".
echo -n "Creating postscript file... "
groff -T ps -man predict.man > ../postscript/predict.ps
echo
echo -n "Creating man page... "
groff -T ascii -man predict.man > predict.1
echo
echo -n "Creating pdf file... "
ps2pdf ../postscript/predict.ps ../pdf/predict.pdf
echo
echo "Done!"
