awesome/build-utils/uicbgen.sh

20 lines
520 B
Bash
Raw Normal View History

2008-01-15 16:52:30 +01:00
#!/bin/sh
echo "/* This file is autogenerated by" $(basename $0) "*/"
echo
echo "const name_func_link_t UicbList[] ="
echo "{"
for file in *.h layouts/*.h
do
echo " /* $file */"
grep '^Uicb uicb_' $file | cut -d' ' -f2 | cut -d\; -f1 | while read uicb
do
shortname=$(echo $uicb | cut -d _ -f2-)
echo " {\"$shortname\", $uicb},"
2008-01-16 07:57:12 +01:00
grep -q "\*$shortname\*" awesomerc.1.txt || \
echo " WARNING: $uicb NOT documented" >&2
2008-01-15 16:52:30 +01:00
done
done
echo " {NULL, NULL}"
echo "};"