randomconfig fixes
[oweals/busybox.git] / applets / busybox.mkll
index facb6e8ac2b4a7a9796a7884eea7bac84ae1dc88..68dbf216262a6cd6a6f64d24a4cbe1c94b62108b 100755 (executable)
@@ -1,15 +1,24 @@
 #!/bin/sh
-#Make busybox links list file
+# Make busybox links list file.
 
-DF="busybox.def.h"
-MF="busybox.c"
+# input $1: full path to Config.h
+# input $2: full path to applets.h
+# output (stdout): list of pathnames that should be linked to busybox
 
-LIST="$(sed -n '/^#define/{s/^#define //p;}' $DF)"
+# Maintainer: Larry Doolittle <ldoolitt@recycle.lbl.gov>
 
-for def in ${LIST}; do
-       i=`sed -n 's/^#ifdef \<'$def'\>.*\/\/\(.*$\)/\/\1\//gp' $MF`
-       j=`sed -n '/^#ifdef '$def'.*/,/^#endif/{ s/.*\"\(.*\)\".*/\1/gp; }' $MF`
-       for k in $j; do
-           echo $i$k
-       done
-done
+export LC_ALL=POSIX
+export LC_CTYPE=POSIX
+
+CONFIG_H=${1:-include/autoconf.h}
+APPLETS_H=${2:-include/applets.h}
+$HOSTCC -E -DMAKE_LINKS -include $CONFIG_H $APPLETS_H |
+  awk '/^[ \t]*LINK/{
+       dir=substr($2,7)
+       gsub("_","/",dir)
+       if(dir=="/ROOT") dir=""
+       file=$3
+       gsub("\"","",file)
+       if (file=="busybox") next
+       print tolower(dir) "/" file
+  }'