doxygen_filter.sh.in 209 B

123456789
  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. sed -e 's/STARPU_DEPRECATED//' $1 | sed 's/\/\/.*//'
  6. fi