AT_SETUP([Checking that header files get distributed]) AT_KEYWORDS([CodeCheck header]) ok="" echo "${#ok[*]} are ok not to get distributed: ${ok[*]}." Makefiles=`find ${abs_top_srcdir}/src -name Makefile.am` liste=`find ${abs_top_srcdir}/src -name '*.hpp'` for header in $liste; do filename=`basename $header` # check whether it is one of the excluded ones found=0 for item in $ok do if test x"$item" == x"$filename" then found=1 break fi done # if not, check whether it contains the include if test $found -eq 0 then AT_CHECK([egrep -q $filename $Makefiles], 0, [ignore], [ignore], [echo "$filename is not present in any Makefile.am and thus won't get distributed. Either add to the module's Makefile.am's ..._SOURCES or at least to EXTRADIST."]) fi done AT_CLEANUP