aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2018-01-10 10:54:11 -0600
committerRob Landley <rob@landley.net>2018-01-10 10:54:11 -0600
commite1d68f5006f553669a64a225d0f6b92a76c90179 (patch)
treed6e452fb11220749769151a63713620500061065 /scripts
parent36beb6ac93362790ba6633f56109cde5f01d20c4 (diff)
downloadtoybox-e1d68f5006f553669a64a225d0f6b92a76c90179.tar.gz
Move make help text out of Makefile.
Diffstat (limited to 'scripts')
-rw-r--r--scripts/help.txt22
1 files changed, 22 insertions, 0 deletions
diff --git a/scripts/help.txt b/scripts/help.txt
new file mode 100644
index 00000000..6e8e7825
--- /dev/null
+++ b/scripts/help.txt
@@ -0,0 +1,22 @@
+ toybox - Build toybox.
+ COMMANDNAME - Build individual toybox command as a standalone binary.
+ list - List COMMANDNAMEs you can build standalone.
+ list_pending - List unfinished COMMANDNAMEs out of toys/pending.
+ change - Build each command standalone under change/.
+ baseline - Create toybox_old for use by bloatcheck.
+ bloatcheck - Report size differences between old and current versions
+ test_COMMAND - Run tests for COMMAND (test_ps, test_cat, etc.)
+ tests - Run test suite against all compiled commands.
+ export TEST_HOST=1 to test host command, VERBOSE=1
+ to show diff, VERBOSE=fail to stop after first failure.
+ clean - Delete temporary files.
+ distclean - Delete everything that isn't shipped.
+ install_airlock - Install toybox and host toolchain into $$PREFIX directory
+ (providing $$PATH for hermetic builds).
+ install_flat - Install toybox into $$PREFIX directory.
+ install - Install toybox into subdirectories of $$PREFIX.
+ uninstall_flat - Remove toybox from $$PREFIX directory.
+ uninstall - Remove toybox from subdirectories of $$PREFIX.
+
+example: CFLAGS="--static" CROSS_COMPILE=armv5l- make defconfig toybox install
+