forked from mia/Aegisub
40e12403d5
Initial support for low-level access and file I/O methods are included as well. Originally committed to SVN as r4331.
32 lines
427 B
Bash
Executable file
32 lines
427 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/"
|
|
;;
|
|
"libaegisub")
|
|
TRIM="${SRC_PWD}/libaegisub/"
|
|
;;
|
|
esac
|
|
|
|
export OUTPUT_DIR="$2"
|
|
export SRC_TRIM="${TRIM}"
|
|
|
|
mkdir -vp "$2"
|
|
cp -v css.css "$2"
|
|
|
|
|
|
doxygen "doxyfile_$1"
|