mirror of https://git.tukaani.org/xz.git
Doxygen: update-doxygen: Support out-of-tree builds
Also, now $0 is used to refer to the script itself.
This commit is contained in:
parent
2c519f641f
commit
0ece09a575
|
@ -3,14 +3,13 @@
|
||||||
|
|
||||||
#############################################################################
|
#############################################################################
|
||||||
#
|
#
|
||||||
# Updates the Doxygen generated documentation files in the source tree.
|
# While it's possible to use the Doxyfile as is to generate liblzma API
|
||||||
# If the doxygen command is not installed, it will exit with an error.
|
# documentation, it is recommended to use this script because this adds
|
||||||
# This script can generate Doxygen documentation for all source files or for
|
# the XZ Utils version number to the generated HTML.
|
||||||
# just liblzma API header files.
|
|
||||||
#
|
#
|
||||||
# It is recommended to use this script to update the Doxygen-generated HTML
|
# Other features:
|
||||||
# files since this will include the package version in the output and,
|
# - Generate documentation of the XZ Utils internals.
|
||||||
# in case of liblzma API docs, strip JavaScript files from the output.
|
# - Set input and output paths for out-of-tree builds.
|
||||||
#
|
#
|
||||||
#############################################################################
|
#############################################################################
|
||||||
#
|
#
|
||||||
|
@ -21,31 +20,67 @@
|
||||||
|
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
|
show_usage()
|
||||||
|
{
|
||||||
|
echo "Usage: $0 <api|internal> [ABS_TOP_SRCDIR ABS_OUTDIR]"
|
||||||
|
echo
|
||||||
|
echo "Supported modes:"
|
||||||
|
echo " - 'api' (default): liblzma API docs into doc/api"
|
||||||
|
echo " - 'internal': internal docs into doc/internal"
|
||||||
|
echo
|
||||||
|
echo "Absolute source and output dirs may be set" \
|
||||||
|
"to do an out-of-tree build."
|
||||||
|
echo "The output directory must already exist."
|
||||||
|
exit 1
|
||||||
|
}
|
||||||
|
|
||||||
|
case $1 in
|
||||||
|
api|internal)
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
show_usage
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
if type doxygen > /dev/null 2>&1; then
|
if type doxygen > /dev/null 2>&1; then
|
||||||
:
|
:
|
||||||
else
|
else
|
||||||
echo "doxygen/update-doxygen: 'doxygen' command not found." >&2
|
echo "$0: 'doxygen' command not found" >&2
|
||||||
echo "doxygen/update-doxygen: Skipping Doxygen docs generation." >&2
|
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if test ! -f Doxyfile; then
|
case $# in
|
||||||
cd `dirname "$0"` || exit 1
|
1)
|
||||||
if test ! -f Doxyfile; then
|
# One argument: Building inside the source tree
|
||||||
echo "doxygen/update-doxygen: Cannot find Doxyfile" >&2
|
ABS_TOP_SRCDIR=`dirname "$0"`/..
|
||||||
exit 1
|
ABS_OUTDIR=$ABS_TOP_SRCDIR/doc
|
||||||
fi
|
;;
|
||||||
|
3)
|
||||||
|
# Three arguments: Possibly an out of tree build
|
||||||
|
ABS_TOP_SRCDIR=$2
|
||||||
|
ABS_OUTDIR=$3
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
show_usage
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
if test ! -f "$ABS_TOP_SRCDIR/doxygen/Doxyfile"; then
|
||||||
|
echo "$0: Source dir '$ABS_TOP_SRCDIR/doxygen/Doxyfile' not found" >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
if test ! -d "$ABS_OUTDIR"; then
|
||||||
|
echo "$0: Output dir '$ABS_OUTDIR' not found" >&2
|
||||||
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Get the package version so that it can be included in the generated docs.
|
# Get the package version so that it can be included in the generated docs.
|
||||||
PACKAGE_VERSION=`cd .. && sh build-aux/version.sh` || exit 1
|
PACKAGE_VERSION=`cd "$ABS_TOP_SRCDIR" && sh build-aux/version.sh`
|
||||||
|
|
||||||
# If no arguments are specified, default to generating liblzma API header
|
|
||||||
# documentation only.
|
|
||||||
case $1 in
|
case $1 in
|
||||||
'' | api)
|
api)
|
||||||
# Remove old documentation before re-generating the new.
|
# Remove old documentation before re-generating the new.
|
||||||
rm -rf ../doc/api
|
rm -rf "$ABS_OUTDIR/api"
|
||||||
|
|
||||||
# Generate the HTML documentation by preparing the Doxyfile
|
# Generate the HTML documentation by preparing the Doxyfile
|
||||||
# in stdin and piping the result to the doxygen command.
|
# in stdin and piping the result to the doxygen command.
|
||||||
|
@ -53,36 +88,27 @@ case $1 in
|
||||||
# override any earlier assignment. So, we can use this
|
# override any earlier assignment. So, we can use this
|
||||||
# feature to override the tags that need to change between
|
# feature to override the tags that need to change between
|
||||||
# "api" and "internal" modes.
|
# "api" and "internal" modes.
|
||||||
|
ABS_SRCDIR=$ABS_TOP_SRCDIR/src/liblzma/api
|
||||||
(
|
(
|
||||||
cat Doxyfile
|
cat "$ABS_TOP_SRCDIR/doxygen/Doxyfile"
|
||||||
echo "PROJECT_NUMBER = $PACKAGE_VERSION"
|
echo "PROJECT_NUMBER = $PACKAGE_VERSION"
|
||||||
) | doxygen -
|
echo "OUTPUT_DIRECTORY = $ABS_OUTDIR"
|
||||||
|
echo "STRIP_FROM_PATH = $ABS_SRCDIR"
|
||||||
|
echo "INPUT = $ABS_SRCDIR"
|
||||||
|
) | doxygen -q -
|
||||||
;;
|
;;
|
||||||
|
|
||||||
internal)
|
internal)
|
||||||
rm -rf ../doc/internal
|
rm -rf "$ABS_OUTDIR/internal"
|
||||||
(
|
(
|
||||||
cat Doxyfile
|
cat "$ABS_TOP_SRCDIR/doxygen/Doxyfile"
|
||||||
echo "PROJECT_NUMBER = $PACKAGE_VERSION"
|
|
||||||
echo 'PROJECT_NAME = "XZ Utils"'
|
echo 'PROJECT_NAME = "XZ Utils"'
|
||||||
echo 'STRIP_FROM_PATH = ../src'
|
echo "PROJECT_NUMBER = $PACKAGE_VERSION"
|
||||||
echo 'INPUT = ../src'
|
echo "OUTPUT_DIRECTORY = $ABS_OUTDIR"
|
||||||
|
echo "STRIP_FROM_PATH = $ABS_TOP_SRCDIR"
|
||||||
|
echo "INPUT = $ABS_TOP_SRCDIR/src"
|
||||||
echo 'HTML_OUTPUT = internal'
|
echo 'HTML_OUTPUT = internal'
|
||||||
echo 'EXTRACT_PRIVATE = YES'
|
|
||||||
echo 'EXTRACT_STATIC = YES'
|
|
||||||
echo 'EXTRACT_LOCAL_CLASSES = YES'
|
|
||||||
echo 'SEARCHENGINE = YES'
|
echo 'SEARCHENGINE = YES'
|
||||||
) | doxygen -
|
) | doxygen -q -
|
||||||
;;
|
|
||||||
|
|
||||||
*)
|
|
||||||
echo "doxygen/update-doxygen: Error: mode argument '$1'" \
|
|
||||||
"is not supported." >&2
|
|
||||||
echo "doxygen/update-doxygen: Supported modes:" >&2
|
|
||||||
echo "doxygen/update-doxygen: - 'api' (default):" \
|
|
||||||
"liblzma API docs into doc/api" >&2
|
|
||||||
echo "doxygen/update-doxygen: - 'internal':"\
|
|
||||||
"internal docs into doc/internal" >&2
|
|
||||||
exit 1
|
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
Loading…
Reference in New Issue