blob: 8c26668b91d21a19c5ff5cbf22a0be3d6c0f9091 [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}
Rob Landley519d7df2006-08-09 20:56:23 +000016fi
17
Rob Landley236c6752006-08-06 02:13:36 +000018# About 3/5 of the applets build from one .c file (with the same name as the
19# corresponding applet), and all it needs to link against. However, to build
20# them all we need more than that.
Rob Landleyaffb7a62006-08-05 00:41:39 +000021
Rob Landley236c6752006-08-06 02:13:36 +000022# Figure out which applets need extra libraries added to their command line.
23
Rob Landley519d7df2006-08-09 20:56:23 +000024function substithing()
Rob Landleyaffb7a62006-08-05 00:41:39 +000025{
Rob Landley519d7df2006-08-09 20:56:23 +000026 if [ "${1/ $3 //}" != "$1" ]
Rob Landleyaffb7a62006-08-05 00:41:39 +000027 then
Rob Landley519d7df2006-08-09 20:56:23 +000028 echo $2
Rob Landley236c6752006-08-06 02:13:36 +000029 fi
Rob Landleyaffb7a62006-08-05 00:41:39 +000030}
Rob Landleyaffb7a62006-08-05 00:41:39 +000031
Rob Landley519d7df2006-08-09 20:56:23 +000032function extra_libraries()
33{
34 # gzip needs gunzip.c (when gunzip is enabled, anyway).
35 substithing " gzip " "archival/gunzip.c archival/uncompress.c" "$1"
36
37 # init needs init_shared.c
38 substithing " init " "init/init_shared.c" "$1"
39
40 # ifconfig needs interface.c
41 substithing " ifconfig " "networking/interface.c" "$1"
42
43 # Applets that need libunarchive.a
44 substithing " ar bunzip2 unlzma cpio dpkg gunzip rpm2cpio rpm tar uncompress unzip dpkg_deb gzip " "archival/libunarchive/libunarchive.a" "$1"
45
46 # Applets that need libcoreutils.a
47 substithing " cp mv " "coreutils/libcoreutils/libcoreutils.a" "$1"
48
49 # Applets that need libiproute.a
50 substithing " ip " "networking/libiproute/libiproute.a" "$1"
51
52 # What needs -libm?
53 substithing " awk dc " "-lm" "$1"
54
55 # What needs -lcrypt?
56 substithing " httpd vlock " "-lcrypt" "$1"
57}
58
59# Query applets.h to figure out which applets need special treatment
Rob Landleycb376ee2006-08-04 21:05:33 +000060
Rob Landley236c6752006-08-06 02:13:36 +000061strange_names=`sed -rn -e 's/\#.*//' -e 's/.*APPLET_NOUSAGE\(([^,]*),([^,]*),.*/\1 \2/p' -e 's/.*APPLET_ODDNAME\(([^,]*),([^,]*),.*, *([^)]*).*/\1 \2@\3/p' include/applets.h`
62
63function bonkname()
64{
65 while [ $# -gt 0 ]
66 do
67 if [ "$APPLET" == "$1" ]
68 then
69 APPFILT="${2/@*/}"
70 if [ "${APPFILT}" == "$2" ]
71 then
Rob Landley519d7df2006-08-09 20:56:23 +000072 HELPNAME='"nousage\n"' # These should be _fixed_.
Rob Landley236c6752006-08-06 02:13:36 +000073 else
74 HELPNAME="${2/*@/}"_full_usage
75 fi
76 break
77 fi
78 shift 2
79 done
80#echo APPLET=${APPLET} APPFILT=${APPFILT} HELPNAME=${HELPNAME} 2=${2}
81}
Rob Landleyaffb7a62006-08-05 00:41:39 +000082
Rob Landley519d7df2006-08-09 20:56:23 +000083# Iterate through every name in busybox.links
84
85function buildit ()
86{
87 export APPLET="$1"
Rob Landley236c6752006-08-06 02:13:36 +000088 export APPFILT=${APPLET}
89 export HELPNAME=${APPLET}_full_usage
Rob Landley519d7df2006-08-09 20:56:23 +000090
Rob Landley236c6752006-08-06 02:13:36 +000091 bonkname $strange_names
92
Rob Landley519d7df2006-08-09 20:56:23 +000093 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 +000094 if [ -z "$j" ]
95 then
96 echo no file for $APPLET
97 else
Rob Landley236c6752006-08-06 02:13:36 +000098 echo "Building $APPLET"
Rob Landleyaffb7a62006-08-05 00:41:39 +000099 gcc -Os -o build/$APPLET applets/individual.c $j \
100 `extra_libraries $APPFILT` libbb/libbb.a -Iinclude \
101 -DBUILD_INDIVIDUAL \
Rob Landley519d7df2006-08-09 20:56:23 +0000102 '-Drun_applet_by_name(...)' '-Dfind_applet_by_name(...)=0' \
Rob Landley236c6752006-08-06 02:13:36 +0000103 -DAPPLET_main=${APPFILT}_main -DAPPLET_full_usage=${HELPNAME}
Rob Landleycb376ee2006-08-04 21:05:33 +0000104 if [ $? -ne 0 ];
105 then
Rob Landley236c6752006-08-06 02:13:36 +0000106 echo "Failed $APPLET"
Rob Landleycb376ee2006-08-04 21:05:33 +0000107 fi
108 fi
Rob Landley519d7df2006-08-09 20:56:23 +0000109}
110
111if [ $# -eq 0 ]
112then
113 for APPLET in `sed 's .*/ ' busybox.links`
114 do
115 buildit "$APPLET"
116 done
117else
118 buildit "$1"
119fi
120
Rob Landleycb376ee2006-08-04 21:05:33 +0000121
122strip build/*