Cleanup patch from larry doolittle
[oweals/busybox.git] / applets / busybox.mkll
1 #!/bin/sh
2 # Make busybox links list file.
3
4 # input $1: full path to Config.h
5 # input $2: full path to applets.h
6 # output (stdout): list of pathnames that should be linked to busybox
7
8 # Maintainer: Larry Doolittle <ldoolitt@recycle.lbl.gov>
9
10 CONFIG_H=${1:-Config.h}
11 APPLETS_H=${2:-applets.h}
12 gcc -E -DMAKE_LINKS -include $CONFIG_H $APPLETS_H |
13   awk '/^[ \t]*LINK/{
14         dir=substr($2,8)
15         gsub("_","/",dir)
16         if(dir=="/ROOT") dir=""
17         file=$3
18         gsub("\"","",file)
19         if (file=="busybox") next
20         print tolower(dir) "/" file
21   }'