1 #!/bin/sh 2 3 LC_ALL=C 4 export LC_ALL 5 6 test -z "$srcdir" && srcdir=. 7 stat=0 8 9 test "x$HBHEADERS" = x && HBHEADERS=`cd "$srcdir"; find . -maxdepth 1 -name 'hb*.h'` 10 test "x$HBSOURCES" = x && HBSOURCES=`cd "$srcdir"; find . -maxdepth 1 -name 'hb-*.cc' -or -name 'hb-*.hh'` 11 12 13 echo 'Checking that public header files #include "hb-common.h" or "hb.h" first (or none)' 14 15 for x in $HBHEADERS; do 16 test -f "$srcdir/$x" -a ! -f "$x" && x="$srcdir/$x" 17 grep '#.*\<include\>' "$x" /dev/null | head -n 1 18 done | 19 grep -v '"hb-common[.]h"' | 20 grep -v '"hb[.]h"' | 21 grep -v 'hb-common[.]h:' | 22 grep -v 'hb[.]h:' | 23 grep . >&2 && stat=1 24 25 26 echo 'Checking that source files #include "hb-*private.hh" first (or none)' 27 28 for x in $HBSOURCES; do 29 test -f "$srcdir/$x" -a ! -f "$x" && x="$srcdir/$x" 30 grep '#.*\<include\>' "$x" /dev/null | grep -v 'include _' | head -n 1 31 done | 32 grep -v '"hb-.*private[.]hh"' | 33 grep -v 'hb-private[.]hh:' | 34 grep . >&2 && stat=1 35 36 37 echo 'Checking that there is no #include <hb-*.h>' 38 for x in $HBHEADERS $HBSOURCES; do 39 test -f "$srcdir/$x" && x="$srcdir/$x" 40 grep '#.*\<include\>.*<.*hb' "$x" /dev/null >&2 && stat=1 41 done 42 43 44 exit $stat 45