aboutsummaryrefslogtreecommitdiff
path: root/scripts/individual (follow)
Commit message (Collapse)AuthorAgeFilesLines
* scripts: remove bitrotted scripts/individualDenys Vlasenko2010-10-281-129/+0
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* rename: run_applet_by_name -> run_applet_and_exitDenis Vlasenko2007-04-111-1/+1
|
* - make sure that the 'build' dir exists even if we are about to build just ↵Bernhard Reutner-Fischer2006-09-141-0/+7
| | | | one applet.
* - do away with silly comment and do the Right Thing wrt building the archives.Bernhard Reutner-Fischer2006-09-141-28/+1
| | | | You have to provide the absolute path to the objdir/target.ext you want to build, as can be seen in the respective makefiles..
* Another whack at scripts/individual. Now builds 212 applets.Rob Landley2006-08-091-17/+68
|
* Teach md5sum and sha1sum to work the way other applets do so I don't have toRob Landley2006-08-061-16/+51
| | | | | | teach scripts/individual new tricks. And while I'm at it, teach scripts/individual other new tricks. Now builds 198 applets, some of which I should teach it to hardlink together because they're really the same app...
* scripts/individual now builds 171 applets. Some of them may even work. :)Rob Landley2006-08-051-2/+28
|
* Digging up my old "make standalone" stuff from a year ago:Rob Landley2006-08-041-0/+37
http://busybox.net/lists/busybox/2005-September/015766.html I renamed it "individual" to not confuse it with the standalone shell. (Which it isn't compatible with for obvious reasons.) Configure busybox (I did make defconfig), then run scripts/individual and it'll build an individual version of each applet in the "build" subdirectory. Currently it builds 146 and fails to build 104 applets out of "make defconfig". I haven't taught it about multi-file applets yet (like tar), or the ones where two applets get built from the same source (for example, zcat is a trivial variant of gunzip so there is no zcat.c). But here's a start.