File: build_docs.sh

package info (click to toggle)
mdbtools 1.0.1-0.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,348 kB
  • sloc: ansic: 12,252; sh: 516; xml: 218; yacc: 188; lex: 129; makefile: 126; python: 27
file content (23 lines) | stat: -rwxr-xr-x 411 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/bash

set -e

DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
echo "DIR = $DIR"

ROOT="$(dirname "$DIR")"
echo "ROOT = $ROOT"

echo "### cleanup $ROOT/temp-man-pages"
rm -f -r $ROOT/temp-man-pages

mkdir $ROOT/temp-man-pages

echo "### create man pages"
which python3
python3 $ROOT/api_docx/pre_build.py

echo "### doxygen version"
doxygen -v

doxygen $ROOT/api_docx/doxygen.conf