Makefile.help 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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 'Environment variables:'
  39. @echo ' - Quiet build'
  40. @echo ' V=1 - Verbose build'
  41. @echo ' V=2 - Very verbose build'
  42. @echo ' CROSS= - Override CROSS_COMPILER_PREFIX from .config'
  43. @echo ' SHELL= - Shell to use for make'
  44. @echo ' CONFIG_SHELL= - Shell to use for menuconfig'