forgot about avn add... :(
[oweals/busybox.git] / scripts / individual
index 8815e1e14ee0c787bcef1d567248c5cd2b1c5584..a09a5dc7ae94061ea689bec2fd10aa77a08db86b 100755 (executable)
 #!/bin/sh
 
+# Compile individual versions of each busybox applet.
+
+if [ $# -eq 0 ]
+then
+
+# Clear out the build directory.  (Make clean should do this instead of here.)
+
+rm -rf build
+mkdir build
+
 # Make our prerequisites.
 
-make busybox.links include/bb_config.h
+make busybox.links include/bb_config.h $(pwd)/{libbb/libbb.a,archival/libunarchive/libunarchive.a,coreutils/libcoreutils/libcoreutils.a,networking/libiproute/libiproute.a}
 
-# Adding "libbb/libbb.a" to the previous line doesn't work, nor does going
-# "make libbb.a" in the libb directory.  The busybox makefile has layers and
-# layers of overcomplicated brokenness...
+else
+# Could very well be that we want to build an individual applet but have no
+# 'build' dir yet..
 
-cd libbb
-make
-cd ..
+test -d ./build || mkdir build
 
-cd archival/libunarchive
-make
-cd ../..
+fi
 
-# 146 applets build without any extra stuff.  The applet is one C file with
-# the same name as the corresponding applet, and all it needs to link against
-# is libbb.a.  However, 104 of them need more than that.
+# About 3/5 of the applets build from one .c file (with the same name as the
+# corresponding applet), and all it needs to link against.  However, to build
+# them all we need more than that.
 
-# dpkg_deb gzip
-function extra_libraries()
+# Figure out which applets need extra libraries added to their command line.
+
+function substithing()
 {
-  archival="ar bunzip2 unlzma cpio dpkg gunzip rpm2cpio rpm tar uncompress unzip dpkg_deb gzip "
-  if [ "${archival/$1 //}" != "${archival}" ]
+  if [ "${1/ $3 //}" != "$1" ]
   then
-    echo "archival/libunarchive/libunarchive.a"
+    echo $2
   fi
 }
-    
-  
 
-# Here are a few that build in a standard way.  Others are easy to get to
-# build, for example miscutils/dc needs -lm and most of loginutils/* needs
-# -lcrypt...
+function extra_libraries()
+{
+  # gzip needs gunzip.c (when gunzip is enabled, anyway).
+  substithing " gzip " "archival/gunzip.c archival/uncompress.c" "$1"
 
-rm -rf build
-mkdir build
+  # init needs init_shared.c
+  substithing " init " "init/init_shared.c" "$1"
+
+  # ifconfig needs interface.c
+  substithing " ifconfig " "networking/interface.c" "$1"
+
+  # Applets that need libunarchive.a
+  substithing " ar bunzip2 unlzma cpio dpkg gunzip rpm2cpio rpm tar uncompress unzip dpkg_deb gzip " "archival/libunarchive/libunarchive.a" "$1"
+
+  # Applets that need libcoreutils.a
+  substithing " cp mv " "coreutils/libcoreutils/libcoreutils.a" "$1"
+
+  # Applets that need libiproute.a
+  substithing " ip " "networking/libiproute/libiproute.a" "$1"
+
+  # What needs -libm?
+  substithing " awk dc " "-lm" "$1"
 
-for APPLET in `sed 's .*/  ' busybox.links`
-do
-  APPFILT=${APPLET/-/_}
-  j=`find . -name "${APPLET/-/?}.c"`  # Because ether-wake.c is broken.
+  # What needs -lcrypt?
+  substithing " httpd vlock " "-lcrypt" "$1"
+}
+
+# Query applets.h to figure out which applets need special treatment
+
+strange_names=`sed -rn -e 's/\#.*//' -e 's/.*APPLET_NOUSAGE\(([^,]*),([^,]*),.*/\1 \2/p' -e 's/.*APPLET_ODDNAME\(([^,]*),([^,]*),.*, *([^)]*).*/\1 \2@\3/p' include/applets.h`
+
+function bonkname()
+{
+  while [ $# -gt 0 ]
+  do
+    if [ "$APPLET" == "$1" ]
+    then
+      APPFILT="${2/@*/}"
+      if [ "${APPFILT}" == "$2" ]
+      then
+        HELPNAME='"nousage\n"'   # These should be _fixed_.
+      else
+        HELPNAME="${2/*@/}"_full_usage
+      fi
+      break
+    fi
+    shift 2
+  done
+#echo APPLET=${APPLET} APPFILT=${APPFILT} HELPNAME=${HELPNAME} 2=${2}
+}
+
+# Iterate through every name in busybox.links
+
+function buildit ()
+{
+  export APPLET="$1"
+  export APPFILT=${APPLET}
+  export HELPNAME=${APPLET}_full_usage
+
+  bonkname $strange_names
+
+  j=`find archival console-tools coreutils debianutils editors findutils init loginutils miscutils modutils networking procps shell sysklogd util-linux -name "${APPFILT}.c"`
   if [ -z "$j" ]
   then
     echo no file for $APPLET
   else
-    echo "Building $APPLET..."
+    echo "Building $APPLET"
     gcc -Os -o build/$APPLET applets/individual.c $j \
        `extra_libraries $APPFILT` libbb/libbb.a -Iinclude \
        -DBUILD_INDIVIDUAL \
-       "-Drun_applet_by_name(...)" "-Dfind_applet_by_name(...) 0" \
-       -DAPPLET_main=${APPFILT}_main -DAPPLET_full_usage=${APPFILT}_full_usage
+       '-Drun_applet_by_name(...)' '-Dfind_applet_by_name(...)=0' \
+       -DAPPLET_main=${APPFILT}_main -DAPPLET_full_usage=${HELPNAME}
     if [ $? -ne 0 ];
     then
-      echo "Failed."
+      echo "Failed $APPLET"
     fi
   fi
-done
+}
+
+if [ $# -eq 0 ]
+then
+  for APPLET in `sed 's .*/  ' busybox.links`
+  do
+    buildit "$APPLET"
+  done
+else
+  buildit "$1"
+fi
+
 
 strip build/*