mirror of https://git.ffmpeg.org/ffmpeg.git
12 lines
124 B
Bash
12 lines
124 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
SRC_PATH="${1}"
|
||
|
DOXYFILE="${2}"
|
||
|
|
||
|
shift 2
|
||
|
|
||
|
doxygen - <<EOF
|
||
|
@INCLUDE = ${DOXYFILE}
|
||
|
INPUT = $@
|
||
|
EOF
|