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

busybox.mkll - git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: facb6e8ac2b4a7a9796a7884eea7bac84ae1dc88 (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