Makefile.help 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. # Makefile.help for uClibc
  2. #
  3. # Copyright (C) 2008 Erik Andersen <andersen@uclibc.org>
  4. #
  5. # Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
  6. #
  7. help:
  8. @echo 'Cleaning:'
  9. @echo ' clean - delete temporary object files'
  10. @echo ' realclean - delete temporary object file, including dependencies'
  11. @echo ' distclean - delete all non-source files (including .config)'
  12. @echo
  13. @echo 'Build:'
  14. @echo ' all - libraries and generated headers'
  15. @echo ' pregen - generate headers'
  16. @echo
  17. @echo 'Configuration:'
  18. @echo ' allnoconfig - disable all symbols in .config'
  19. @echo ' allyesconfig - enable all symbols in .config (see defconfig)'
  20. @echo ' config - text based configurator (of last resort)'
  21. @echo ' defconfig - set .config to arch-specific defaults'
  22. @echo ' menuconfig - interactive curses-based configurator'
  23. @echo ' oldconfig - resolve any unresolved symbols in .config'
  24. @echo ' silentoldconfig - resolve any unresolved symbols in .config, silently'
  25. @echo ' randconfig - generate a random .config'
  26. @echo
  27. @echo 'Installation:'
  28. @echo ' install - install both the runtime and the headers'
  29. @echo ' install_runtime - install the libraries'
  30. @echo ' install_dev - install all headers and static libs'
  31. @echo ' install_headers - install headers excluding generated ones'
  32. @echo
  33. @echo 'Development:'
  34. @echo ' check - run testsuite'
  35. @echo ' test_compile - compile testsuite binaries'
  36. @echo ' release - create a distribution tarball'
  37. @echo
  38. @echo 'Utilities:'
  39. @echo ' utils - Build readelf, ldd, and ldconfig for target'
  40. @echo ' hostutils - Build readelf, ldd, and ldconfig for host'
  41. @echo ' install_utils - Install utilities'
  42. @echo
  43. @echo 'Environment variables:'
  44. @echo ' V="" - Quiet build (default)'
  45. @echo ' V=1 - Verbose build'
  46. @echo ' V=2 - Very verbose build'
  47. @echo ' CROSS= - Override CROSS_COMPILER_PREFIX from .config'
  48. @echo ' SHELL= - Shell to use for make'
  49. @echo ' CONFIG_SHELL= - Shell to use for menuconfig'