841c83cf64
Generate a dependency file for the header files used in the API guide so that the docs can be rebuilt if a header changes. Signed-off-by: Bruce Richardson <bruce.richardson@intel.com> Acked-by: Luca Boccassi <bluca@debian.org>
14 lines
392 B
Bash
Executable File
14 lines
392 B
Bash
Executable File
#! /bin/sh -e
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright 2018 Luca Boccassi <bluca@debian.org>
|
|
|
|
DOXYCONF=$1
|
|
OUTDIR=$2
|
|
SCRIPTCSS=$3
|
|
|
|
# run doxygen, capturing all the header files it processed
|
|
doxygen "${DOXYCONF}" | tee doxygen.out
|
|
echo "$OUTDIR: $(awk '/Preprocessing/ {printf("%s ", substr($2, 1, length($2) - 3))}' doxygen.out)" > $OUTDIR.d
|
|
|
|
"${SCRIPTCSS}" "${OUTDIR}"/doxygen.css
|