4 gcc -E -dM ${1:-Config.h} | \
5 sed -n -e '/^.*BB_FEATURE.*$/d;s/^#define.*\<BB_\(.*\)\>/\1.c/gp;' \
6 | tr '[:upper:]' '[:lower:]' | sort
9 # I added in the extra "ls" so only source files that
10 # actually exist will show up in the compile list.
11 ls -1 $RAW 2>/dev/null | sed -e 's/\.c$/\.o/g'