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.

13 lines
167B

  1. #!/bin/sh
  2. SRC_PATH="${1}"
  3. DOXYFILE="${2}"
  4. shift 2
  5. doxygen - <<EOF
  6. @INCLUDE = ${DOXYFILE}
  7. INPUT = $@
  8. EXAMPLE_PATH = ${SRC_PATH}/doc/examples
  9. EOF