mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-12-08 06:09:50 +00:00
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
|