mirror of
https://gitlab.uni-freiburg.de/opensourcevdi/spice
synced 2025-12-26 22:48:19 +00:00
Add configuration file for Doxygen. Add a "doxy" target to both Meson and Autoconf using a simple shell script. Signed-off-by: Frediano Ziglio <freddy77@gmail.com> Acked-by: Julien Ropé <jrope@gmail.com>
13 lines
192 B
Bash
Executable File
13 lines
192 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e # exit on errors
|
|
|
|
SRCDIR=`dirname $0`
|
|
test -z "$SRCDIR" && SRCDIR=.
|
|
cd "$SRCDIR"
|
|
|
|
export SRCDIR
|
|
rm -rf doxygen_doc
|
|
doxygen doxygen.cfg
|
|
echo Timestamp > doxygen_doc/spice.tag
|