diff options
Diffstat (limited to 'busybox.sh')
-rwxr-xr-x | busybox.sh | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/busybox.sh b/busybox.sh index 304ac87e7..c4e241f84 100755 --- a/busybox.sh +++ b/busybox.sh | |||
@@ -1,3 +1,10 @@ | |||
1 | #!/bin/sh | 1 | #!/bin/sh |
2 | sed -n -e 's/^#define.*BB_FEATURE.*$//g;y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/;' \ | 2 | |
3 | -e '/^#define/{s/.*bb_//;s/$/.o/p;}' busybox.def.h | 3 | # I added in the extra "ls" so only source files that |
4 | # actually exist will show up in the compile list. | ||
5 | ls -1 ` \ | ||
6 | cpp busybox.def.h -dM | \ | ||
7 | sed -n -e '/^.*BB_FEATURE.*$/d;s/^#define.*\<BB_\(.*\)\>/\1.c/gp;' \ | ||
8 | | tr [:upper:] [:lower:] | sort | ||
9 | ` 2>/dev/null | sed -e 's/\.c$/\.o/g' | ||
10 | |||