Welcome to mirror list, hosted at ThFree Co, Russian Federation.

busybox.mkll « applets - git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f79462b7f1aae1bd74fb7542e99c91c844f4de91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh
#Make busybox links list file

DF="busybox.def.h"
MF="busybox.c"

LIST="$(sed -n '/^#define/{s/^#define //p;}' $DF)"

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