awesome/build-utils/widgetgen.sh

19 lines
486 B
Bash
Raw Normal View History

2008-01-16 08:06:59 +01:00
#!/bin/sh
top_srcdir="${1-.}"
echo "/* This file is autogenerated by" `basename $0` "*/"
2008-01-16 08:06:59 +01:00
echo
echo "const name_func_link_t WidgetList[] ="
echo "{"
for file in ${top_srcdir}/widget.h
2008-01-16 08:06:59 +01:00
do
echo " /* $file */"
grep '^widget_constructor_t ' "$file" | cut -d' ' -f2 | cut -d\; -f1 | while read widget
2008-01-16 08:06:59 +01:00
do
shortname=`echo $widget | cut -d_ -f2`
echo " {\"$shortname\", sizeof(\"$shortname\") - 1, $widget},"
2008-01-16 08:06:59 +01:00
done
done
echo " {NULL, 0, NULL}"
2008-01-16 08:06:59 +01:00
echo "};"