Makefile.help 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. # ==========================================================================
  2. # Build system
  3. # ==========================================================================
  4. help:
  5. @echo 'Cleaning:'
  6. @echo ' clean - delete temporary files created by build'
  7. @echo ' distclean - delete all non-source files (including .config)'
  8. @echo
  9. @echo 'Build:'
  10. @echo ' all - Executable and documentation'
  11. @echo ' busybox - the swiss-army executable'
  12. @echo ' doc - docs/BusyBox.{txt,html,1}'
  13. @echo ' html - create html-based cross-reference'
  14. @echo
  15. @echo 'Configuration:'
  16. @echo ' allnoconfig - disable all symbols in .config'
  17. @echo ' allyesconfig - enable all symbols in .config (see defconfig)'
  18. @echo ' config - text based configurator (of last resort)'
  19. @echo ' defconfig - set .config to largest generic configuration'
  20. @echo ' menuconfig - interactive curses-based configurator'
  21. @echo ' oldconfig - resolve any unresolved symbols in .config'
  22. @echo ' hosttools - build sed for the host.'
  23. @echo ' You can use these commands if the commands on the host'
  24. @echo ' is unusable. Afterwards use it like:'
  25. @echo ' make SED="$(objtree)/sed"'
  26. @echo
  27. @echo 'Installation:'
  28. @echo ' install - install busybox into CONFIG_PREFIX'
  29. @echo ' uninstall'
  30. @echo
  31. @echo 'Development:'
  32. @echo ' baseline - create busybox_old for bloatcheck.'
  33. @echo ' bloatcheck - show size difference between old and new versions'
  34. @echo ' check - run the test suite for all applets'
  35. @echo ' checkhelp - check for missing help-entries in Config.in'
  36. @echo ' randconfig - generate a random configuration'
  37. @echo ' release - create a distribution tarball'
  38. @echo ' sizes - show size of all enabled busybox symbols'
  39. @echo ' objsizes - show size of each .o object built'
  40. @echo ' bigdata - show data objects, biggest first'
  41. @echo ' stksizes - show stack users, biggest first'
  42. @echo