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

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>1999-10-05 20:24:54 +0400
committerEric Andersen <andersen@codepoet.org>1999-10-05 20:24:54 +0400
commitcc8ed39b240180b58810784f844e253263594ac3 (patch)
tree15feebbb4be9a9168209609f48f0b100f9364420 /applets/busybox.mkll
Initial revision0_29alpha2
Diffstat (limited to 'applets/busybox.mkll')
-rwxr-xr-xapplets/busybox.mkll17
1 files changed, 17 insertions, 0 deletions
diff --git a/applets/busybox.mkll b/applets/busybox.mkll
new file mode 100755
index 000000000..e43a1ccb0
--- /dev/null
+++ b/applets/busybox.mkll
@@ -0,0 +1,17 @@
+#!/bin/sh
+#Make busybox links list file
+
+DF="busybox.def.h"
+MF="main.c"
+
+LIST="$(sed -n '/^#define/{s/^#define //p;}' $DF)"
+
+ for def in ${LIST}; do
+
+ set -- $(sed -n '/^#ifdef '$def'[ +| +].*/,/^#endif/{s/.*\/\///p; /^{ /{ s/^{ "//; s/",.*$//p;}; }' $MF)
+ path=$1; shift
+
+ for n in $@; do
+ echo "$path/$n"
+ done
+ done