Makefile.help 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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 files, 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 ' (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 ' O=<abspath> - Use <abspath> as object directory'
  45. @echo ' V="" - Quiet build (default)'
  46. @echo ' V=1 - Brief build (show defines, ld flags)'
  47. @echo ' V=2 - Very verbose build'
  48. @echo ' CROSS= - Override CROSS_COMPILER_PREFIX from .config'
  49. @echo ' ARCH= - Use given arch for config targets'
  50. @echo ' SHELL= - Shell to use for make'
  51. @echo ' CONFIG_SHELL= - Shell to use for menuconfig'
  52. @echo
  53. @echo ' PREFIX= - Prepended prefix'
  54. @echo ' RUNTIME_PREFIX= - Prefix for the libdir containing shared objects'
  55. @echo ' (usually "/")'
  56. @echo ' DEVEL_PREFIX= - Prefix for the libdir containing static objects'
  57. @echo ' and the include dir (usually "/usr")'
  58. @echo ' MULTILIB_DIR= - Directory component for libraries (default "lib").'
  59. @echo ' UCLIBC_EXTRA_CFLAGS - extra CFLAGS for compiling uClibc'