#!/bin/sh

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

TARGET=$HOME/kochanski.org/gpk/code/speechresearch/gmisclib
MODS=$(echo *.py | tr ' ' '\012' | grep -v setup.py)
SCRIPTS='bin/select_fiat_entries.py bin/gpk_wavio.py'

rm -rf $TARGET
mkdir -p $TARGET
epydoc -v --config epydoc.config --html -o $TARGET --show-imports $MODS $SCRIPTS

