2006-06-18 07:02:10 -04:00
|
|
|
#!/bin/sh
|
|
|
|
|
2006-09-12 23:36:00 -04:00
|
|
|
for FILE in `grep '^[ \t]*#[ \t]*include[ \t]*<' $2 | cut -f2 -d\< | cut -f1 -d\> | egrep ^linux\|^asm` ; do
|
2006-06-18 07:02:10 -04:00
|
|
|
if [ ! -r $1/$FILE ]; then
|
2006-09-12 23:36:01 -04:00
|
|
|
echo $2 requires $FILE, which does not exist in exported headers
|
2006-06-18 07:02:10 -04:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
done
|
2006-09-24 17:15:14 -04:00
|
|
|
# FIXME: List dependencies into $3
|
|
|
|
touch $3
|