mirror of https://github.com/FFmpeg/FFmpeg.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
285 B
15 lines
285 B
12 years ago
|
#!/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
|