mirror of
https://github.com/librempeg/librempeg
synced 2024-11-23 11:39:47 +00:00
3853fcd5a9
The headers and footers are used to integrate Doxygen into Libav's website. Fixes the Libav-ish look when doing `make apidoc`. Signed-off-by: Timothy Gu <timothygu99@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
12 lines
124 B
Bash
Executable File
12 lines
124 B
Bash
Executable File
#!/bin/sh
|
|
|
|
SRC_PATH="${1}"
|
|
DOXYFILE="${2}"
|
|
|
|
shift 2
|
|
|
|
doxygen - <<EOF
|
|
@INCLUDE = ${DOXYFILE}
|
|
INPUT = $@
|
|
EOF
|