doxygen_filter.sh.in 399 B

1234567891011
  1. #!/bin/bash
  2. if [ "$(basename $1)" == "starpufft.h" ] ; then
  3. gcc -E $1 -I @top_srcdir@/include/ -I @top_builddir@/include/ |grep starpufft
  4. else
  5. # the macro STARPU_DEPRECATED needs to be removed as it is properly processed by doxygen
  6. # lines starting with // in the doxygen input files are considered as comments to be removed
  7. sed -e 's/STARPU_DEPRECATED//' $1 | sed 's/\/\/.*//'
  8. fi