#!/bin/sh

# Make documentation and place it where it will appear on the web:

TARGET=$HOME/kochanski.org/gpk/code/speechresearch/gyropy
rm -rf $TARGET
mkdir -p $TARGET
epydoc -v --config epydoc.config --html -o $TARGET --show-imports *.py
chmod -R a+r $TARGET
find $TARGET -type d -exec chmod a+x {} \;
epydoc -v --config epydoc.config --pdf -o doc --show-imports *.py
mv doc/api.pdf .

