Aegisub/aegisub/docs/doxygen/gen.sh
Amar Takhar 9df3ce3cee SRC_PWD needs to be set before TRIM.
Originally committed to SVN as r3553.
2009-09-26 08:57:26 +00:00

30 lines
376 B
Bash
Executable file

#!/bin/sh
#
# $Id$
#
if test -z "$1" || test -z "$2"; then
echo "You must provide a project and output dir."
exit;
fi
SRC_PWD=`pwd|sed "s|/docs/doxygen||"`
case "$1" in
"aegisub")
TRIM="${SRC_PWD}/src/"
;;
"reporter")
TRIM="${SRC_PWD}/reporter/"
;;
esac
export OUTPUT_DIR="$2"
export SRC_TRIM="${TRIM}"
mkdir -vp "$2"
cp -v css.css "$2"
doxygen "doxyfile_$1"