Makefile.help 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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 ' utils - build target utilities'
  17. @echo ' (readelf, ldd, ldconfig, locale, iconv)'
  18. @echo ' hostutils - build host utilities (see utils)'
  19. @echo
  20. @echo 'Configuration:'
  21. @echo ' allnoconfig - disable all symbols in .config'
  22. @echo ' allyesconfig - enable all symbols in .config (see defconfig)'
  23. @echo ' config - text based configurator (of last resort)'
  24. @echo ' defconfig - set .config to arch-specific defaults'
  25. @echo ' menuconfig - interactive curses-based configurator'
  26. @echo ' oldconfig - resolve any unresolved symbols in .config'
  27. @echo ' silentoldconfig - resolve any unresolved symbols in .config, silently'
  28. @echo ' randconfig - generate a random .config'
  29. @echo
  30. @echo 'Installation:'
  31. @echo ' install - install both the runtime and the headers'
  32. @echo ' install_runtime - install the libraries'
  33. @echo ' install_dev - install all headers and static libs'
  34. @echo ' install_headers - install headers excluding generated ones'
  35. @echo ' install_utils - install target utilities'
  36. @echo ' install_hostutils - install host utilities'
  37. @echo
  38. @echo 'Development:'
  39. @echo ' check - run testsuite'
  40. @echo ' test_compile - compile testsuite binaries'
  41. @echo ' release - create a distribution tarball'
  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'
  50. @echo
  51. @echo ' PREFIX= - Prepended prefix'
  52. @echo ' RUNTIME_PREFIX= - Prefix for the libdir containing shared objects'
  53. @echo ' (usually "/")'
  54. @echo ' DEVEL_PREFIX= - Prefix for the libdir containing static objects'
  55. @echo ' and the include dir (usually "/usr")'
  56. @echo ' SHARED_LIB_LOADER_PREFIX= - Directory where the shared loader resides.'
  57. @echo ' (usually "/lib")'