mirror of https://github.com/F-Stack/f-stack.git
16 lines
425 B
Bash
Executable File
16 lines
425 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
|
|
|
|
OUT_FILE=$(dirname $OUTDIR)/doxygen.out
|
|
|
|
# run doxygen, capturing all the header files it processed
|
|
doxygen "${DOXYCONF}" > $OUT_FILE
|
|
echo "$OUTDIR: $(awk '/Preprocessing/ {printf("%s ", substr($2, 1, length($2) - 3))}' $OUT_FILE)" > $OUTDIR.d
|
|
|
|
"${SCRIPTCSS}" "${OUTDIR}"/doxygen.css
|