Makefile.help 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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 ' doc-clean - delete all generated documentation'
  9. @echo
  10. @echo 'Build:'
  11. @echo ' all - Executable and documentation'
  12. @echo ' busybox - the swiss-army executable'
  13. @echo ' doc - docs/BusyBox.{txt,html,1}'
  14. @echo ' html - create html-based cross-reference'
  15. @echo
  16. @echo 'Configuration:'
  17. @echo ' allnoconfig - disable all symbols in .config'
  18. @echo ' allyesconfig - enable all symbols in .config (see defconfig)'
  19. @echo ' config - text based configurator (of last resort)'
  20. @echo ' defconfig - set .config to largest generic configuration'
  21. @echo ' menuconfig - interactive curses-based configurator'
  22. @echo ' oldconfig - resolve any unresolved symbols in .config'
  23. @echo ' hosttools - build sed for the host.'
  24. @echo ' You can use these commands if the commands on the host'
  25. @echo ' is unusable. Afterwards use it like:'
  26. @echo ' make SED="$(objtree)/sed"'
  27. @$(if $(boards), \
  28. $(foreach b, $(boards), \
  29. printf " %-21s - Build for %s\\n" $(b) $(subst _defconfig,,$(b));) \
  30. echo '')
  31. @echo
  32. @echo 'Installation:'
  33. @echo ' install - install busybox into CONFIG_PREFIX'
  34. @echo ' uninstall'
  35. @echo
  36. @echo 'Development:'
  37. @echo ' baseline - create busybox_old for bloatcheck.'
  38. @echo ' bloatcheck - show size difference between old and new versions'
  39. @echo ' check - run the test suite for all applets'
  40. @echo ' checkhelp - check for missing help-entries in Config.in'
  41. @echo ' randconfig - generate a random configuration'
  42. @echo ' release - create a distribution tarball'
  43. @echo ' sizes - show size of all enabled busybox symbols'
  44. @echo ' objsizes - show size of each .o object built'
  45. @echo ' bigdata - show data objects, biggest first'
  46. @echo ' stksizes - show stack users, biggest first'
  47. @echo