| test -z "$srcdir" && srcdir=. |
| test "x$HBHEADERS" = x && HBHEADERS=`find . -maxdepth 1 -name 'hb*.h'` |
| test "x$HBSOURCES" = x && HBSOURCES=`find . -maxdepth 1 -name 'hb-*.cc' -or -name 'hb-*.hh'` |
| echo 'Checking that public header files #include "hb-common.h" or "hb.h" first (or none)' |
| grep '#.*\<include\>' "$x" /dev/null | head -n 1 |
| grep -v '"hb-common[.]h"' | |
| grep -v 'hb-common[.]h:' | |
| echo 'Checking that source files #include "hb-*private.hh" first (or none)' |
| grep '#.*\<include\>' "$x" /dev/null | head -n 1 |
| grep -v '"hb-.*private[.]hh"' | |
| grep -v 'hb-private[.]hh:' | |
| echo 'Checking that there is no #include <hb.*.h>' |
| grep '#.*\<include\>.*<.*hb' $HBHEADERS $HBSOURCES >&2 && stat=1 |