busybox/applets/busybox.mkll

24 lines
591 B
Plaintext
Raw Normal View History

1999-10-06 00:24:54 +08:00
#!/bin/sh
# Make busybox links list file.
1999-10-06 00:24:54 +08:00
DF="Config.h"
MF=$1
if [ "$MF" = "" ]; then
MF="applets.h"
fi
1999-10-06 00:24:54 +08:00
LIST="$(gcc -E -dM $DF | sed -n -e '/^.*BB_FEATURE.*$/d;s/^#define.*\<BB_\(.*\)\>/BB_\1/gp;' | sort)"
1999-10-06 00:24:54 +08:00
1999-10-07 04:25:32 +08:00
for def in ${LIST}; do
2000-03-16 16:09:09 +08:00
i=`sed -n '/^#ifdef \<'$def'\>.*/,/^#endif/{ s/.*\"\(.*\)\".*\(_BB_DIR_[A-Z_]*\).*$/\2\/\1/gp; }' $MF`
for j in $i; do
if [ -z $j ] ; then
continue;
fi;
echo $j | sed -e 's/_BB_DIR_ROOT//g;s/_BB_DIR_BIN/\/bin/g;' \
-e 's/_BB_DIR_SBIN/\/sbin/g;s/_BB_DIR_USR_BIN/\/usr\/bin/g;' \
-e 's/_BB_DIR_USR_SBIN/\/usr\/sbin/g;'
done;
1999-10-07 04:25:32 +08:00
done