mirror of
https://bitbucket.org/smil3y/katie.git
synced 2025-02-24 10:52:56 +00:00
14 lines
206 B
Bash
14 lines
206 B
Bash
![]() |
#!/bin/bash
|
||
|
|
||
|
set -e
|
||
|
|
||
|
cwd="$(dirname $0)"
|
||
|
|
||
|
if ! type -p doxygen;then
|
||
|
echo "Doxygen is not installed"
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
rm -rf apidocs/*
|
||
|
echo "Generating API docs for Katie..."
|
||
|
doxygen ${cwd}/../doxygen.conf
|