File indexing completed on 2024-04-28 05:44:31

0001 #!/bin/bash
0002 
0003 mode=$1
0004 
0005 cd $(dirname $0)
0006 utildir=../../util
0007 pypkgdir=../..
0008 htmldir=../../doc-html/api/en_US
0009 
0010 case "$mode" in
0011 build)
0012     $utildir/epydoc-build.sh $pypkgdir $htmldir
0013     ;;
0014 *)
0015     echo -e "Usage:\n  $(basename $0) build"
0016     exit 1
0017 esac