Patch from Matt Kraai to enable proxy support.
[oweals/busybox.git] / busybox.sh
1 #!/bin/sh
2
3 RAW=` \
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
7 `
8 cd ${2:-.}
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'
12