mirror of
https://github.com/librempeg/librempeg
synced 2024-11-23 11:39:47 +00:00
b3fab1f2cd
Documentation includes only the externally visible API of the installed headers. Based on a patch by Anton Khirnov <anton@khirnov.net>. Signed-off-by: Anton Khirnov <anton@khirnov.net>
15 lines
285 B
Bash
Executable File
15 lines
285 B
Bash
Executable File
#!/bin/sh
|
|
|
|
SRC_PATH="${1}"
|
|
DOXYFILE="${2}"
|
|
|
|
shift 2
|
|
|
|
doxygen - <<EOF
|
|
@INCLUDE = ${DOXYFILE}
|
|
INPUT = $@
|
|
HTML_HEADER = ${SRC_PATH}/doc/doxy/header.html
|
|
HTML_FOOTER = ${SRC_PATH}/doc/doxy/footer.html
|
|
HTML_STYLESHEET = ${SRC_PATH}/doc/doxy/doxy_stylesheet.css
|
|
EOF
|