blob: e93ca5552724f809a1834b969e7cfb73e0545110 [file] [log] [blame]
Rob Landleycb376ee2006-08-04 21:05:33 +00001#!/bin/sh
2
Rob Landley519d7df2006-08-09 20:56:23 +00003# Compile individual versions of each busybox applet.
4
5if [ $# -eq 0 ]
6then
7
Rob Landley236c6752006-08-06 02:13:36 +00008# Clear out the build directory. (Make clean should do this instead of here.)
9
10rm -rf build
11mkdir build
12
Rob Landleycb376ee2006-08-04 21:05:33 +000013# Make our prerequisites.
14
Bernhard Reutner-Fischer1d6fb6d2006-09-14 15:04:31 +000015make busybox.links include/bb_config.h $(pwd)/{libbb/libbb.a,archival/libunarchive/libunarchive.a,coreutils/libcoreutils/libcoreutils.a,networking/libiproute/libiproute.a}
Bernhard Reutner-Fischer6eb2f8e2006-09-14 15:07:48 +000016
17else
18# Could very well be that we want to build an individual applet but have no
19# 'build' dir yet..
20
21test -d ./build || mkdir build
22
Rob Landley519d7df2006-08-09 20:56:23 +000023fi
24
Rob Landley236c6752006-08-06 02:13:36 +000025# About 3/5 of the applets build from one .c file (with the same name as the
26# corresponding applet), and all it needs to link against. However, to build
27# them all we need more than that.
Rob Landleyaffb7a62006-08-05 00:41:39 +000028
Rob Landley236c6752006-08-06 02:13:36 +000029# Figure out which applets need extra libraries added to their command line.
30
Rob Landley519d7df2006-08-09 20:56:23 +000031function substithing()
Rob Landleyaffb7a62006-08-05 00:41:39 +000032{
Rob Landley519d7df2006-08-09 20:56:23 +000033 if [ "${1/ $3 //}" != "$1" ]
Rob Landleyaffb7a62006-08-05 00:41:39 +000034 then
Rob Landley519d7df2006-08-09 20:56:23 +000035 echo $2
Rob Landley236c6752006-08-06 02:13:36 +000036 fi
Rob Landleyaffb7a62006-08-05 00:41:39 +000037}
Rob Landleyaffb7a62006-08-05 00:41:39 +000038
Rob Landley519d7df2006-08-09 20:56:23 +000039function extra_libraries()
40{
41 # gzip needs gunzip.c (when gunzip is enabled, anyway).
42 substithing " gzip " "archival/gunzip.c archival/uncompress.c" "$1"
43
44 # init needs init_shared.c
45 substithing " init " "init/init_shared.c" "$1"
46
47 # ifconfig needs interface.c
48 substithing " ifconfig " "networking/interface.c" "$1"
49
50 # Applets that need libunarchive.a
51 substithing " ar bunzip2 unlzma cpio dpkg gunzip rpm2cpio rpm tar uncompress unzip dpkg_deb gzip " "archival/libunarchive/libunarchive.a" "$1"
52
53 # Applets that need libcoreutils.a
54 substithing " cp mv " "coreutils/libcoreutils/libcoreutils.a" "$1"
55
56 # Applets that need libiproute.a
57 substithing " ip " "networking/libiproute/libiproute.a" "$1"
58
59 # What needs -libm?
60 substithing " awk dc " "-lm" "$1"
61
62 # What needs -lcrypt?
63 substithing " httpd vlock " "-lcrypt" "$1"
64}
65
66# Query applets.h to figure out which applets need special treatment
Rob Landleycb376ee2006-08-04 21:05:33 +000067
Rob Landley236c6752006-08-06 02:13:36 +000068strange_names=`sed -rn -e 's/\#.*//' -e 's/.*APPLET_NOUSAGE\(([^,]*),([^,]*),.*/\1 \2/p' -e 's/.*APPLET_ODDNAME\(([^,]*),([^,]*),.*, *([^)]*).*/\1 \2@\3/p' include/applets.h`
69
70function bonkname()
71{
72 while [ $# -gt 0 ]
73 do
74 if [ "$APPLET" == "$1" ]
75 then
76 APPFILT="${2/@*/}"
77 if [ "${APPFILT}" == "$2" ]
78 then
Rob Landley519d7df2006-08-09 20:56:23 +000079 HELPNAME='"nousage\n"' # These should be _fixed_.
Rob Landley236c6752006-08-06 02:13:36 +000080 else
81 HELPNAME="${2/*@/}"_full_usage
82 fi
83 break
84 fi
85 shift 2
86 done
87#echo APPLET=${APPLET} APPFILT=${APPFILT} HELPNAME=${HELPNAME} 2=${2}
88}
Rob Landleyaffb7a62006-08-05 00:41:39 +000089
Rob Landley519d7df2006-08-09 20:56:23 +000090# Iterate through every name in busybox.links
91
92function buildit ()
93{
94 export APPLET="$1"
Rob Landley236c6752006-08-06 02:13:36 +000095 export APPFILT=${APPLET}
96 export HELPNAME=${APPLET}_full_usage
Rob Landley519d7df2006-08-09 20:56:23 +000097
Rob Landley236c6752006-08-06 02:13:36 +000098 bonkname $strange_names
99
Rob Landley519d7df2006-08-09 20:56:23 +0000100 j=`find archival console-tools coreutils debianutils editors findutils init loginutils miscutils modutils networking procps shell sysklogd util-linux -name "${APPFILT}.c"`
Rob Landleycb376ee2006-08-04 21:05:33 +0000101 if [ -z "$j" ]
102 then
103 echo no file for $APPLET
104 else
Rob Landley236c6752006-08-06 02:13:36 +0000105 echo "Building $APPLET"
Rob Landleyaffb7a62006-08-05 00:41:39 +0000106 gcc -Os -o build/$APPLET applets/individual.c $j \
107 `extra_libraries $APPFILT` libbb/libbb.a -Iinclude \
108 -DBUILD_INDIVIDUAL \
Denis Vlasenkoe4f2d062007-04-11 17:03:19 +0000109 '-Drun_applet_and_exit(...)' '-Dfind_applet_by_name(...)=0' \
Rob Landley236c6752006-08-06 02:13:36 +0000110 -DAPPLET_main=${APPFILT}_main -DAPPLET_full_usage=${HELPNAME}
Rob Landleycb376ee2006-08-04 21:05:33 +0000111 if [ $? -ne 0 ];
112 then
Rob Landley236c6752006-08-06 02:13:36 +0000113 echo "Failed $APPLET"
Rob Landleycb376ee2006-08-04 21:05:33 +0000114 fi
115 fi
Rob Landley519d7df2006-08-09 20:56:23 +0000116}
117
118if [ $# -eq 0 ]
119then
120 for APPLET in `sed 's .*/ ' busybox.links`
121 do
122 buildit "$APPLET"
123 done
124else
125 buildit "$1"
126fi
127
Rob Landleycb376ee2006-08-04 21:05:33 +0000128
129strip build/*