mirror of
https://gitlab.freedesktop.org/libbsd/libbsd.git
synced 2025-01-10 03:33:12 +01:00
25 lines
355 B
Bash
Executable File
25 lines
355 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
run()
|
|
{
|
|
echo "$@"
|
|
"$@"
|
|
}
|
|
|
|
incdir="${top_srcdir}/include"
|
|
|
|
for inc in $(cd $incdir; find -name '*.h' | sort | cut -c3-); do
|
|
cat >headers-gen.c <<SOURCE
|
|
#include <$inc>
|
|
int main() { return 0; }
|
|
SOURCE
|
|
|
|
echo "testing header $inc"
|
|
run $CC -isystem "$incdir" $CPPFLAGS headers-gen.c -o /dev/null
|
|
echo
|
|
|
|
rm -f headers-gen.*
|
|
done
|