mirror of
https://bitbucket.org/smil3y/katie.git
synced 2025-02-24 10:52:56 +00:00
14 lines
No EOL
206 B
Bash
Executable file
14 lines
No EOL
206 B
Bash
Executable file
#!/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 |