1999-10-06 05:21:54 +00:00
|
|
|
#!/bin/sh
|
2000-03-17 01:12:41 +00:00
|
|
|
|
2000-12-01 19:55:04 +00:00
|
|
|
RAW=` \
|
|
|
|
gcc -E -dM ${1:-Config.h} | \
|
2000-03-17 01:12:41 +00:00
|
|
|
sed -n -e '/^.*BB_FEATURE.*$/d;s/^#define.*\<BB_\(.*\)\>/\1.c/gp;' \
|
2000-09-05 17:37:48 +00:00
|
|
|
| tr '[:upper:]' '[:lower:]' | sort
|
2000-12-01 19:55:04 +00:00
|
|
|
`
|
2000-12-12 16:55:56 +00:00
|
|
|
test "${RAW}" != "" || exit
|
2000-12-01 19:55:04 +00:00
|
|
|
cd ${2:-.}
|
|
|
|
# I added in the extra "ls" so only source files that
|
|
|
|
# actually exist will show up in the compile list.
|
|
|
|
ls -1 $RAW 2>/dev/null | sed -e 's/\.c$/\.o/g'
|
2000-03-17 01:12:41 +00:00
|
|
|
|